/* 
 * Nofal Iron / Steel Landing Page - Custom Stylesheet
 * Brand Name: נופל הברזל / נופל סטיל
 * Palette: Dark Slate Blue, Deep Blue, Light Grey, Muted Grey
 * RTL Localized (dir="rtl")
 */

/* 1. IMPORTS & CSS VARIABLE TOKENS */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    /* Brand Colors */
    --color-dark-bg: #060d18;       /* Primary Deep Charcoal/Blue Dark */
    --color-primary-blue: #214782;  /* Deep Steel Blue */
    --color-primary-light: #2c5c9e; /* Slightly lighter blue for hovers */
    --color-grey-dark: #828282;     /* Muted Grey */
    --color-grey-light: #f2f2f2;    /* Light Grey background/card */
    --color-white: #ffffff;
    --color-accent-green: #25D366;  /* WhatsApp Green */
    --color-accent-green-hover: #128C7E;
    
    /* Layout */
    --container-max-width: 1200px;
    
    /* Typography */
    --font-heading: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --font-body: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    
    /* Transitions & Physics Curves */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --transition-smooth: all 0.3s var(--ease-out);
    --transition-fast: all 160ms var(--ease-out);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(6, 13, 24, 0.05);
    --shadow-medium: 0 12px 30px rgba(6, 13, 24, 0.08);
    --shadow-heavy: 0 20px 40px rgba(6, 13, 24, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: #fafbfc;
    color: var(--color-dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

p {
    text-wrap: balance;
}

/* RTL Phone Number and Layout Protections */
.ltr-dir {
    direction: ltr;
    display: inline-block;
}

/* Focus States for Keyboard Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-primary-blue);
    outline-offset: 2px;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

.max-width-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* 3. TYPOGRAPHY & HEADER WIDGET */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
    text-decoration: none;
    text-align: center;
    border: none;
    gap: 8px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(33, 71, 130, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 6px 18px rgba(33, 71, 130, 0.3);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary-blue);
}

.btn-secondary:hover {
    background-color: var(--color-grey-light);
}

.btn-dark {
    background-color: var(--color-dark-bg);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: #0f1c30;
}

.btn-whatsapp {
    background-color: var(--color-accent-green);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--color-accent-green-hover);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* 4. MAIN HEADER NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: background-color 200ms var(--ease-out), backdrop-filter 200ms var(--ease-out), border-color 200ms var(--ease-out);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 13, 24, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.main-header.scrolled .header-whatsapp-link,
.main-header.scrolled .header-phone-link {
    color: var(--color-dark-bg);
}

.main-header.scrolled .hamburger-line {
    background-color: var(--color-dark-bg);
}

.main-header.scrolled .header-whatsapp-link:hover {
    color: var(--color-accent-green-hover);
}

.main-header.scrolled .header-phone-link:hover {
    color: var(--color-primary-blue);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--color-grey-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 150ms var(--ease-out);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary-blue);
    transform: scaleX(0);
    transition: transform 200ms var(--ease-out);
    transform-origin: center;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Header Contact Cluster & Action Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-whatsapp-link,
.header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-grey-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 150ms var(--ease-out);
}

.header-whatsapp-link:hover {
    color: var(--color-accent-green);
}

.header-phone-link:hover {
    color: var(--color-white);
}

.header-whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor !important;
    stroke: none !important;
}

.header-phone-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

/* Hamburger toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

/* 5. HERO SECTION WITH VIDEO BACKGROUND */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-color: var(--color-dark-bg);
    overflow: hidden;
}

/* Video Wrapper */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.video-bg-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    opacity: 0.55; /* Let video show more since overlay handles darkening */
}

/* Gradient overlay: transparent top → dark bottom */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(6, 13, 24, 0) 0%, 
        rgba(6, 13, 24, 0.25) 30%, 
        rgba(6, 13, 24, 0.7) 65%, 
        #060d18 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem; /* Smaller */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-grey-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-title span {
    color: var(--color-white);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(242, 242, 242, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Social Proof Badge */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 10px 20px;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto;
}

.social-proof-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.social-proof-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.social-proof-stars {
    color: #f5a623;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* 6. PROMOTION BANNER */
.promo-banner {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.promo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 56px;
    line-height: 1.25;
    text-align: center;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 0;
    margin-bottom: 40px;
}

.promo-col {
    padding: 0 32px;
    text-align: right;
}

.promo-col:not(:last-child) {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-stat {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.promo-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.promo-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.promo-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 24px;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

/* 7. FEATURES GRID SECTION (PAIN & SOLUTION) */
.features-grid-section {
    padding: 100px 0;
    background-color: #fafbfc;
    text-align: center;
}

.features-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.features-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 24px;
    line-height: 1.25;
}

.features-intro {
    max-width: 820px;
    margin: 0 auto 64px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-grey-dark);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.feature-card {
    background-color: var(--color-white);
    border: 1px solid rgba(6, 13, 24, 0.08);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: right;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-icon-wrapper {
    margin-bottom: 24px;
}

.card-icon-mask {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, #3b82f6 100%);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.3s var(--ease-out);
}

.all-icon {
    -webkit-mask-image: url('svg/all.svg');
    mask-image: url('svg/all.svg');
}

.helmet-icon {
    -webkit-mask-image: url('svg/032-helmet.svg');
    mask-image: url('svg/032-helmet.svg');
}

.wagon-icon {
    -webkit-mask-image: url('svg/002-wagon.svg');
    mask-image: url('svg/002-wagon.svg');
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--color-grey-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-dark-bg);
}

.check-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Highlighted Card Overrides */
.feature-card.highlighted {
    background-color: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(33, 71, 130, 0.15);
}

.feature-card.highlighted .card-icon-mask {
    background: var(--color-white);
}

.feature-card.highlighted .card-title {
    color: var(--color-white);
}

.feature-card.highlighted .card-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card.highlighted .card-bullets li {
    color: var(--color-white);
}

.feature-card.highlighted .check-icon {
    stroke: var(--color-white);
}

@media (max-width: 1024px) {
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* 8. TARGET AUDIENCE SECTION */
.audience-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.audience-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.audience-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.audience-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 48px;
    line-height: 1.25;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: right;
}

.audience-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: rgba(33, 71, 130, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-icon-mask {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, #3b82f6 100%);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.3s var(--ease-out);
}

.mask-welding {
    -webkit-mask-image: url('svg/031-welding mask.svg');
    mask-image: url('svg/031-welding mask.svg');
}

.mask-beam {
    -webkit-mask-image: url('svg/041-h beam.svg');
    mask-image: url('svg/041-h beam.svg');
}

.mask-bolt {
    -webkit-mask-image: url('svg/049-bolt.svg');
    mask-image: url('svg/049-bolt.svg');
}

.audience-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 8px;
}

.audience-text-sub {
    font-size: 0.9rem;
    color: var(--color-grey-dark);
    font-weight: 500;
}

.audience-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4f5e71;
}

/* Rounded Visuals Columns Layout */
.audience-visuals-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.visuals-grid {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 500px;
}

.visual-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s var(--ease-out);
}

.visual-wrapper:hover {
    transform: scale(1.03);
}

.large-visual {
    flex: 1.2;
    aspect-ratio: 1 / 1;
}

.tall-visual {
    flex: 0.8;
    aspect-ratio: 1 / 2;
    margin-top: 40px; /* Offset it slightly down for high-end feel */
}

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

@media (max-width: 1024px) {
    .audience-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .audience-visuals-col {
        order: 1; /* Images first on mobile */
    }
    
    .audience-content-col {
        order: 2; /* Text second on mobile */
        text-align: center;
    }
    
    .audience-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .visuals-grid {
        margin: 0 auto;
    }
}

/* 9. BOTTOM CTA BANNER SECTION */
.bottom-cta-section {
    padding: 120px 0;
    background-image: linear-gradient(to right, rgba(6, 13, 24, 0.3) 0%, rgba(6, 13, 24, 0.85) 50%, rgba(6, 13, 24, 0.98) 75%), url('nofal_cta.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
    color: var(--color-white);
}

/* For RTL: gradient from left (image) to right (solid text block) */
[dir="rtl"] .bottom-cta-section {
    background-image: linear-gradient(90deg, rgba(6, 13, 24, 0.3) 0%, rgba(6, 13, 24, 0.9) 50%, rgba(6, 13, 24, 0.98) 75%), url('nofal_cta.webp');
}

.bottom-cta-container {
    display: flex;
    justify-content: flex-start; /* Aligns to right in RTL flex container */
}

.bottom-cta-content {
    max-width: 600px;
    text-align: right;
}

.bottom-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-white);
}

.bottom-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.bottom-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.btn-orange-cta {
    background-color: #e05a2b; /* Premium warm orange outline highlight */
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    box-shadow: 0 4px 14px rgba(224, 90, 43, 0.3);
}

.btn-orange-cta:hover {
    background-color: #c94b20;
    transform: translateY(-2px);
}

.btn-orange-cta:active {
    transform: translateY(0);
}

.cta-whatsapp-icon,
.cta-phone-icon {
    transition: transform 0.2s var(--ease-out);
}

.btn-orange-cta:hover .cta-whatsapp-icon {
    transform: scale(1.15);
}

/* Secondary Link */
.btn-text-cta {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s var(--ease-out);
}

.btn-text-cta:hover {
    border-color: var(--color-white);
}

.btn-text-cta:hover .cta-phone-icon {
    transform: rotate(-15deg) scale(1.15);
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 80px 0;
        background-image: linear-gradient(180deg, rgba(6, 13, 24, 0.75) 0%, rgba(6, 13, 24, 0.95) 100%), url('nofal_cta.webp') !important;
        background-position: center center;
    }
    
    .bottom-cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .bottom-cta-buttons {
        align-items: center;
        width: 100%;
    }
    
    .btn-orange-cta {
        width: 100%;
        justify-content: center;
    }
}

/* 10. ABOUT SECTION (THE LOCKSMITH EDGE) */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
    color: var(--color-dark-bg);
}

.about-quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    border-right: 4px solid var(--color-primary-blue);
    padding-right: 20px;
    margin-bottom: 32px;
    line-height: 1.4;
}

.about-paragraphs p {
    color: #4f5e71;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background-color: var(--color-grey-light);
    padding: 20px;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-grey-dark);
}

/* About Visual block */
.about-visual {
    position: relative;
    border-radius: 20px;
    background-color: var(--color-dark-bg);
    padding: 40px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 71, 130, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.visual-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.visual-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.visual-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 500;
}

.visual-bullet-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary-blue);
}

/* 11. CONTACT FORM SECTION */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.contact-text-col {
    text-align: right;
}

.contact-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 24px;
    line-height: 1.25;
}

.contact-desc {
    font-size: 1.05rem;
    color: #4f5e71;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--color-dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s var(--ease-out);
}

.contact-info-link:hover {
    color: var(--color-primary-blue);
}

.contact-link-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary-blue); /* Styled like the green icon in Ndurance, but matching our brand blue */
}

/* Dark Form Card */
.contact-form-col {
    width: 100%;
}

.form-card-container {
    position: relative;
}

.form-card-dark {
    background-color: #121212; /* Dark near black bg matching image */
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group-dark {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-dark.full-width {
    grid-column: span 2;
}

.form-group-dark label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #828282; /* Muted grey label */
    letter-spacing: 0.02em;
}

.form-input-dark {
    background-color: #1e1e1e; /* Dark input bg */
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.form-input-dark::placeholder {
    color: #4f5e71;
}

.form-input-dark:focus {
    outline: none;
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 71, 130, 0.2);
}

/* Custom Dropdown select reset */
.select-dark {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: left 16px center; /* RTL arrow position */
    padding-left: 48px;
}

.textarea-dark {
    resize: none;
    min-height: 120px;
}

.btn-submit-dark {
    background-color: #828282; /* Grey submit button matching Ndurance layout image */
    color: #121212;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    text-align: center;
    width: 100%;
}

.btn-submit-dark:hover {
    background-color: var(--color-white);
    color: #121212;
}

.btn-submit-dark:active {
    transform: scale(0.98);
}

/* Overlay animations */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms var(--ease-out);
    color: var(--color-white);
}

.form-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon {
    width: 40px;
    height: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--color-primary-blue);
    animation: spin 800ms linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-text-col {
        text-align: center;
    }
    
    .contact-info-links {
        align-items: center;
    }
    
    .form-card-dark {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group-dark.full-width {
        grid-column: span 1;
    }
}

/* 10. TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0;
    background-color: #fafbfc;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.testimonials-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark-bg);
    margin-bottom: 24px;
    line-height: 1.25;
}

.testimonials-desc {
    font-size: 1.05rem;
    color: #4f5e71;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(6, 13, 24, 0.04);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: right;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Quote Icon style */
.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(224, 90, 43, 0.15); /* Warm orange double quote icon matching design style */
    position: absolute;
    top: 10px;
    left: 20px;
    user-select: none;
}

.testi-text {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--color-dark-bg);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testi-scores {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(6, 13, 24, 0.05);
    padding-top: 16px;
}

.testi-scores span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-grey-dark);
    background-color: var(--color-grey-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.testi-meta {
    display: flex;
    flex-direction: column;
}

.testi-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-dark-bg);
    margin: 0;
}

.testi-location {
    font-size: 0.8rem;
    color: var(--color-grey-dark);
    margin-top: 2px;
}

.testi-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.testi-rating .stars {
    color: #f2c94c;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testi-rating .rating-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-grey-dark);
}

.testi-work-done {
    font-size: 0.85rem;
    color: var(--color-grey-dark);
    display: block;
    margin-top: 4px;
}

/* Testimonials Social Proof Overrides */
.testimonials-social-proof {
    margin: 0 0 0 auto; /* Right alignment in RTL */
    background-color: var(--color-white);
    border: 1px solid rgba(6, 13, 24, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 12px 24px;
}

.testimonials-social-proof .social-proof-text {
    color: var(--color-dark-bg);
}

/* Vertical Scrolling Marquee Column */
.testimonials-marquee-col {
    position: relative;
    height: 650px;
    overflow: hidden;
}

/* Top & Bottom Fade Overlays */
.testimonials-marquee-col::before,
.testimonials-marquee-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 5;
    pointer-events: none;
}

.testimonials-marquee-col::before {
    top: 0;
    background: linear-gradient(180deg, #fafbfc 0%, rgba(250, 251, 252, 0) 100%);
}

.testimonials-marquee-col::after {
    bottom: 0;
    background: linear-gradient(0deg, #fafbfc 0%, rgba(250, 251, 252, 0) 100%);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: marquee-vertical 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 12px));
    }
}

@media (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .testimonials-content-col {
        order: 1;
    }
    
    .testimonials-marquee-col {
        order: 2;
        height: auto;
        padding: 10px 0;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%); /* Full bleed effect on mobile */
        margin-right: calc(-50vw + 50%);
        position: relative;
    }
    
    .testimonials-marquee-col::before,
    .testimonials-marquee-col::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }
    
    .testimonials-marquee-col::before {
        left: 0;
        right: auto;
        background: linear-gradient(90deg, #fafbfc 0%, rgba(250, 251, 252, 0) 100%);
    }
    
    .testimonials-marquee-col::after {
        right: 0;
        left: auto;
        background: linear-gradient(270deg, #fafbfc 0%, rgba(250, 251, 252, 0) 100%);
    }
    
    .marquee-track {
        flex-direction: row;
        gap: 24px;
        width: max-content;
        animation: marquee-horizontal 120s linear infinite; /* Very slow crawl */
    }
    
    .marquee-list {
        flex-direction: row;
        gap: 24px;
    }
    
    .testimonials-marquee-col .testimonial-card {
        flex-shrink: 0;
        width: 320px; /* Fixed width on mobile so they don't squish! */
        text-align: right;
    }
}

@keyframes marquee-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* 11. FOOTER SECTION */
.main-footer {
    background-color: #03070c;
    color: var(--color-grey-dark);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links-col h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-grey-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 150ms var(--ease-out);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-asterisk {
    font-size: 0.8rem;
    color: rgba(130, 130, 130, 0.6);
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-copy {
    color: rgba(130, 130, 130, 0.6);
}

/* 12. MANDATORY WIDGETS */

/* Circular Floating WhatsApp Button (Desktop Only) */
.desktop-whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-accent-green-hover) 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    z-index: 999;
    transition: transform 200ms var(--ease-out);
    cursor: pointer;
}

.desktop-whatsapp-float::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: var(--color-accent-green);
    opacity: 0.3;
    z-index: -1;
    animation: whatsappRipple 2s infinite var(--ease-out);
}

.desktop-whatsapp-float:hover {
    transform: scale(1.08);
}

.desktop-whatsapp-float:active {
    transform: scale(0.96);
}

.float-icon {
    width: 28px;
    height: 28px;
    fill: currentColor !important;
    stroke: none !important;
}

@keyframes whatsappRipple {
    0% { transform: scale(1); opacity: 0.3; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
    .desktop-whatsapp-float {
        display: none !important; /* Strictly hidden on mobile */
    }
}

/* Mobile Floating Capsule Actions Dock (Mobile Only) */
.mobile-action-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 100px); /* Off-screen by default */
    opacity: 0;
    pointer-events: none;
    width: calc(100% - 32px);
    max-width: 320px;
    height: 64px;
    border-radius: 32px;
    background-color: rgba(6, 13, 24, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden on desktop */
    z-index: 9999;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.mobile-action-bar.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-action-bar-container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    padding: 0 16px;
}

.action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-grey-light);
    text-decoration: none;
    transition: transform 160ms var(--ease-out), color 160ms var(--ease-out);
}

.action-item:active {
    transform: scale(0.9);
}

.action-item.highlight {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(33, 71, 130, 0.3);
}

.action-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: block; /* Visible on mobile */
    }
    
    body {
        padding-bottom: 100px !important; /* Prevent footer content clipping */
    }
}

/* Failsafe SVG Fills: Guarantees solid-filled icons do not render as messy overlapping outlines */
.header-whatsapp-icon,
.header-whatsapp-icon path,
.desktop-whatsapp-float svg,
.desktop-whatsapp-float svg path,
.mobile-action-bar svg[fill="currentColor"],
.mobile-action-bar svg[fill="currentColor"] path,
.social-links svg,
.social-links svg path {
    fill: currentColor !important;
    stroke: none !important;
}

/* 13. MOBILE NAV MENU BASE (Hidden on Desktop) */
.mobile-nav-menu {
    display: none; /* Hidden on all viewports by default */
}

/* 14. RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .features-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Hide standard navigation */
    }
    
    .header-actions {
        display: none; /* Hide header quick actions */
    }
    
    .mobile-nav-toggle {
        display: flex; /* Show hamburger toggle */
    }
    
    .products-grid,
    .products-grid-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        min-height: 300px;
        padding: 24px;
    }
    
    /* Mobile Overlay Menu — override base display:none */
    .mobile-nav-menu {
        display: flex; /* Enable on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark-bg);
        z-index: 998;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms var(--ease-out);
    }
    
    .mobile-nav-menu.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
        gap: 24px;
    }
    
    .mobile-nav-link {
        color: var(--color-white);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.8rem;
        text-decoration: none;
        transition: color 150ms var(--ease-out);
    }
    
    .mobile-nav-link:hover {
        color: var(--color-primary-blue);
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 120px;
    }

    .video-bg-container iframe {
        min-height: 125vh; /* Scale up height to cover portrait screen */
        min-width: 222vh;  /* Maintain 16:9 scale relative to height */
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.02em;
    }

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

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Promo Banner adjustments */
    .promo-banner {
        padding: 60px 0;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .promo-col {
        padding: 0 16px;
        text-align: center;
    }

    .promo-col:not(:last-child) {
        border-inline-end: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
    }

    .promo-stat {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .promo-col-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
}

/* 15. INTERSECTION OBSERVER ANIMATIONS (EMIL DE-ENG) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1), transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 16. ACCESSIBILITY — Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .desktop-whatsapp-float::before {
        animation: none;
    }

    .spinner {
        animation: spin 2s linear infinite; /* Keep spinner functional but slower */
    }
}
