/* ============================================================
   SCELLO - Complete Stylesheet
   Theme: Warm Orange – Construction & Installation
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    /* Primary orange: confident, warm, construction-friendly */
    --color-primary: #ea580c;
    --color-primary-dark: #c2410c;
    --color-primary-light: #f97316;
    --color-primary-bright: #fdba74;
    --color-primary-subtle: #fff7ed;
    --color-secondary: #f97316;
    --color-accent: #fb923c;
    --color-deep-purple: #9a3412;
    --color-dark-bg: #1c1917;
    --color-text: #1a1a2e;
    --color-text-light: #2d2d44;
    --color-text-muted: #6b7280;
    --color-text-on-dark: #fff7ed;
    --color-on-primary: #ffffff;
    --color-bg-dark: #ffffff;
    --color-bg-elevated: #fffbf7;
    --color-bg-section: #fff8f5;
    --color-border: rgba(234, 88, 12, 0.18);
    --color-border-light: rgba(234, 88, 12, 0.1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(234, 88, 12, 0.08);
    --shadow-md: 0 4px 12px rgba(234, 88, 12, 0.1);
    --shadow-lg: 0 8px 20px rgba(234, 88, 12, 0.12);
    --shadow-xl: 0 16px 32px rgba(234, 88, 12, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Social brand colors for hover states */
    --social-facebook: #1877f2;
    --social-instagram-start: #f58529;
    --social-instagram-mid: #dd2a7b;
    --social-instagram-end: #8134af;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main,
#main-content {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 10px;
}

:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   4. TYPOGRAPHY & UTILITIES
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-deep-purple));
    margin: 0.875rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-light);
    max-width: 620px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hide-mobile {
    display: block;
}

.show-mobile-only {
    display: none;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar > .container,
.navbar > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo-text .logo-s {
    position: relative;
    color: var(--color-primary);
}

.logo-text .logo-s::after {
    content: '';
    position: absolute;
    top: -0.22em;
    left: 0;
    width: 0.95em;
    height: 0;
    border-bottom: 0.08em solid var(--color-primary);
    border-radius: 0 0 50% 50%;
}

.logo-text .logo-o {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    background: var(--color-primary-subtle);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: var(--shadow-sm);
}

/* Facebook: brand blue on hover */
.social-links a[aria-label="Facebook"]:hover {
    background: var(--social-facebook);
}

/* Instagram: brand gradient on hover */
.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, var(--social-instagram-start), var(--social-instagram-mid), var(--social-instagram-end));
}

.social-links a svg,
.social-links a i {
    width: 18px;
    height: 18px;
    fill: currentColor;
    font-size: 1.0625rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-social-links {
    display: none;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   6. HERO SECTION - Full-Screen Immersive
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay on background image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 25, 23, 0.88) 0%,
        rgba(154, 52, 18, 0.75) 50%,
        rgba(28, 25, 23, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 2rem 1.5rem 4rem;
}

.hero-badge-wrapper {
    margin-bottom: 1.5rem;
}

.hero-rbq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-rbq-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@keyframes heroHeadlineReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: heroHeadlineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
}

.hero-headline-top {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-headline-location {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-primary-bright);
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    min-height: 52px;
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-primary-dark);
}

.btn-primary-hero svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: #fff;
}

.btn-secondary-hero svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
    50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* Legacy hero elements - hidden */
.hero-image-showcase,
.hero-image-wrapper,
.hero-image-caption,
.hero-blob,
.hero-blobs {
    display: none;
}

/* ============================================================
   7. PARALLAX IMAGE SECTION
   ============================================================ */
.parallax-image-section {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.parallax-image-section img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -20%;
    left: 0;
    will-change: transform;
}

.parallax-image-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(154, 52, 18, 0.2),
        rgba(234, 88, 12, 0.1),
        rgba(154, 52, 18, 0.2)
    );
    pointer-events: none;
    z-index: 1;
}

/* Parallax overlay: descriptive content + clickable link to next section */
.parallax-text-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    text-decoration: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease;
}

.parallax-text-overlay:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.parallax-text-overlay:focus-visible {
    outline: 3px solid var(--color-primary-bright);
    outline-offset: 4px;
}

.parallax-text-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 640px;
}

.parallax-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
                 0 4px 24px rgba(0, 0, 0, 0.4),
                 0 0 1px rgba(0, 0, 0, 0.8);
    display: block;
}

.parallax-desc {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.parallax-hint {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-bright);
    margin-top: 0.25rem;
    opacity: 0.95;
}

.parallax-image-section.parallax-dark::after {
    background: linear-gradient(
        to bottom,
        rgba(28, 25, 23, 0.55),
        rgba(154, 52, 18, 0.45),
        rgba(28, 25, 23, 0.55)
    );
}

/* ============================================================
   8. FEATURES / QUALITIES SECTION
   ============================================================ */
.features-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
    position: relative;
}

.features-section > .container,
.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.qualities-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.quality-compact {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-normal);
}

.quality-compact:hover {
    border-color: var(--color-border);
    background: linear-gradient(135deg, #fff 0%, var(--color-primary-subtle) 100%);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.q-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.5rem;
}

.quality-compact:hover .q-icon {
    background: var(--color-primary);
    color: #fff;
}

.q-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.q-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.q-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* RBQ Badge Inline */
.rbq-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: var(--color-primary-subtle);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.rbq-badge-inline svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Specs Carousel - little badges */
.specs-carousel-container {
    position: relative;
    margin-top: 2rem;
}

.specs-carousel {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.specs-carousel-track {
    display: flex;
    gap: 0.75rem;
    animation: specs-scroll 25s linear infinite;
}

@keyframes specs-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes specs-badge-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(234, 88, 12, 0.12); }
    50% { box-shadow: 0 4px 16px rgba(234, 88, 12, 0.2); }
}

.specs-carousel-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.12);
    animation: specs-badge-glow 2.5s ease-in-out infinite;
}

.specs-carousel-item:nth-child(1) { animation-delay: 0s; }
.specs-carousel-item:nth-child(2) { animation-delay: 0.2s; }
.specs-carousel-item:nth-child(3) { animation-delay: 0.4s; }
.specs-carousel-item:nth-child(4) { animation-delay: 0.6s; }
.specs-carousel-item:nth-child(5) { animation-delay: 0.8s; }
.specs-carousel-item:nth-child(6) { animation-delay: 1s; }
.specs-carousel-item:nth-child(7) { animation-delay: 0s; }
.specs-carousel-item:nth-child(8) { animation-delay: 0.2s; }
.specs-carousel-item:nth-child(9) { animation-delay: 0.4s; }
.specs-carousel-item:nth-child(10) { animation-delay: 0.6s; }
.specs-carousel-item:nth-child(11) { animation-delay: 0.8s; }
.specs-carousel-item:nth-child(12) { animation-delay: 1s; }

.specs-carousel-item i,
.specs-carousel-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ============================================================
   9. GALLERY SECTION
   ============================================================ */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-section);
    position: relative;
}

.gallery-section > .container,
.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

button.gallery-carousel-nav {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

button.gallery-carousel-nav.prev {
    left: 1rem;
}

button.gallery-carousel-nav.next {
    right: 1rem;
}

button.gallery-carousel-nav:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

button.gallery-carousel-nav svg,
button.gallery-carousel-nav i {
    width: 20px;
    height: 20px;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1rem;
}

.gallery-carousel-slide {
    flex: 0 0 calc(33.333% - 0.667rem);
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 2.5;
    min-height: 0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-carousel-slide picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.gallery-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-carousel-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
}

.gallery-carousel-slide:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-carousel-slide:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.gallery-item-title--rotated {
    transform: rotate(-3deg);
}

.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary-bright);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.gallery-carousel-dots button.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

.gallery-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================================
   10. PROCESS SECTION
   ============================================================ */
.process-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
    position: relative;
}

.process-section > .container,
.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.process-styled {
    position: relative;
}

/* Process steps: timeline and step visuals */
@keyframes processLineDraw {
    from { transform: scaleX(0); opacity: 0.6; }
    to { transform: scaleX(1); opacity: 1; }
}

@keyframes processStepIconIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes processStepNumPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes processStepIconPulse {
    0%, 100% { box-shadow: var(--shadow-md); transform: scale(1); }
    50% { box-shadow: 0 4px 20px rgba(234, 88, 12, 0.35); transform: scale(1.05); }
}

/* Per-step idle animations (subtle, each step has its own) */
@keyframes step1Shutter {
    0%, 90%, 100% { transform: scale(1); }
    45%, 55% { transform: scale(1.06); }
}

@keyframes step2Search {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(3deg); }
}

@keyframes step3Ring {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.04) rotate(-4deg); }
    75% { transform: scale(1.04) rotate(4deg); }
}

@keyframes step4Palette {
    0%, 100% { box-shadow: var(--shadow-md); transform: scale(1); }
    50% { box-shadow: 0 4px 18px rgba(234, 88, 12, 0.35); transform: scale(1.06); }
}

@keyframes step5Calendar {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-3px); }
}

@keyframes step6Build {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.process-compact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Animated connecting line between steps */
.process-compact-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 8.333%;
    right: 8.333%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-bright), var(--color-primary), var(--color-primary-bright));
    z-index: 0;
    border-radius: 2px;
    transform-origin: left center;
}

.process-compact-grid.visible::before {
    animation: processLineDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.process-compact-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem 0.75rem;
    background: #fff;
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.process-compact-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-compact-step:hover .step-icon-visual {
    animation: processStepIconPulse 1.2s ease-in-out infinite;
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Staggered icon and number animation when grid is visible; per-step idle animations */
.process-compact-grid.visible .process-compact-step:nth-child(1) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, step1Shutter 2.5s ease-in-out 0.8s infinite; }
.process-compact-grid.visible .process-compact-step:nth-child(2) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards, step2Search 3s ease-in-out 0.9s infinite; }
.process-compact-grid.visible .process-compact-step:nth-child(3) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards, step3Ring 2.2s ease-in-out 0.9s infinite; }
.process-compact-grid.visible .process-compact-step:nth-child(4) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards, step4Palette 2.8s ease-in-out 1s infinite; }
.process-compact-grid.visible .process-compact-step:nth-child(5) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards, step5Calendar 2.6s ease-in-out 1s infinite; }
.process-compact-grid.visible .process-compact-step:nth-child(6) .step-icon-visual { animation: processStepIconIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards, step6Build 2.4s ease-in-out 1.1s infinite; }

.process-compact-grid .step-icon-visual {
    opacity: 0;
    transform: scale(0.6);
}

.process-compact-grid.visible .process-compact-step:nth-child(1) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; }
.process-compact-grid.visible .process-compact-step:nth-child(2) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards; }
.process-compact-grid.visible .process-compact-step:nth-child(3) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }
.process-compact-grid.visible .process-compact-step:nth-child(4) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards; }
.process-compact-grid.visible .process-compact-step:nth-child(5) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards; }
.process-compact-grid.visible .process-compact-step:nth-child(6) .step-num { animation: processStepNumPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards; }

.process-compact-grid .step-num {
    opacity: 0;
    transform: scale(0);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-purple);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: var(--shadow-md);
}

.process-compact-step h3,
.process-compact-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.process-compact-step p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   11. SPECS & FAQ SECTION
   ============================================================ */
.specs-faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-section);
    position: relative;
}

.specs-faq-section > .container,
.specs-faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.specs-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.specs-column,
.faq-column {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-light);
}

.column-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1.1rem;
}

.column-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.specs-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    color: #fff;
}

.specs-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.column-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Specs List */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.spec-item-row:hover {
    background: var(--color-bg-elevated);
}

.spec-item-row svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-item-row span {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* FAQ List / Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item-accordion {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item-accordion:hover {
    border-color: var(--color-border);
}

.faq-item-accordion.active {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: all var(--transition-fast);
    gap: 0.75rem;
}

.faq-question-btn:hover {
    color: var(--color-primary);
}

.faq-question-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item-accordion.active .faq-question-btn svg {
    transform: rotate(180deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-accordion.active .faq-answer-content {
    max-height: 500px;
}

.faq-answer-text {
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Specs Buttons */
.specs-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
}

/* ============================================================
   12. CONTACT FORM SECTION
   ============================================================ */
.contact-form-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
    position: relative;
}

.contact-form-section > .container,
.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary-subtle);
    border: 1px solid var(--color-border-light);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-chip:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-chip svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.rbq-chip {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    font-weight: 600;
}

.rbq-chip:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.form-fullwidth {
    width: 100%;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-row-submit {
    margin-top: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.form-field label .required {
    color: #ef4444;
    margin-left: 0.2rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    background: #fff;
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-text-muted);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field-file {
    position: relative;
}

.file-upload-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.file-upload-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.file-upload-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.file-names {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.form-field-terms {
    margin-top: 0.5rem;
}

.checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-field-submit {
    display: flex;
    justify-content: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Zoho iframe */
.form-card iframe {
    width: 100%;
    border: none;
    border-radius: var(--radius-sm);
}

/* Zoho form wrapper */
.zoho-form-wrapper {
    width: 100%;
    min-height: 400px;
    border: none;
}

/* Submitted success state */
.form-card.submitted {
    text-align: center;
    padding: 3rem 2rem;
}

.form-card.submitted::before {
    content: '\2713';
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin: 0 auto 1rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.75rem;
}

/* ============================================================
   FORM OVERRIDES - Customize the contact form section here.
   Uncomment and edit rules below. Zoho iframe content is on their
   domain and cannot be styled from this file (use Zoho form theme).
   ============================================================ */
#contact.contact-form-section {
    /* padding: var(--spacing-xl) 0; */
    /* background: #fff; */
}

#contact .form-card {
    /* background: #fff; */
    /* border-radius: var(--radius-lg); */
    /* padding: 2.5rem; */
    /* border: 1px solid var(--color-border-light); */
    /* box-shadow: var(--shadow-md); */
    /* max-width: 900px; */
}

#contact #zoho-form-iframe-wrap {
    /* min-height: 400px; */
    /* background: var(--color-bg-section); */
    /* border-radius: var(--radius-sm); */
    /* padding: 0.5rem; */
}

#contact .form-card iframe {
    /* Override iframe dimensions if needed */
}

#contact .contact-chip {
    /* background: var(--color-primary-subtle); */
    /* border: 1px solid var(--color-border-light); */
}

/* ============================================================
   13. ZONE DE SERVICE SECTION
   ============================================================ */
.zone-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-section);
    position: relative;
}

.zone-section > .container,
.zone-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.zone-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.zone-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.zone-text {
    margin-bottom: 2rem;
}

.zone-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.zone-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.zone-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.zone-city {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.zone-city:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-subtle);
}

.zone-city svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

.zone-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.zone-more:hover {
    color: var(--color-primary-dark);
}

.zone-description {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    max-width: 650px;
    line-height: 1.7;
    text-align: center;
}

/* Zone map with orange overlay */
.zone-map-wrapper {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.zone-map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.zone-map-leaflet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: var(--radius-lg);
}

.zone-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(234, 88, 12, 0.35) 0%,
        rgba(234, 88, 12, 0.18) 40%,
        rgba(234, 88, 12, 0.12) 70%,
        rgba(154, 52, 18, 0.22) 100%
    );
    border-radius: var(--radius-lg);
}

/* ============================================================
   14. LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    pointer-events: all;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img,
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption,
#lightbox-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* ============================================================
   15. LEGAL MODAL
   ============================================================ */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(4px);
    padding: 2rem;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-section);
    border: none;
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.legal-modal-close:hover {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
}

.legal-content {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul li {
    list-style-type: disc;
    margin-bottom: 0.35rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer-modern {
    background: var(--color-dark-bg);
    color: var(--color-text-on-dark);
    padding-top: 4rem;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-deep-purple), var(--color-primary));
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

/* Footer Brand */
.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-logo-text .footer-logo-s {
    position: relative;
    color: var(--color-primary-light);
}

.footer-logo-text .footer-logo-s::after {
    content: '';
    position: absolute;
    top: -0.22em;
    left: 0;
    width: 0.95em;
    height: 0;
    border-bottom: 0.08em solid var(--color-primary-light);
    border-radius: 0 0 50% 50%;
}

.footer-logo-text .footer-logo-o {
    color: var(--color-primary-light);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.08);
}

.footer-social a[aria-label="Facebook"]:hover {
    background: var(--social-facebook);
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, var(--social-instagram-start), var(--social-instagram-mid), var(--social-instagram-end));
}

.footer-social a svg,
.footer-social a i {
    width: 18px;
    height: 18px;
    fill: currentColor;
    font-size: 1.0625rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer Navigation */
.footer-nav-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--color-primary-light);
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--color-primary-light);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Footer Certification */
.footer-cert-col {
    display: flex;
    flex-direction: column;
}

.footer-cert-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-rbq-intro {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-rbq-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.rbq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    color: #fff;
    flex-shrink: 0;
}

.rbq-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rbq-info {
    display: flex;
    flex-direction: column;
}

.rbq-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rbq-number {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-rbq-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary-light);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-bottom: 1rem;
}

.footer-rbq-verify:hover {
    color: var(--color-primary-bright);
}

.rbq-verify-icon {
    width: 14px;
    height: 14px;
}

.rbq-verify-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust span svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a,
.footer-legal button {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    transition: color var(--transition-fast);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.footer-legal a:hover,
.footer-legal button:hover {
    color: var(--color-primary-light);
}

/* ============================================================
   17. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================================
   18. BUTTONS & SHARED COMPONENTS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    min-height: 48px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   19. ANIMATIONS
   ============================================================ */

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Float animation */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-animation {
    animation: floatAnimation 3s ease-in-out infinite;
}

/* Pulse glow */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(234, 88, 12, 0.15); }
}

.pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Spin animation (for loading) */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ============================================================
   20. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-headline {
        animation: none;
        opacity: 1;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .stagger-children > * {
        opacity: 1;
        transform: none;
    }

    .float-animation {
        animation: none;
    }

    .pulse-glow {
        animation: none;
    }

    .process-compact-grid .step-icon-visual,
    .process-compact-grid .step-num {
        opacity: 1;
        transform: scale(1);
        animation: none;
    }

    .process-compact-step:hover .step-icon-visual {
        animation: none;
    }

    .specs-carousel-item {
        animation: none;
    }
}

/* ============================================================
   21. RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Navbar */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        z-index: 999;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-toggle {
        display: flex;
    }

    .navbar-right .social-links {
        display: none;
    }

    .mobile-social-links {
        display: flex;
        gap: 0.75rem;
        padding: 1rem;
        justify-content: center;
        margin-top: auto;
    }

    .mobile-social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--color-primary-subtle);
        color: var(--color-primary);
        transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    }

    .mobile-social-links a:hover {
        color: #fff;
        transform: scale(1.08);
    }

    .mobile-social-links a[aria-label="Facebook"]:hover {
        background: var(--social-facebook);
    }

    .mobile-social-links a[aria-label="Instagram"]:hover {
        background: linear-gradient(135deg, var(--social-instagram-start), var(--social-instagram-mid), var(--social-instagram-end));
    }

    .mobile-social-links a svg,
    .mobile-social-links a i {
        width: 20px;
        height: 20px;
        fill: currentColor;
        font-size: 1.25rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero-content {
        padding: 1.5rem 1.25rem 3rem;
    }

    .hero-scroll-indicator {
        bottom: 1.5rem;
    }

    /* Features */
    .qualities-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery */
    .gallery-carousel-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }

    /* Process */
    .process-compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .process-compact-grid::before {
        display: none;
    }

    /* Specs & FAQ */
    .specs-faq-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-card {
        padding: 2rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Parallax */
    .parallax-image-section {
        height: 300px;
    }
}

/* ============================================================
   22. RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Typography */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1.5rem 1.25rem 5rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile-only {
        display: block;
    }

    /* Features */
    .qualities-compact {
        grid-template-columns: 1fr;
    }

    .quality-compact {
        padding: 1.25rem;
    }

    /* Gallery */
    .gallery-carousel-slide {
        flex: 0 0 85%;
    }

    /* Process */
    .process-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-compact-step {
        padding: 1rem;
    }

    /* Form */
    .form-row-4,
    .form-row-3,
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }

    .contact-quick-row {
        gap: 0.5rem;
    }

    .contact-chip {
        font-size: 0.82rem;
        padding: 0.4rem 0.85rem;
    }

    /* Zone */
    .zone-cities {
        gap: 0.4rem;
    }

    .zone-city {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .zone-text h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand-col {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-contact-items {
        align-items: center;
    }

    .footer-cert-col {
        align-items: center;
    }

    .footer-rbq-badge {
        justify-content: center;
    }

    .footer-trust {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Lightbox */
    .lightbox-content img,
    #lightbox-img {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    /* Parallax */
    .parallax-image-section {
        height: 250px;
    }

    /* Sections padding */
    .features-section,
    .gallery-section,
    .process-section,
    .specs-faq-section,
    .contact-form-section,
    .zone-section {
        padding: 3.5rem 0;
    }
}

/* ============================================================
   23. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar > .container,
    .navbar > div {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    /* Hamburger on the right: hide RBQ in navbar on small screens so only logo + hamburger show */
    .navbar-right .rbq-badge {
        display: none;
    }

    /* Hero */
    .hero-subheadline {
        font-size: 0.92rem;
    }

    .hero-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .hero-rbq-badge {
        font-size: 0.78rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.92rem;
    }

    /* Features */
    .quality-compact {
        flex-direction: column;
        text-align: center;
    }

    .q-icon {
        margin: 0 auto;
    }

    .q-content {
        text-align: center;
    }

    /* Gallery */
    .gallery-carousel-slide {
        flex: 0 0 100%;
    }

    button.gallery-carousel-nav {
        width: 34px;
        height: 34px;
    }

    /* Process */
    .process-compact-grid {
        grid-template-columns: 1fr;
    }

    .process-compact-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    /* Specs/FAQ */
    .specs-column,
    .faq-column {
        padding: 1.25rem;
    }

    .faq-question-btn {
        padding: 0.85rem;
        font-size: 0.85rem;
    }

    .faq-answer-text {
        padding: 0 0.85rem 0.85rem;
        font-size: 0.82rem;
    }

    .spec-item-row {
        padding: 0.5rem;
    }

    .spec-item-row span {
        font-size: 0.85rem;
    }

    /* Contact form */
    .form-card {
        padding: 1.25rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .file-upload-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Zone */
    .zone-text h2 {
        font-size: 1.4rem;
    }

    .zone-description {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-main {
        padding: 0 1rem 2rem;
    }

    .footer-bottom-bar {
        padding: 1rem;
    }

    .footer-rbq-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .rbq-info {
        align-items: center;
    }

    /* Legal Modal */
    .legal-modal {
        padding: 1rem;
    }

    .legal-modal-content {
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }

    /* Lightbox */
    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .lightbox-nav {
        padding: 0 0.5rem;
    }

    /* Parallax */
    .parallax-image-section {
        height: 180px;
    }

    /* Sections */
    .features-section,
    .gallery-section,
    .process-section,
    .specs-faq-section,
    .contact-form-section,
    .zone-section {
        padding: 2.5rem 0;
    }
}

/* ============================================================
   24. PRINT STYLES
   ============================================================ */
@media print {
    .navbar,
    .back-to-top,
    .lightbox,
    .legal-modal,
    .parallax-image-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero {
        background: #f5f3ff;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-overlay,
    .hero-bg {
        display: none;
    }

    .hero-content {
        color: #000;
    }

    .footer-modern {
        background: #f5f5f5;
        color: #333;
    }

    a {
        color: var(--color-primary);
    }
}

/* ============================================================
   25. CUSTOM SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary-bright);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

::selection {
    background: rgba(234, 88, 12, 0.2);
    color: var(--color-text);
}

/* ============================================================
   26. SMOOTH IMAGE LOADING
   ============================================================ */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* ============================================================
   27. MOBILE MENU BODY LOCK
   ============================================================ */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   28. FOCUS STYLES FOR KEYBOARD NAVIGATION
   ============================================================ */
.nav-menu a:focus-visible,
.btn-primary-hero:focus-visible,
.btn-secondary-hero:focus-visible,
.btn-submit:focus-visible,
.btn-outline:focus-visible,
.gallery-carousel-slide:focus-visible,
.faq-question-btn:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible,
.legal-modal-close:focus-visible,
.back-to-top:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

/* ============================================================
   29. GALLERY RESPONSIVE FINE-TUNING
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-carousel-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

/* ============================================================
   30. SAFARI FIXES
   ============================================================ */
@supports (-webkit-touch-callout: none) {
    .navbar {
        -webkit-backdrop-filter: blur(20px);
    }
}
