/* Zlinex Window Coverings - Main Stylesheet */

:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d5e;
    --gold: #c4a35a;
    --gold-light: #d4b86a;
    --gold-dark: #a8883a;
    --white: #ffffff;
    --gray-50: #f8f7f4;
    --gray-100: #f0efe8;
    --gray-200: #e0ddd4;
    --gray-400: #9a9484;
    --gray-500: #6b6558;
    --gray-600: #4a453c;
    --gray-700: #36322b;
    --gray-900: #141310;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --pad: 24px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.25;
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
.text-accent { color: var(--gold); }

/* Sections */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto clamp(1.5rem, 4vw, 3rem); }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-desc { color: var(--gray-500); font-size: 1.05rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-secondary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-large { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-text { background: none; color: var(--gold-dark); padding: 4px 0; border: none; cursor: pointer; font-weight: 500; }
.btn-text:hover { color: var(--gold); }
.btn-text span { display: inline-block; transition: transform var(--transition); }
.btn-text:hover span { transform: translateX(4px); }

/* Header Top Bar */
.header-top-bar {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 6px 0;
}
.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}
.top-bar-info svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.8;
}
.top-bar-info a {
    color: rgba(255,255,255,0.7);
}
.top-bar-info a:hover {
    color: var(--gold-light);
}
.top-bar-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--white) !important;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 3px;
    transition: all var(--transition);
    text-decoration: none;
}
.top-bar-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Header */
.site-header {
    position: sticky;
    top: 34px;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.header-main { padding: 12px 0; }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-branding { flex-shrink: 0; }
.site-logo { text-decoration: none; display: flex; align-items: center; }
.logo-image {
    display: block;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Main Navigation Wrapper */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Mobile header CTA */
.header-cta-mobile {
    display: none;
}

/* Main content area */
.site-main {
    padding-top: 0;
}

/* Navigation */
.primary-menu { display: flex; align-items: center; gap: 4px; }
.primary-menu a {
    display: block; padding: 8px 16px;
    font-size: 0.95rem; font-weight: 500;
    color: var(--gray-700); letter-spacing: 0.3px;
}
.primary-menu a:hover { color: var(--primary); }

/* Dropdown submenu */
.primary-menu .menu-item-has-children {
    position: relative;
}
.primary-menu .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    transition: transform var(--transition);
}
.primary-menu .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-bottom: -2px;
}

/* Sub-menu grid — 2x2 card grid */
.sub-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 520px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease;
    z-index: 999;
    padding: 8px;
}
.menu-item-has-children:hover .sub-menu-grid {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Sub-menu card */
.sub-menu-card {
    list-style: none;
    border-radius: 6px;
    overflow: hidden;
    transition: background var(--transition);
}
.sub-menu-card a {
    display: flex !important;
    flex-direction: column;
    padding: 0 !important;
    text-decoration: none;
}
.sub-menu-img {
    display: block;
    height: 100px;
    background-image: var(--menu-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.sub-menu-card:hover .sub-menu-img {
    transform: scale(1.05);
}
.sub-menu-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 10px 2px;
}
.sub-menu-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    padding: 0 10px 10px;
    line-height: 1.3;
}
.sub-menu-card:hover {
    background: var(--gray-50);
}
.sub-menu-card:hover .sub-menu-label {
    color: var(--primary);
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger-line { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }

/* Hero Promo Badge */
.hero-promo-badge {
    position: absolute;
    right: 40px;
    top: calc(50% + 30px);
    transform: translateY(-50%);
    z-index: 2;
    animation: promoFadeIn 1s ease-out 0.5s both;
}

@media (max-width: 1400px) {
    .hero-promo-badge {
        right: 20px;
    }
    .promo-badge-inner {
        width: 290px;
        padding: 28px 24px 24px;
    }
    .promo-number {
        font-size: 4rem;
    }
    .promo-subtitle {
        font-size: 0.9rem;
    }
    .promo-text {
        font-size: 0.85rem;
    }
}
@media (max-width: 1200px) {
    .hero-promo-badge {
        right: 12px;
    }
    .promo-badge-inner {
        width: 240px;
        padding: 20px 18px 18px;
    }
    .promo-number {
        font-size: 3.2rem;
    }
    .promo-off {
        font-size: 1rem;
    }
    .promo-subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    .promo-text {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    .promo-cta {
        font-size: 0.72rem;
        padding: 7px 16px;
    }
}
@media (max-width: 1024px) {
    .hero-promo-badge {
        position: static;
        transform: none;
        animation: none;
        margin-top: 2.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: center;
    }
    .promo-badge-inner {
        width: 100%;
        max-width: 360px;
        padding: 28px 24px 24px;
    }
    .promo-number {
        font-size: 5rem;
    }
    .promo-off {
        font-size: 1.3rem;
    }
    .promo-subtitle {
        font-size: 1rem;
    }
    .promo-text {
        font-size: 0.95rem;
    }
    .promo-cta {
        font-size: 0.85rem;
        padding: 10px 24px;
    }
}
.promo-badge-inner {
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
    border-radius: 16px;
    padding: 36px 32px 30px;
    text-align: center;
    width: 340px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: promoPulse 2s ease-in-out infinite 1.5s;
}
.promo-badge-inner:hover {
    transform: scale(1.03);
    animation-play-state: paused;
}
.promo-tag {
    display: inline-block;
    background: rgba(0,0,0,0.25);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.promo-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2px;
    line-height: 1;
}
.promo-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.promo-off {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.15);
    padding: 4px 14px;
    border-radius: 4px;
}
.promo-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.promo-text {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}
.promo-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.promo-cta {
    display: inline-block;
    background: var(--white);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.promo-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(2px);
}
.promo-expiry {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    font-weight: 500;
}

/* Shine animation overlay */
.promo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: promoShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes promoShine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

@keyframes promoFadeIn {
    from { opacity: 0; transform: translateY(calc(-50%)) translateX(30px); }
    to { opacity: 1; transform: translateY(calc(-50%)) translateX(0); }
}
@keyframes promoPulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 12px 50px rgba(196,163,90,0.4), 0 0 0 1px rgba(255,255,255,0.2); }
}

/* Hero Wrapper — positions badge on desktop */
.hero-wrapper {
    position: relative;
}

/* Hero */
.hero-section {
    position: relative; min-height: 90vh;
    display: flex; align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
    overflow: hidden;
}
/* On mobile, badge flows naturally below hero section */
@media (max-width: 1024px) {
    .hero-wrapper {
        padding-bottom: 0;
    }
}

/* On small screens, reduce spacing and size */
@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 1rem;
    }
    .hero-promo-badge {
        margin-top: 1.5rem;
    }
    .promo-badge-inner {
        max-width: 100%;
        padding: 22px 20px 20px;
    }
    .promo-number {
        font-size: 3.8rem;
    }
    .promo-off {
        font-size: 1.1rem;
    }
    .promo-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .promo-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .promo-cta {
        font-size: 0.8rem;
        padding: 9px 20px;
    }
}
@media (max-width: 380px) {
    .hero-section { padding: 2.5rem 0 0.5rem; }
    .hero-promo-badge { margin-top: 1rem; }
    .promo-badge-inner {
        max-width: 100%;
        padding: 18px 16px 16px;
    }
    .promo-number { font-size: 3.2rem; }
    .promo-subtitle { font-size: 0.75rem; }
    .promo-text { font-size: 0.75rem; }
    .promo-cta { font-size: 0.72rem; padding: 7px 16px; }
}
.hero-background {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a1a3e 100%);
    z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
    display: inline-block;
    background: rgba(196,163,90,0.15);
    color: var(--gold);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(196,163,90,0.3);
    margin-bottom: 1.5rem;
}
.hero-title { color: var(--white); margin-bottom: 1.25rem; line-height: 1.1; }
.hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 550px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Product Showcase (Home) */
.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.product-card {
    cursor: pointer;
}
.product-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.product-card-image {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-image: var(--card-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}
.product-card-overlay {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    text-align: left;
}
.product-card-overlay h3 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1.25rem;
}
.product-card-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-card svg { color: var(--gold); margin-bottom: 12px; }
.benefit-card h3 { font-size: 0.95rem; margin-bottom: 6px; font-weight: 600; }
.benefit-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0.8;
    transition: opacity var(--transition);
}
@media (hover: hover) {
    .gallery-overlay { opacity: 0; }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
}
.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}
.gallery-cta {
    text-align: center;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-large {
        grid-column: span 1;
    }
}

/* ============================================================
   Gallery Modal (clicking submenu items)
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    backdrop-filter: blur(4px);
    animation: modalFadeIn 0.3s ease;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: modalSlideUp 0.35s ease;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    transition: all var(--transition);
    z-index: 2;
}
.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.modal-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.modal-grid-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition);
}
.modal-grid-item:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}
.modal-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.modal-grid-item .modal-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity var(--transition);
}
.modal-grid-item:hover .modal-img-label {
    opacity: 1;
}
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 3px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .modal-content { padding: 20px; }
    .modal-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-overlay { padding: 20px 12px; align-items: flex-start; padding-top: 80px; }
}
@media (max-width: 480px) {
    .modal-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Motorization Promo — thin top ticker bar (scrolling marquee)
   ============================================================ */
.promo-ticker {
    position: sticky;
    top: 0;
    z-index: 2001;
    background: linear-gradient(90deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(196,163,90,0.2);
}
.promo-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 35s linear infinite;
}
.promo-ticker-track:hover {
    animation-play-state: paused !important;
}
.promo-ticker-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
    flex-shrink: 0;
}
.promo-ticker-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
}
.promo-ticker-item .ticker-highlight {
    color: var(--gold);
    font-weight: 600;
}
.promo-ticker-item .ticker-sep {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .promo-ticker-item {
        font-size: 0.6rem;
        gap: 14px;
        padding: 0 14px;
    }
    .promo-ticker-icon {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 480px) {
    .promo-ticker-item {
        font-size: 0.55rem;
        gap: 10px;
        padding: 0 10px;
    }
    .promo-ticker-icon {
        display: none;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { color: var(--white); margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-text strong { color: var(--gold); }

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    min-width: 200px;
}
.footer-right-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 700px;
}
.footer-inline-links-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.footer-inline-links-vertical a {
    border-right: none;
    padding: 2px 0;
}
.footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 12px;
}
.footer-logo {
    max-height: 70px;
    width: auto;
    display: block;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}
.footer-contact-row svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.8;
}
.footer-contact-row a {
    color: rgba(255,255,255,0.7);
}
.footer-contact-row a:hover {
    color: var(--gold-light);
}
.footer-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}
.footer-follow {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-follow-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-link-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    min-width: 80px;
}
.footer-inline-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.footer-inline-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 2px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: color var(--transition);
}
.footer-inline-links a:last-child {
    border-right: none;
}
.footer-inline-links a:hover {
    color: var(--gold-light);
}
.footer-links-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
}
.footer-links-grid-2 a {
    border-right: none;
    padding: 2px 4px;
}
 
/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    text-decoration: none;
}
.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
 
/* Contact page social */
.contact-social {
    padding: 16px 0 0;
    border-top: 1px solid var(--gray-100);
}
.contact-social-label {
    color: var(--gray-500);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-social .social-link {
    background: var(--gray-100);
    color: var(--gray-500);
}
.contact-social .social-link:hover {
    background: var(--gold);
    color: var(--white);
}
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
}
 
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left-col {
        min-width: auto;
        width: 100%;
        align-items: center;
    }
    .footer-left-col .footer-link-group {
        align-items: center;
    }
    .footer-right-col {
        max-width: 100%;
        width: 100%;
    }
    .footer-link-group {
        align-items: center;
        text-align: center;
    }
    .footer-inline-links {
        justify-content: center;
    }
    .footer-brand-info {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .footer-contact-row {
        justify-content: center;
    }
    .footer-follow {
        align-items: center;
    }
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-sep {
    color: rgba(255,255,255,0.15);
}
 
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left-col {
        min-width: auto;
        width: 100%;
        align-items: center;
    }
    .footer-left-col .footer-link-group {
        align-items: center;
    }
    .footer-right-col {
        max-width: 100%;
        width: 100%;
    }
    .footer-link-group {
        align-items: center;
        text-align: center;
    }
    .footer-inline-links {
        justify-content: center;
    }
    .footer-brand-info {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .footer-contact-row {
        justify-content: center;
    }
    .footer-follow {
        align-items: center;
    }
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-sep {
    color: rgba(255,255,255,0.15);
}

/* Page Hero */
.page-hero {
    background: var(--gray-50);
    padding: 4rem 0 2.5rem;
    text-align: center;
}
.page-hero-content { max-width: 650px; margin: 0 auto; }
.page-title { margin-bottom: 0.75rem; }
.page-subtitle { font-size: 1.05rem; color: var(--gray-500); line-height: 1.6; }

/* Products Page */
.product-categories-grid { display: flex; flex-direction: column; gap: 32px; }
.product-category-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}
.product-category-card:hover { box-shadow: var(--shadow-lg); }
.category-visual {
    display: flex; align-items: center; justify-content: center;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.category-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.category-content { padding: 32px; }
.category-label {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block;
}
.category-content h2 { margin-bottom: 0.75rem; }
.category-intro { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.25rem; }
.category-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1.5rem;
}
.category-features span {
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { font-size: 1rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 0.75rem; }
.about-image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}
.about-image-tag {
    display: inline-block;
    background: rgba(196,163,90,0.9);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Stats Bar */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item {
    padding: 24px 16px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Stats Scroll Animation */
@keyframes statFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.stat-item.is-visible {
    animation: statFadeIn 0.6s ease both;
}
.stat-item:nth-child(2).is-visible { animation-delay: 0.1s; }
.stat-item:nth-child(3).is-visible { animation-delay: 0.2s; }
.stat-item:nth-child(4).is-visible { animation-delay: 0.3s; }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Partnership Section */
.partnership-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.partnership-content h2 { margin-bottom: 1rem; }
.partnership-content p { font-size: 1rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 1.25rem; }
.partnership-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.partner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.partner-feature svg {
    flex-shrink: 0;
    color: var(--gold);
}
.partner-badge-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}
.partner-badge-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196,163,90,0.1);
    color: var(--gold);
}
.partner-badge-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.partner-badge-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
}
.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* FAQ */
.faq-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}
.faq-details {
    cursor: pointer;
}
.faq-details summary {
    list-style: none;
}
.faq-details summary::-webkit-details-marker {
    display: none;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: background var(--transition);
}
.faq-question:hover {
    background: var(--gray-50);
}
.faq-question svg {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.25s ease;
}
.faq-details[open] .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .partnership-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Service Areas Page
   ============================================================ */

/* Coverage Map */        .coverage-map-wrapper {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .coverage-map {
            display: block;
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 12px;
            z-index: 1;
        }
        .coverage-map .leaflet-container {
            border-radius: 12px;
        }

        /* Leaflet Custom Markers */
        .custom-marker {
            background: none !important;
            border: none !important;
        }
        .marker-pin {
            width: 36px;
            height: 36px;
            margin: 0 auto;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            transition: transform 0.2s ease;
        }
        .marker-pin svg {
            transform: rotate(45deg);
            width: 18px;
            height: 18px;
        }
        .leaflet-marker-icon:hover .marker-pin {
            transform: rotate(-45deg) scale(1.15);
        }
        .marker-label {
            position: absolute;
            top: 42px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 6px rgba(0,0,0,0.3);
            pointer-events: none;
        }
        .leaflet-popup-content-wrapper {
            border-radius: 8px !important;
            padding: 2px !important;
        }
        .leaflet-popup-content {
            margin: 10px 12px !important;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        .leaflet-popup-content strong {
            font-size: 0.95rem;
        }
.coverage-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}
.map-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 500;
}
.map-legend-marker {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--marker-color, var(--gold));
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* Service Regions Grid */
.service-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.service-region-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.service-region-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.region-card-header {
    padding: 16px 16px 12px;
    border-bottom: 3px solid var(--region-accent, var(--gold));
    background: var(--gray-50);
}
.region-card-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary);
}
.region-city-count {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.region-card-body {
    padding: 12px 16px 16px;
}
.region-cities {
    columns: 2;
    column-gap: 12px;
}
.region-cities li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    break-inside: avoid;
    position: relative;
    padding-left: 14px;
}
.region-cities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--region-accent, var(--gold));
    opacity: 0.5;
}

/* OC City Grid Cards */
.region-subsection {
    margin-bottom: 28px;
}
.region-subsection-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}
.region-subsection-header svg {
    flex-shrink: 0;
    color: var(--gold);
}
.region-subsection-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.region-city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.region-city-card {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.region-city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.region-city-card-featured {
    border-color: var(--gold);
    border-width: 2px;
    background: linear-gradient(135deg, var(--white), rgba(196,163,90,0.04));
}
.region-city-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.region-city-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 10px;
}
.city-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition);
}
.city-link:hover {
    color: var(--gold);
    gap: 6px;
}

@media (max-width: 1024px) {
    .region-city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .region-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .region-city-grid {
        grid-template-columns: 1fr;
    }
}

/* Regions Note */
.regions-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    max-width: 700px;
    margin: 0 auto;
}
.regions-note svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}
.regions-note p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.regions-note a {
    color: var(--gold-dark);
    font-weight: 600;
}
.regions-note a:hover {
    color: var(--gold);
}

/* Service Benefits Grid */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-benefit-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.service-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.service-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gold);
    transition: all var(--transition);
}
.service-benefit-card:hover .service-benefit-icon {
    background: var(--gold);
    color: var(--white);
}
.service-benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.service-benefit-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .service-regions-grid { grid-template-columns: repeat(2, 1fr); }
    .service-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-map { height: 300px; }
}
@media (max-width: 480px) {
    .service-regions-grid { grid-template-columns: 1fr; }
    .service-benefits-grid { grid-template-columns: 1fr; }
    .coverage-map { height: 250px; }
}

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.contact-form-title { margin-bottom: 1.25rem; }
.contact-form {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px;
    font-family: var(--font); font-size: 0.9rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196,163,90,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-checkbox label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; color: var(--gray-500); }
.form-checkbox input[type="checkbox"] { width: auto; width: 18px; height: 18px; accent-color: var(--gold); }
.btn-submit { width: 100%; margin-top: 4px; }
.form-messages { margin-top: 12px; }
.form-success, .form-error { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 6px; font-size: 0.85rem; }
.form-success { background: #e8f5e9; color: #2e7d32; }
.form-error { background: #fbe9e7; color: #c62828; }

.contact-info-card, .contact-service-areas {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    margin-bottom: 20px;
}
.contact-info-card h3, .contact-service-areas h3 { margin-bottom: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.contact-detail svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }
.contact-detail a, .contact-detail span { font-size: 0.88rem; color: var(--gray-500); }
.contact-service-areas p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.service-areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-areas-list ul { columns: 2; }
.service-areas-list ul li { padding: 3px 0; font-size: 0.85rem; color: var(--gray-600); break-inside: avoid; }
.service-areas-list ul li strong { color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; }

/* 404 / Search */
.error-404 { padding: 8rem 0 4rem; text-align: center; }
.error-404-content { max-width: 450px; margin: 0 auto; }
.error-404-number { font-size: 6rem; font-weight: 700; color: var(--gray-100); line-height: 1; display: block; }
.error-404-title { margin-bottom: 0.75rem; }
.error-404-text { font-size: 1rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.error-404-actions { display: flex; gap: 12px; justify-content: center; }
.search-page { padding: 8rem 0 4rem; }
.search-header { text-align: center; margin-bottom: 2rem; }
.search-results { max-width: 650px; margin: 0 auto; }
.search-result-item { padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.search-result-item h2 { font-size: 1.2rem; margin-bottom: 6px; }
.search-result-excerpt { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 6px; }
.search-no-results { text-align: center; padding: 40px; color: var(--gray-500); }

/* Single Product */
.single-product { padding-top: 8rem; }
.breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--gray-500); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-detail-title { margin-bottom: 1rem; }
.product-detail-desc { font-size: 1rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 1.5rem; }
.product-image-placeholder { background: var(--gray-100); padding: 60px; display: flex; align-items: center; justify-content: center; color: var(--gray-300); border-radius: 8px; }
.product-category-badge { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 6px; display: block; }
.product-detail-cta { padding: 20px; background: var(--gray-50); border-radius: 8px; }
.cta-prompt { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.75rem; }

/* Product Archive */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-archive-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-100); transition: all var(--transition); }
.product-archive-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-archive-info { padding: 20px; }
.product-archive-category { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; display: block; }
.product-archive-title { font-size: 1.1rem; margin-bottom: 6px; }
.product-archive-excerpt { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 10px; }
.product-archive-placeholder { aspect-ratio: 16/10; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-200); }

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --pad: 16px; }
    .menu-toggle { display: flex; }
    .header-cta-mobile { display: inline-flex; }
    .primary-menu {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }
    .primary-menu.active { display: flex; }
    .primary-menu a { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); }
    .primary-menu .menu-item-has-children > a::after { float: right; margin-top: 6px; }
    .primary-menu .menu-item-has-children:hover > a::after { transform: rotate(-135deg); }
    .sub-menu-grid {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 16px;
        grid-template-columns: 1fr 1fr;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
    }
    .menu-item-has-children:hover .sub-menu-grid {
        transform: none;
        max-height: 400px;
    }
    .sub-menu-img { height: 80px; }
    .hero-section { min-height: auto; padding: 4rem 0 2rem; }
    .product-showcase-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .product-category-card { grid-template-columns: 1fr; }
    .category-visual { min-height: 180px; }
    .category-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .products-grid { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; }
    .error-404-number { font-size: 4rem; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-subtitle { font-size: 0.95rem; }
    .service-areas-list { grid-template-columns: 1fr; }
    .service-areas-list ul { columns: 1; }
}

/* ============================================================
   Gallery Page — Filter Bar
   ============================================================ */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}
.gallery-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.gallery-filter-btn.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.gallery-filter-btn .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(0,0,0,0.08);
}
.gallery-filter-btn.is-active .filter-count {
    background: rgba(255,255,255,0.2);
}
/* Gallery page — Expand icon on hover */
.gallery-expand {
    margin-left: auto;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay .gallery-expand {
    opacity: 1;
}
/* Gallery empty state */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 0.72rem;
    }
    .gallery-filter-bar {
        gap: 6px;
        margin-bottom: 20px;
    }
}

/* ============================================================
   Gallery Lightbox (Products page)
   ============================================================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    animation: lightboxFadeIn 0.25s ease;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: lightboxScaleIn 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    z-index: 2;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
    z-index: 2;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    overflow: hidden;
}
.lightbox-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.lightbox-caption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    min-height: 1.4em;
}
.lightbox-counter {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Lightbox Auto-Play Button */
.lightbox-play-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    margin-top: 10px;
}
.lightbox-play-btn:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: scale(1.1);
}
.lightbox-play-btn.is-playing {
    color: var(--gold);
    border-color: rgba(196,163,90,0.4);
    box-shadow: 0 0 12px rgba(196,163,90,0.2);
    animation: playPulse 2s ease-in-out infinite;
}
.lightbox-play-btn svg {
    width: 16px;
    height: 16px;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes lightboxScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(196,163,90,0.2); }
    50% { box-shadow: 0 0 20px rgba(196,163,90,0.4); }
}

@media (max-width: 768px) {
    .lightbox-prev { left: -16px; }
    .lightbox-next { right: -16px; }
    .lightbox-nav {
        width: 36px;
        height: 36px;
    }
    .lightbox-container {
        max-height: 85vh;
    }
    .lightbox-nav { top: calc(50% - 28px); }
}
@media (max-width: 480px) {
    .lightbox-prev { left: -8px; }
    .lightbox-next { right: -8px; }
}

/* Footer Badge */
.footer-badge {
    display: inline-block;
    background: rgba(196,163,90,0.15);
    color: #c4a35a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(196,163,90,0.25);
    margin: 6px 0 10px;
}
