/* ================= RESET / GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --dark: #0f0f0f;
    --black: #000;
    --card: #181818;
    --border: #222;
    --text: #fff;
    --muted: #aaa;
    --mobile-header-height: 206px;
    --mobile-menu-top: 256px;
    --mobile-page-top: 256px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    padding-top: 142px;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: 0.25s ease;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

/* ================= HEADER ================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 3000;
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
    transition: all .28s ease;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all .28s ease;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .28s ease;
}

.search-box {
    flex: 1;
    max-width: 520px;
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    outline: none;
    transition: all .28s ease;
}

.search-box button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    color: var(--gold) !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    min-width: auto !important;
    box-shadow: none !important;
    z-index: 5;
}

.search-box button::after {
    display: none !important;
}

.search-box button:hover {
    background: transparent !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all .28s ease;
}

.header-actions .signin-link {
    border: 1px solid var(--gold);
    padding: 0 14px;
    border-radius: 6px;
    height: 38px;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 3px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================= SHRINK HEADER ================= */
.main-header.shrink {
    background: rgba(0,0,0,.95);
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.main-header.shrink .header-inner {
    padding: 8px 24px;
}

.main-header.shrink .logo {
    font-size: 20px;
}

.main-header.shrink .search-box input {
    height: 40px;
}

.main-header.shrink .header-actions a {
    height: 38px;
    font-size: 13px;
}

/* ================= FINAL PREMIUM NAVBAR ================= */
.nav-bar {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 2999;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    transition: all .28s ease;
}

.nav-bar.shrink {
    top: 60px;
}

.nav-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
    overflow: visible;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn::after {
    display: none !important;
}

.nav-menu {
    width: 100%;
    min-height: 54px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    overflow: visible;
    position: relative;
}

.nav-item {
    position: relative;
    height: 46px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-item > a,
.nav-item > span {
    height: 46px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #111 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    position: relative;
    line-height: 1;
}

.nav-item > a::after,
.nav-item > span::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 5px;
    height: 3px;
    border-radius: 99px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-item:hover > a::after,
.nav-item:hover > span::after,
.nav-item.active > a::after,
.nav-item.active > span::after {
    transform: scaleX(1);
}

.nav-item:hover > a,
.nav-item.active > a {
    color: #000 !important;
}

.nav-item i {
    font-size: 11px;
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    background: #111;
    border: 1px solid #242424;
    border-radius: 14px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: .25s ease;
    box-shadow: 0 24px 50px rgba(0,0,0,.32);
    z-index: 4000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    color: #ddd !important;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: var(--gold);
    color: #000 !important;
}

/* ================= MEGA MENU DESKTOP ================= */
.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: min(96vw, 1500px);
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #111;
    border: 1px solid #252525;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 28px 70px rgba(0,0,0,.38);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px);
    transition: .28s ease;
    z-index: 5000;
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown.mega-open .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
    display: block;
}

.mega-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.mega-column {
    background: #171717;
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 16px;
    min-width: 0;
}

.mega-column h4 {
    margin: 0 0 12px 0;
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
}

.mega-column h4 a {
    color: var(--gold) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 0;
    border-bottom: none;
}

.mega-column h4 a:hover {
    color: #fff !important;
    padding-left: 0;
}

.mega-column a {
    display: block;
    color: #d7d7d7 !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    white-space: normal;
}

.mega-column a:last-child {
    border-bottom: none;
}

.mega-column a:hover {
    color: var(--gold) !important;
    padding-left: 6px;
}

.mega-feature {
    background: linear-gradient(135deg, var(--gold), #c9a900);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-feature h4,
.mega-feature h4 a {
    color: #000 !important;
    font-size: 18px;
    margin-bottom: 12px;
}

.mega-feature p {
    color: #111;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mega-feature .mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    background: #000 !important;
    color: var(--gold) !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    border: 2px solid #000;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    padding: 12px 16px;
    line-height: 1;
}

.mega-feature .mega-cta:hover {
    background: #111 !important;
    color: var(--gold) !important;
    padding-left: 16px;
    transform: translateY(-2px);
}

.nav-quote > a {
    background: var(--gold);
    color: #000 !important;
    height: 36px;
    margin-left: 6px;
    border-radius: 999px;
    padding: 0 14px;
}

.nav-quote > a::after {
    display: none;
}

.nav-quote > a:hover {
    background: #e6c200;
}

/* ================= LIVE SEARCH ================= */
.live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0,0,0,.25);
    display: none;
    overflow: hidden;
    z-index: 6000;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #222;
}

.live-search-item:hover {
    background: #1c1c1c;
}

.live-search-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.live-search-empty {
    padding: 14px;
    color: #aaa;
    font-size: 14px;
    text-align: center;
}

/* ================= HOMEPAGE ================= */
.hero-slider {
    height: 78vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 12%, rgba(0,0,0,.30) 58%, rgba(0,0,0,.12) 100%);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 560px;
}

.overlay h2 {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.overlay p {
    color: #ddd;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
}

.hero-cta-bar {
    position: relative;
    z-index: 4;
    margin-top: -34px;
    padding: 0 20px;
}

.hero-cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1b1b1b, #111);
    border: 1px solid #222;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

.hero-cta-text h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.hero-cta-text p {
    color: #bdbdbd;
    font-size: 14px;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta-btn {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-call-btn,
.cta-secondary {
    background: #fff;
    color: #111;
}

.hero-whatsapp-btn,
.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.hero-quote-btn {
    background: var(--gold);
    color: #000;
}

.trust-strip {
    max-width: 1300px;
    margin: 28px auto 20px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.trust-item {
    background: #181818;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    color: #ddd;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.trust-item strong {
    color: var(--gold);
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.services,
.product-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.services {
    grid-template-columns: repeat(4,1fr);
    padding: 70px 40px;
}

.card,
.product-card,
.testimonial-card,
.why-card,
.extra-card {
    background: #181818;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: .3s;
}

.card {
    text-align: center;
}

.card i,
.why-card i,
.extra-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
}

.card p,
.why-card p,
.extra-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.card:hover,
.product-card:hover,
.testimonial-card:hover,
.why-card:hover,
.extra-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255,215,0,.12);
}

.homepage-cta,
.top-products,
.portfolio,
.related-products-section,
.product-extra-section,
.reviews-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 1px solid #222;
    border-radius: 18px;
    padding: 34px 28px;
    text-align: center;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cta-box p {
    color: #bdbdbd;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #181818;
    min-height: 280px;
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item::after {
    content: "View Work";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-weight: 700;
    transition: .3s;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.overlay-text {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0,0,0,.72);
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.home-reviews,
.testimonials {
    padding: 80px 20px;
    background: #0a0a0a;
    text-align: center;
}

.testimonial-grid {
    max-width: 1300px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
}

.testimonial-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: var(--gold);
    font-size: 14px;
}

.clients {
    padding: 60px 20px;
    background: #000;
    text-align: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.client-logos img {
    height: 50px;
    opacity: .7;
}

.why-choose-us {
    padding: 80px 20px;
    text-align: center;
}

.why-grid {
    max-width: 1300px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 24px;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 60px 40px;
    background: #000;
    text-align: center;
}

.stats h2 {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 8px;
}

/* ================= BUTTONS / FORMS ================= */
button,
.btn {
    background: var(--gold);
    color: #000;
    padding: 11px 22px;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

button:hover,
.btn:hover {
    background: #e6c200;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

input,
textarea,
select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    outline: none;
}

/* ================= PRODUCTS ================= */
.page-title {
    text-align: center;
    margin: 40px 0;
    font-size: 32px;
}

.product-card {
    position: relative;
}

.product-card h3 {
    margin: 15px 0 10px;
}

.product-card button {
    width: 100%;
    margin-top: 8px;
}

.top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 5px;
}

.products-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 0 40px 50px;
}

.product-sidebar {
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 22px 18px;
    height: fit-content;
    position: sticky;
    top: 170px;
}

.product-sidebar h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.product-sidebar a {
    display: block;
    color: #bbb;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.product-sidebar a:hover {
    background: #222;
    color: var(--gold);
}

.product-sidebar a.active-filter {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.products-layout .product-grid {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.products-toolbar {
    max-width: 1300px;
    margin: 0 auto 20px;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0;
}

.sort-form label {
    color: #ddd;
    font-size: 14px;
}

.sort-form select {
    background: #0f0f0f;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px 10px;
}

/* ================= PRODUCT DETAILS ================= */
.product-details-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 40px 20px;
}

.product-breadcrumb {
    margin-bottom: 25px;
    color: #999;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.product-details-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery,
.product-info-box,
.review-form-box,
.review-list-box {
    background: #141414;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 24px;
}

.product-main-image {
    border-radius: 14px;
    overflow: hidden;
    background: #0d0d0d;
}

.product-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.thumb {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #111;
}

.thumb:hover,
.active-thumb {
    border-color: var(--gold);
}

.product-category-label {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info-box h1 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.product-price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.product-description {
    color: #bbb;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 22px;
}

.product-trust-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.product-trust-points div {
    background: #1b1b1b;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 12px 14px;
    color: #ddd;
    font-size: 14px;
}

.product-trust-points i {
    color: var(--gold);
    margin-right: 8px;
}

.product-action-buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.product-cart-form {
    margin: 0;
}

.secondary-btn {
    background: #fff;
    color: #111;
}

.call-btn {
    background: #222;
    color: #fff;
}

.product-extra-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.related-products-grid .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.related-price {
    font-weight: 700;
    margin: 10px 0;
}

/* ================= REVIEWS / RATING ================= */
.reviews-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
}

.review-msg {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 14px;
}

.review-summary {
    display: flex;
    gap: 30px;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.rating-left h2 {
    font-size: 40px;
    color: var(--gold);
}

.rating-bars {
    flex: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 5px;
}

.bar div {
    height: 100%;
    background: var(--gold);
    border-radius: 5px;
}

.review-card {
    padding: 18px 0;
    border-bottom: 1px solid #242424;
}

.review-card:last-child {
    border-bottom: none;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 8px;
}

.review-card small {
    color: #888;
}

.review-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #333;
}

.product-rating,
.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
}

.stars {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

.review-count {
    color: #aaa;
    font-size: 13px;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 15px;
}

.star {
    color: #444;
    transition: .2s;
}

.star.hover,
.star.active {
    color: var(--gold);
    transform: scale(1.1);
}

/* ================= MODAL / FLOATS / LIGHTBOX ================= */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
}

.quote-modal-content {
    background: #181818;
    margin: 6% auto;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeUp .4s ease;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.quote-modal input,
.quote-modal textarea,
.quote-modal select,
.quote-modal input[type=file] {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
}

.quote-modal button {
    margin-top: 15px;
    width: 100%;
}

.call-float,
.quote-float,
.whatsapp-float {
    position: fixed;
    right: 20px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.call-float {
    bottom: 160px;
    background: #fff;
    color: #111;
    padding: 12px 16px;
    border-radius: 999px;
    gap: 10px;
}

.quote-float {
    bottom: 90px;
    background: var(--gold);
    color: #000;
    padding: 12px 16px;
    border-radius: 999px;
    gap: 10px;
}

.whatsapp-float {
    bottom: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn .3s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(.7); }
    to { transform: scale(1); }
}

/* ================= STICKY PRODUCT BAR ================= */
.sticky-product-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid #222;
    z-index: 1200;
    padding: 12px 20px;
    box-shadow: 0 -8px 24px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
}

.sticky-product-bar.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-product-name {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 420px;
}

.sticky-product-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.sticky-price {
    color: var(--gold);
    font-weight: 800;
    font-size: 15px;
}

.sticky-rating {
    color: #ccc;
    font-size: 13px;
}

.sticky-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sticky-btn {
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    transition: .25s;
}

.sticky-btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.sticky-quote-btn {
    background: var(--gold);
    color: #000;
}

.sticky-wa-btn {
    background: #25D366;
    color: #fff;
}

.sticky-call-btn {
    background: #fff;
    color: #111;
}

body.product-page-has-sticky {
    padding-bottom: 95px;
}

/* ================= TABLET / LAPTOP ================= */
@media (min-width: 1025px) and (max-width: 1500px) {
    body {
        padding-top: 184px;
    }

    .nav-menu {
        justify-content: center;
        padding: 6px 0;
    }

    .nav-item {
        height: 42px;
    }

    .nav-item > a,
    .nav-item > span {
        height: 42px;
        font-size: 12.5px;
        padding: 0 9px;
    }

    .nav-item > a::after,
    .nav-item > span::after {
        bottom: 3px;
    }

    .mega-menu {
        max-height: calc(100vh - 210px);
    }
}

/* ================= MOBILE NAV - TRUE ACCORDION ================= */
@media (max-width: 1024px) {
    body {
        padding-top: var(--mobile-page-top, 256px) !important;
        overflow-x: hidden !important;
    }

    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 3000 !important;
        background: #000 !important;
    }

    .header-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 16px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .logo {
        font-size: 26px !important;
        letter-spacing: 2px !important;
        text-align: center !important;
        line-height: 1 !important;
    }

    .search-box {
        width: 100% !important;
        max-width: 680px !important;
        margin: 0 auto !important;
    }

    .search-box input {
        height: 54px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
        padding-left: 18px !important;
    }

    .header-actions {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .header-actions a {
        font-size: 18px !important;
        color: #fff !important;
    }

    .header-actions .signin-link {
        border: none !important;
        padding: 0 !important;
        height: auto !important;
    }

    .nav-bar {
        position: fixed !important;
        top: var(--mobile-header-height, 206px) !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 2999 !important;
        border-bottom: 1px solid #e8e8e8 !important;
        box-shadow: 0 6px 18px rgba(0,0,0,.12) !important;
    }

    .nav-bar.shrink {
        top: var(--mobile-header-height, 206px) !important;
    }

    .nav-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        width: 100% !important;
        height: 50px !important;
        background: #fff !important;
        color: #111 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        font-size: 20px !important;
        font-weight: 900 !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer !important;
    }

    .mobile-menu-btn i,
    .mobile-menu-btn span {
        color: #111 !important;
        display: inline-flex !important;
    }

    .mobile-menu-btn::after {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - var(--mobile-menu-top, 256px)) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        background: #fff !important;
        border-top: 1px solid #eee !important;
        padding: 12px 22px 120px !important;
        gap: 0 !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-item {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
    }

    .nav-item > a,
    .nav-item > span {
        width: 100% !important;
        height: auto !important;
        min-height: 56px !important;
        justify-content: space-between !important;
        padding: 16px 4px !important;
        border-bottom: 1px solid #eee !important;
        color: #111 !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .nav-item > a::after,
    .nav-item > span::after {
        display: none !important;
    }

    .dropdown-menu,
    .mega-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        background: #111 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        display: none !important;
        margin: 0 !important;
        padding: 12px !important;
        border: 1px solid #242424 !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }

    .dropdown.open > .dropdown-menu,
    .mega-dropdown.open > .mega-menu {
        display: block !important;
    }

    .mega-dropdown:hover .mega-menu {
        transform: none !important;
    }

    .mega-menu::before {
        display: none !important;
    }

    .mega-container {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mega-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px !important;
        box-sizing: border-box !important;
        border-radius: 14px !important;
    }

    .mega-column h4,
    .mega-column h4 a {
        color: var(--gold) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        margin: 0 0 12px !important;
        padding: 0 !important;
        border: none !important;
        line-height: 1.3 !important;
    }

    .mega-column a,
    .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        color: #e7e7e7 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        line-height: 1.35 !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
        white-space: normal !important;
        word-break: normal !important;
    }

    .mega-column a:hover,
    .dropdown-menu a:hover {
        color: var(--gold) !important;
        background: transparent !important;
        padding-left: 0 !important;
    }

    .mega-feature {
        background: linear-gradient(135deg, var(--gold), #c9a900) !important;
        color: #000 !important;
    }

    .mega-feature h4,
    .mega-feature h4 a {
        color: #000 !important;
    }

    .mega-feature p {
        color: #111 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .mega-feature .mega-cta {
        background: #000 !important;
        color: var(--gold) !important;
        text-align: center !important;
        border-radius: 12px !important;
        padding: 13px 14px !important;
        margin-top: 10px !important;
        border-bottom: none !important;
    }

    .nav-quote > a {
        margin-top: 12px !important;
        justify-content: center !important;
        background: var(--gold) !important;
        color: #000 !important;
        border-radius: 12px !important;
        border-bottom: none !important;
    }

    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .overlay {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .overlay h2 {
        font-size: 30px;
    }

    .hero-cta-bar {
        margin-top: 20px;
    }

    .hero-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .trust-strip {
        grid-template-columns: repeat(2,1fr);
        padding: 0 20px;
    }

    .services {
        grid-template-columns: repeat(2,1fr);
        padding: 50px 20px;
    }

    .portfolio-grid,
    .product-grid,
    .products-layout,
    .product-details-wrap,
    .product-extra-grid,
    .related-products-grid,
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .portfolio,
    .homepage-cta,
    .top-products,
    .product-details-page,
    .product-extra-section,
    .related-products-section,
    .reviews-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .products-layout {
        padding-bottom: 40px;
    }

    .product-sidebar {
        position: static;
    }

    .products-toolbar {
        padding: 0 20px;
        justify-content: center;
    }

    .sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .product-main-image img {
        height: 360px;
    }

    .product-trust-points,
    .product-action-buttons {
        grid-template-columns: 1fr;
    }

    .product-info-box h1 {
        font-size: 30px;
    }

    .product-price {
        font-size: 24px;
    }

    .review-summary {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
    }

    .sticky-product-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        gap: 12px;
    }

    .sticky-product-name {
        max-width: 100%;
        white-space: normal;
    }

    .sticky-product-actions {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .sticky-btn {
        min-width: 0;
        width: 100%;
        padding: 10px 8px;
        font-size: 13px;
    }

    body.product-page-has-sticky {
        padding-bottom: 135px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    body {
        padding-top: var(--mobile-page-top, 256px) !important;
    }

    .header-inner {
        padding: 18px 15px 16px !important;
    }

    .logo {
        font-size: 24px !important;
    }

    .search-box {
        max-width: 100% !important;
    }

    .search-box input {
        height: 48px !important;
        font-size: 14px !important;
    }

    .header-actions {
        gap: 14px !important;
    }

    .header-actions a {
        font-size: 15px !important;
    }

    .mobile-menu-btn {
        height: 50px !important;
        font-size: 20px !important;
    }

    .nav-menu {
        max-height: calc(100vh - var(--mobile-menu-top, 256px)) !important;
        padding: 12px 22px 120px !important;
    }

    .nav-item > a,
    .nav-item > span {
        font-size: 16px !important;
        padding: 16px 4px !important;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .services {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .card {
        padding: 22px 12px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 13px;
    }

    .call-float {
        bottom: 150px;
    }

    .quote-float {
        bottom: 85px;
    }

    .whatsapp-float {
        bottom: 20px;
    }
}


/* =====================================================
   NORMAL DROPDOWN DESKTOP HOVER FIX
   For Safety Signage, Vehicle & ADA, Vinyl & Decals, Hardware
===================================================== */

@media (min-width: 1025px) {

    .nav-item.dropdown {
        position: relative !important;
    }

    .nav-item.dropdown .dropdown-menu {
        top: 100% !important;
        margin-top: 0 !important;
        left: 0 !important;
        min-width: 300px !important;
        z-index: 6000 !important;
    }

    /* invisible bridge to stop dropdown closing */
    .nav-item.dropdown .dropdown-menu::before {
        content: "" !important;
        position: absolute !important;
        top: -22px !important;
        left: 0 !important;
        width: 100% !important;
        height: 22px !important;
        background: transparent !important;
        display: block !important;
    }

    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown.dropdown-open .dropdown-menu,
    .nav-item.dropdown .dropdown-menu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    /* right side dropdown should not go outside screen */
    .nav-item.dropdown:nth-last-child(1) .dropdown-menu,
    .nav-item.dropdown:nth-last-child(2) .dropdown-menu,
    .nav-item.dropdown:nth-last-child(3) .dropdown-menu,
    .nav-item.dropdown:nth-last-child(4) .dropdown-menu {
        left: auto !important;
        right: 0 !important;
    }

    .dropdown-menu a {
        white-space: normal !important;
        line-height: 1.35 !important;
    }
}

/* ================= MASTER CATALOGUE PAGE ================= */
.catalog-hero {
    padding: 55px 20px 35px;
    background: radial-gradient(circle at top left, rgba(255,215,0,.18), transparent 35%), #080808;
}

.catalog-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.catalog-label {
    display: inline-flex;
    background: rgba(255,215,0,.12);
    color: #FFD700;
    border: 1px solid rgba(255,215,0,.3);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.catalog-hero h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.catalog-hero p {
    color: #bbb;
    max-width: 720px;
    line-height: 1.7;
}

.catalog-hero-card {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 26px;
    min-width: 190px;
    text-align: center;
}

.catalog-hero-card strong {
    display: block;
    color: #FFD700;
    font-size: 36px;
    line-height: 1;
}

.catalog-hero-card span {
    color: #ccc;
    font-size: 14px;
}

.catalog-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.catalog-sidebar {
    position: sticky;
    top: 170px;
    height: fit-content;
}

.catalog-filter-form,
.catalog-help-box {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 22px;
}

.catalog-filter-form {
    margin: 0;
}

.catalog-filter-form label {
    color: #ddd;
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
}

.catalog-filter-form input,
.catalog-filter-form select {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
}

.catalog-filter-form button {
    width: 100%;
    margin-top: 10px;
}

.catalog-reset {
    display: block;
    text-align: center;
    color: #FFD700;
    text-decoration: none;
    margin-top: 12px;
    font-size: 14px;
}

.catalog-help-box {
    margin-top: 18px;
}

.catalog-help-box h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.catalog-help-box p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.catalog-help-box a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 800;
}

.catalog-topbar {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 22px;
}

.catalog-topbar h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.catalog-topbar p {
    color: #aaa;
    font-size: 14px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.catalog-card {
    background: #181818;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 22px;
    transition: .28s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255,215,0,.1);
}

.catalog-card-top span {
    display: inline-flex;
    background: rgba(255,215,0,.12);
    color: #FFD700;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.catalog-card h3 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.catalog-desc {
    color: #bbb;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.catalog-feature {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 14px;
}

.catalog-feature i {
    color: #FFD700;
    margin-right: 6px;
}

.catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.catalog-meta span {
    color: #aaa;
    font-size: 12px;
}

.catalog-meta i {
    color: #FFD700;
    margin-right: 4px;
}

.catalog-price {
    font-size: 18px;
    color: #FFD700;
    font-weight: 900;
    margin-bottom: 14px;
}

.catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.catalog-tags span {
    background: #111;
    border: 1px solid #2a2a2a;
    color: #ccc;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 999px;
}

.catalog-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.catalog-actions button,
.catalog-actions a {
    width: 100%;
    text-decoration: none;
    border-radius: 10px;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.catalog-actions a {
    background: #25D366;
    color: #fff;
}

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 40px;
}

.catalog-empty p {
    color: #aaa;
    margin: 8px 0 18px;
}

.catalog-empty a {
    color: #FFD700;
}

.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.catalog-pagination a,
.catalog-pagination span {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
}

.catalog-pagination a {
    color: #FFD700;
}

@media (max-width: 1024px) {
    .catalog-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .catalog-sidebar {
        position: static;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 650px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-actions {
        grid-template-columns: 1fr;
    }

    .catalog-hero h1 {
        font-size: 28px;
    }
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.card-link:hover .card {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* ================= PREMIUM FOOTER ================= */
.site-footer {
    background: #0a0a0a;
    position: relative;
    margin-top: 80px;
}

/* Wave Separator */
.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

/* ================= NEWSLETTER SECTION ================= */
.footer-newsletter {
    background: linear-gradient(135deg, #141414 0%, #0f0f0f 50%, #141414 100%);
    border-bottom: 1px solid #1f1f1f;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left Side */
.newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.newsletter-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--gold), #c9a900);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    transition: 0.3s;
}

.newsletter-icon-wrap:hover {
    transform: rotate(-10deg) scale(1.05);
}

.newsletter-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.newsletter-text p {
    color: #888;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Right Side - Form */
.newsletter-form {
    flex-shrink: 0;
    width: 440px;
    max-width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: #0f0f0f;
    border: 2px solid #242424;
    border-radius: 14px;
    padding: 4px;
    transition: 0.3s;
}

.newsletter-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255,215,0,0.08);
}

.newsletter-input-group i.fa-envelope {
    color: #666;
    font-size: 16px;
    padding: 0 14px;
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: #555;
}

.newsletter-input-group button {
    height: 46px;
    padding: 0 22px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: 0.3s;
    flex-shrink: 0;
}

.newsletter-input-group button:hover {
    background: #e6c200;
    gap: 12px;
    transform: translateX(2px);
}

.newsletter-input-group button i {
    font-size: 13px;
    transition: 0.3s;
}

/* ================= NEWSLETTER RESPONSIVE ================= */
@media (max-width: 900px) {
    .footer-newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-left {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .newsletter-icon-wrap {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
        border-radius: 14px;
    }

    .newsletter-text h3 {
        font-size: 20px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 30px 0;
    }

    .footer-newsletter-inner {
        padding: 0 20px;
    }

    .newsletter-input-group {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
        background: transparent;
        border: none;
    }

    .newsletter-input-group i.fa-envelope {
        display: none;
    }

    .newsletter-input-group input {
        width: 100%;
        background: #0f0f0f;
        border: 2px solid #242424;
        border-radius: 10px;
        height: 48px;
        padding: 0 16px;
    }

    .newsletter-input-group input:focus {
        border-color: var(--gold);
    }

    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
        height: 48px;
    }
}

/* Main Footer Grid */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1.1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.footer-brand p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    font-size: 32px;
    color: var(--gold);
}

.footer-logo h4 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
}

.footer-logo h4::after {
    display: none;
}

/* Trust Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #141414;
    border: 1px solid #242424;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #ccc;
}

.badge i {
    color: var(--gold);
    font-size: 12px;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    display: inline-block;
    position: relative;
}

.footer-col ul li a i {
    font-size: 10px;
    margin-right: 6px;
    color: var(--gold);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Contact List */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
}

.contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #141414;
    border: 1px solid #242424;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
}

.whatsapp-icon {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.footer-contact li a,
.footer-contact li span {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-contact li small {
    color: #666;
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #141414;
    border: 1px solid #242424;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.2);
}

/* Bottom Bar */
.footer-bottom {
    background: #050505;
    border-top: 1px solid #141414;
    padding: 18px 0;
}

.footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-inner p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.footer-bottom-inner strong {
    color: #999;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-bottom-links .divider {
    color: #333;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 18px;
}

.payment-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #555;
    margin-right: 4px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 20px 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ================= PROFESSIONAL HERO SECTION ================= */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: auto;
    overflow: visible;
    background: #0a0a0a;
}



.hero-slider-advanced {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 600px;
    height: auto;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    position: relative;
}

/* Content Layouts */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Split Layout */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Center Layout */
.hero-center-layout {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Left Side */
.hero-left {
    max-width: 560px;
}

/* Right Side */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.25);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    width: fit-content;
}

.hero-center-layout .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.5px;
}

.hero-highlight {
    color: var(--gold);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 3px;
    background: var(--gold);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-content p {
    font-size: 16px;
    color: #bbb;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-center-layout p {
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-center-layout .hero-actions {
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.hero-btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 6px 25px rgba(255,215,0,0.25);
}

.hero-btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255,215,0,0.35);
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.25);
}

.hero-btn-whatsapp:hover {
    background: #20ba57;
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stats-center {
    justify-content: center;
    margin-top: 10px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.hero-stat-number span {
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.hero-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ================= FEATURED PRODUCT CARD ================= */
.hero-featured-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.hero-featured-card:hover {
    transform: translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

.hero-featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-info {
    padding: 18px;
}

.featured-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.featured-info p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
}

.featured-info strong {
    color: var(--gold);
}

.featured-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
}

.featured-stars span {
    color: #888;
    font-size: 12px;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.featured-link:hover {
    gap: 10px;
}

/* Mini Cards */
.hero-mini-card {
    position: absolute;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    z-index: 1;
}

.hero-mini-card:hover {
    transform: translateY(-3px);
}

.hero-mini-1 {
    top: -20px;
    right: -30px;
    width: 120px;
}

.hero-mini-2 {
    bottom: -20px;
    left: -30px;
    width: 130px;
}

.hero-mini-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.hero-mini-card span {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #ccc;
    background: #141414;
}

/* ================= SEARCH IN HERO ================= */
.hero-search-large {
    max-width: 600px;
    margin: 0 auto 30px;
    width: 100%;
}

.hero-search-input-wrap {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-search-input-wrap i {
    color: #999;
    font-size: 16px;
    padding: 0 18px;
    display: flex;
    align-items: center;
}

.hero-search-input-wrap input {
    flex: 1;
    height: 56px;
    padding: 0 10px;
    border: none;
    background: #fff;
    color: #111;
    font-size: 15px;
    outline: none;
}

.hero-search-input-wrap input::placeholder {
    color: #aaa;
}

.hero-search-input-wrap button {
    height: 56px;
    padding: 0 28px;
    background: var(--gold);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.hero-search-input-wrap button:hover {
    background: #e6c200;
}

.hero-search-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-search-tags span {
    color: #777;
    font-size: 12px;
}

.hero-search-tags a {
    color: #bbb;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    transition: 0.3s;
}

.hero-search-tags a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

/* ================= HERO RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-wrapper {
        height: auto;
        min-height: 600px;
        max-height: none;
    }

    .hero-content {
    padding: 90px 30px 60px;
}

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        order: 1;
    }

    .hero-right {
        order: 2;
        justify-content: center;
        padding: 0;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 34px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-divider {
        height: 35px;
    }

    /* Featured Card */
    .hero-featured-card {
        width: 280px;
        margin: 0 auto;
    }

    .hero-featured-card img {
        height: 180px;
    }

    /* Mini Cards */
    .hero-mini-card {
        display: none;
    }

    /* Center Layout */
    .hero-center-layout {
        text-align: center;
        padding: 60px 30px 50px;
    }

    .hero-center-layout h1 {
        font-size: 30px;
    }

    .hero-search-large {
        max-width: 100%;
    }

    /* Arrows */
    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
        top: 45%;
    }

    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }

    /* Dots */
    .hero-dots {
        bottom: 20px;
    }
}

@media (max-width: 600px) {
    .hero-wrapper {
        min-height: 520px;
    }

    .hero-content {
        padding: 80px 18px 45px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    /* Buttons Stack */
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 13px;
        text-align: center;
    }

    /* Stats */
    .hero-stats {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-number span {
        font-size: 12px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-stat-divider {
        height: 28px;
    }

    /* Featured Card */
    .hero-featured-card {
        width: 100%;
        max-width: 280px;
    }

    .hero-featured-card img {
        height: 160px;
    }

    .featured-info {
        padding: 14px;
    }

    .featured-info h4 {
        font-size: 16px;
    }

    /* Center Layout */
    .hero-center-layout {
        padding: 50px 18px 40px;
    }

    .hero-center-layout h1 {
        font-size: 24px;
    }

    /* Search in Hero */
    .hero-search-input-wrap {
        flex-direction: column;
        background: transparent;
        gap: 8px;
        box-shadow: none;
    }

    .hero-search-input-wrap i {
        display: none;
    }

    .hero-search-input-wrap input {
        border-radius: 10px;
        height: 46px;
        background: #fff;
        font-size: 14px;
    }

    .hero-search-input-wrap button {
        border-radius: 10px;
        height: 46px;
        width: 100%;
        font-size: 14px;
    }

    .hero-search-tags {
        justify-content: center;
        gap: 6px;
    }

    .hero-search-tags a {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Hide Arrows on Small Mobile */
    .hero-arrow {
        display: none;
    }

    /* Dots */
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }
}

@media (max-width: 380px) {
    .hero-wrapper {
        min-height: 480px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 9px;
    }

    .hero-stat-divider {
        height: 24px;
    }

    .hero-featured-card {
        max-width: 250px;
    }

    .hero-featured-card img {
        height: 140px;
    }
}

/* ================= MASSIVE TRUST STRIP ================= */
.trust-strip-massive {
    position: relative;
    background: #080808;
    padding: 0;
    overflow: hidden;
}

.trust-strip-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.trust-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.trust-item-massive {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 20px;
}

.trust-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    transition: 0.3s;
}

.trust-item-massive:hover .trust-icon-wrap {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.trust-number span {
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.trust-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.trust-sub {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    margin: 15px 0;
}

/* ================= MASSIVE SERVICES SECTION ================= */
.services-massive {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(255,215,0,0.1);
    padding: 6px 16px;
    border-radius: 999px;
}

.services-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.services-desc {
    color: #aaa;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid-massive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Card */
.service-card-massive {
    position: relative;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 35px 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-card-massive:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(255,215,0,0.1);
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-icon-massive {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.03));
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 22px;
    transition: 0.3s;
}

.service-card-massive:hover .service-icon-massive {
    background: var(--gold);
    color: #000;
    transform: rotate(-5deg) scale(1.05);
}

.service-card-massive h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-card-massive p {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    font-size: 12px;
    color: #bbb;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-features span i {
    color: var(--gold);
    font-size: 10px;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.service-card-massive:hover .service-arrow {
    gap: 12px;
}

.service-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.03;
    pointer-events: none;
    transition: 0.3s;
}

.service-card-massive:hover .service-bg-icon {
    opacity: 0.06;
    transform: scale(1.1);
}

/* CTA Card */
.service-card-cta {
    background: linear-gradient(135deg, #1a1a0a, #111);
    border-color: rgba(255,215,0,0.3);
}

.service-icon-cta {
    background: linear-gradient(135deg, var(--gold), #c9a900) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
}

/* Bottom CTA */
.services-bottom-cta {
    text-align: center;
    margin-top: 40px;
}

.services-bottom-cta p {
    color: #aaa;
    font-size: 16px;
}

.services-bottom-cta a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.services-bottom-cta a:hover {
    gap: 10px;
}

/* ================= TRUST & SERVICES RESPONSIVE ================= */
@media (max-width: 1024px) {
    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-divider:nth-child(2) {
        display: none;
    }

    .services-grid-massive {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 34px;
    }
}

@media (max-width: 650px) {
    .trust-strip-inner {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item-massive {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .trust-item-massive:last-child {
        border-bottom: none;
    }

    .services-massive {
        padding: 50px 20px;
    }

    .services-grid-massive {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 28px;
    }

    .services-desc {
        font-size: 15px;
    }

    .service-card-massive {
        padding: 28px 22px;
    }

    .trust-number {
        font-size: 24px;
    }
}

/* ================= STUNNING PORTFOLIO SECTION ================= */
.portfolio-massive {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(255,215,0,0.1);
    padding: 6px 16px;
    border-radius: 999px;
}

.portfolio-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.portfolio-desc {
    color: #aaa;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid-massive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: auto;
}

/* Large first item spans 2 columns */
.portfolio-item-large {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item-normal {
    grid-column: span 1;
}

/* Portfolio Card */
.portfolio-card {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255,215,0,0.1);
}

/* Image Container */
.portfolio-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.portfolio-item-large .portfolio-image-wrap {
    aspect-ratio: 16 / 8;
}

.portfolio-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image-wrap img {
    transform: scale(1.08);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    width: 100%;
}

.portfolio-category-tag {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.portfolio-actions {
    display: flex;
    gap: 10px;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: 0.3s;
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: var(--gold);
    color: #000;
}

.portfolio-btn-quote {
    background: rgba(255,215,0,0.2);
    color: var(--gold);
}

/* Info Below Image */
.portfolio-info {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-category-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(255,215,0,0.1);
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.portfolio-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ddd;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Empty State */
.portfolio-empty {
    text-align: center;
    padding: 60px 20px;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
}

.portfolio-empty i {
    font-size: 60px;
    color: #333;
    margin-bottom: 16px;
    display: block;
}

.portfolio-empty h3 {
    color: #fff;
    margin-bottom: 8px;
}

.portfolio-empty p {
    color: #888;
}

/* Portfolio CTA */
.portfolio-cta {
    margin-top: 50px;
}

.portfolio-cta-inner {
    background: linear-gradient(135deg, #141414, #0f0f0f);
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.portfolio-cta-text h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.portfolio-cta-text p {
    color: #aaa;
    font-size: 15px;
}

.portfolio-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ================= PORTFOLIO LIGHTBOX ================= */
.portfolio-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.portfolio-lightbox.active {
    display: flex;
}

.portfolio-lightbox img {
    max-width: 90%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.portfolio-lightbox p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.portfolio-lightbox-close:hover {
    color: var(--gold);
}

/* ================= PORTFOLIO RESPONSIVE ================= */
@media (max-width: 1024px) {
    .portfolio-massive {
        padding: 60px 25px;
    }

    .portfolio-grid-massive {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item-large {
        grid-column: span 2;
    }

    .portfolio-title {
        font-size: 34px;
    }

    .portfolio-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .portfolio-cta-actions .hero-btn {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .portfolio-massive {
        padding: 40px 16px;
    }

    .portfolio-grid-massive {
        grid-template-columns: 1fr;
    }

    .portfolio-item-large {
        grid-column: span 1;
    }

    .portfolio-image-wrap,
    .portfolio-item-large .portfolio-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-desc {
        font-size: 14px;
    }

    .portfolio-button {
        width: 100%;
        justify-content: center;
    }
}


/* ================= STUNNING PORTFOLIO ================= */
.portfolio-massive {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(255,215,0,0.1);
    padding: 6px 16px;
    border-radius: 999px;
}

.portfolio-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.portfolio-desc {
    color: #aaa;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================= MASONRY GRID ================= */
.portfolio-grid-massive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.portfolio-wide {
    grid-column: span 2;
}

.portfolio-tall {
    grid-row: span 1;
}

.portfolio-normal {
    grid-column: span 1;
}

/* Card */
.portfolio-card-massive {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}

.portfolio-card-massive:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255,215,0,0.12);
    z-index: 2;
}

.portfolio-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-massive:hover .portfolio-img-wrap img {
    transform: scale(1.08);
}

/* Gradient Overlay */
.portfolio-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

/* Hover Content */
.portfolio-hover-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.portfolio-card-massive:hover .portfolio-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-hover-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-hover-buttons {
    display: flex;
    gap: 8px;
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.pf-btn-view {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

.pf-btn-view:hover {
    background: #fff;
    color: #000;
}

.pf-btn-quote {
    background: var(--gold);
    color: #000;
}

.pf-btn-quote:hover {
    background: #e6c200;
}

/* Title Bar (Always visible) */
.portfolio-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

/* Placeholder */
.portfolio-placeholder {
    background: #111;
    border: 1px solid #1f1f1f;
}

.placeholder-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ================= PORTFOLIO STATS ROW ================= */
.portfolio-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-stat-item {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s;
}

.portfolio-stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.pf-stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.03));
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.pf-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.pf-stat-number span {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

.pf-stat-text {
    font-size: 13px;
    color: #aaa;
    margin-top: 2px;
    display: block;
}

/* ================= PORTFOLIO CTA BANNER ================= */
.portfolio-cta-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, #111, #0a0a0a);
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.pf-cta-bg-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pf-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.pf-cta-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.pf-cta-text p {
    color: #aaa;
    font-size: 15px;
}

.pf-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ================= LIGHTBOX ================= */
.portfolio-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.96);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.portfolio-lightbox.active {
    display: flex;
}

.portfolio-lightbox img {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 12px;
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.portfolio-lightbox p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.portfolio-lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ================= PORTFOLIO RESPONSIVE ================= */
@media (max-width: 1024px) {
    .portfolio-massive {
        padding: 60px 25px;
    }

    .portfolio-grid-massive {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .portfolio-wide {
        grid-column: span 2;
    }

    .portfolio-normal {
        grid-column: span 1;
    }

    .portfolio-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .pf-cta-buttons {
        justify-content: center;
    }

    .portfolio-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .portfolio-massive {
        padding: 40px 16px;
    }

    .portfolio-grid-massive {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .portfolio-wide,
    .portfolio-normal,
    .portfolio-tall {
        grid-column: span 1;
    }

    .portfolio-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .portfolio-stat-item {
        padding: 16px 14px;
        gap: 10px;
    }

    .pf-stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .pf-stat-number {
        font-size: 20px;
    }

    .pf-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pf-cta-buttons .hero-btn {
        justify-content: center;
        width: 100%;
    }

    .portfolio-title {
        font-size: 28px;
    }
}


/* ================= MASSIVE REVIEWS SECTION ================= */
.reviews-massive {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    overflow: hidden;
}

.reviews-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.reviews-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(255,215,0,0.1);
    padding: 6px 16px;
    border-radius: 999px;
}

.reviews-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.reviews-desc {
    color: #aaa;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================= REVIEW SUMMARY ROW ================= */
.reviews-summary-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.review-summary-card {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: 0.3s;
}

.review-summary-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Rating Circle */
.summary-rating-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.summary-big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.summary-stars {
    display: flex;
    gap: 3px;
}

.summary-stars i {
    font-size: 18px;
}

.summary-total {
    color: #888;
    font-size: 14px;
}

/* Rating Bars */
.review-bars-card {
    text-align: left;
}

.review-bars-card h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bar-label {
    color: #ccc;
    font-size: 13px;
    min-width: 40px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.bar-label i {
    color: var(--gold);
    font-size: 10px;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #c9a900);
    border-radius: 10px;
    transition: width 1s ease;
}

.bar-count {
    color: #888;
    font-size: 13px;
    min-width: 25px;
    text-align: right;
}

/* CTA Card */
.review-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-cta-card i {
    font-size: 36px;
    color: var(--gold);
}

.review-cta-card h4 {
    color: #fff;
    font-size: 18px;
}

.review-cta-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    margin-top: 5px;
}

.review-cta-btn:hover {
    background: #e6c200;
    gap: 10px;
}

/* ================= REVIEW CARDS GRID ================= */
.reviews-grid-massive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Individual Review Card */
.review-card-massive {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 28px 24px 22px;
    position: relative;
    transition: all 0.35s ease;
}

.review-card-massive:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255,215,0,0.1);
}

/* Quote Icon */
.review-quote-icon {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 30px;
    color: rgba(255,215,0,0.08);
}

/* Stars */
.review-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.review-date {
    color: #666;
    font-size: 11px;
    margin-left: auto;
}

/* Review Text */
.review-card-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

/* Reviewer Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #000;
}

.reviewer-details h5 {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.reviewer-badge {
    font-size: 11px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.reviewer-badge i {
    font-size: 10px;
}

/* Product Tag */
.review-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.15);
    color: #ccc;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.review-product-tag i {
    color: var(--gold);
    font-size: 10px;
}

/* Placeholder */
.review-placeholder {
    opacity: 0.5;
}

.review-placeholder .reviewer-avatar {
    opacity: 0.7;
}

/* ================= REVIEWS BOTTOM CTA ================= */
.reviews-bottom-cta {
    margin-top: 45px;
    position: relative;
    z-index: 1;
}

.reviews-cta-inner {
    background: linear-gradient(135deg, #111, #0a0a0a);
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.reviews-cta-text h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 8px;
}

.reviews-cta-text p {
    color: #aaa;
    font-size: 15px;
}

.reviews-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ================= REVIEWS RESPONSIVE ================= */
@media (max-width: 1024px) {
    .reviews-massive {
        padding: 60px 25px;
    }

    .reviews-summary-row {
        grid-template-columns: 1fr 1fr;
    }

    .review-cta-card {
        grid-column: span 2;
    }

    .reviews-grid-massive {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-title {
        font-size: 34px;
    }

    .reviews-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .reviews-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .reviews-cta-actions .hero-btn {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .reviews-massive {
        padding: 40px 16px;
    }

    .reviews-summary-row {
        grid-template-columns: 1fr;
    }

    .review-cta-card {
        grid-column: span 1;
    }

    .reviews-grid-massive {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 28px;
    }

    .summary-big-number {
        font-size: 48px;
    }
}


/* Google Review Card */
.review-google-card {
    background: linear-gradient(135deg, #0a0a0a, #111);
    border-color: rgba(66,133,244,0.3);
}

.google-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.google-logo {
    height: 24px;
    margin-bottom: 4px;
}

.google-icon-fallback i {
    margin-bottom: 4px;
}

.google-rating {
    text-align: center;
}

.google-big-number {
    font-size: 48px;
    font-weight: 800;
    color: #4285F4;
    line-height: 1;
    display: block;
}

.google-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: 4px;
}

.google-stars i {
    color: #FBBC04;
    font-size: 14px;
}

.google-review-card h4 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.google-review-card p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #4285F4;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    margin-top: 5px;
}

.google-review-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
}