/* ========================================
   PRIME HAIR - Premium Landing Page Styles
   Theme: Light Mode - Elegant & Premium
   ======================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors - Light Mode */
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fc;
    --accent-bg: #f0f4f8;
    --card-bg: #ffffff;

    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;

    /* Accent Colors */
    --electric-orange: #ff6b35;
    --orange-glow: #ff8c5a;
    --orange-dark: #e55a28;
    --orange-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 50%, #ff6b35 100%);
    --orange-soft: rgba(255, 107, 53, 0.1);

    /* Brand Colors */
    --brand-navy: #1a365d;
    --brand-blue: #2b6cb0;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --black: #000000;

    /* Glass Effects - Light Mode */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-bg-dark: rgba(26, 54, 93, 0.9);
    --glass-border-dark: rgba(255, 255, 255, 0.1);

    /* Shadows - Light Mode */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.light-mode {
    background: var(--primary-bg);
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Grain Overlay - Subtle for Light Mode */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ========================================
   NAVIGATION - Light Mode
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-prime {
    color: var(--white);
}

.navbar.scrolled .logo-prime {
    color: var(--brand-navy);
}

.logo-hair {
    color: var(--electric-orange);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-orange);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--electric-orange);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    position: relative;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

.mobile-menu-btn.active span {
    background: var(--brand-navy) !important;
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--white);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--electric-orange);
}

.mobile-cta-btn {
    margin-top: 20px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ========================================
   HERO SECTION - Light Mode with Overlay
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(26, 54, 93, 0.9) 0%,
            rgba(26, 54, 93, 0.75) 50%,
            rgba(26, 54, 93, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--electric-orange);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.title-line {
    display: block;
}

.title-line.small {
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.gradient-text {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.hero-cta-primary .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.hero-cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--electric-orange);
}

.play-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-orange);
}

.stat-label {
    width: 100%;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--electric-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .title-line.small {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   TRUST TICKER - Light Mode
   ======================================== */
.trust-ticker {
    background: var(--secondary-bg);
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.ticker-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.partner-logo {
    height: 25px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.certification-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.certification-badge:hover {
    border-color: var(--electric-orange);
    color: var(--electric-orange);
}

/* ========================================
   BENTO GRID SECTION - Light Mode
   ======================================== */
.bento-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--orange-soft);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
}

.glass-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.glass-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.glass-card-dark {
    background: var(--brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--white);
}

.bento-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.bento-large {
    grid-column: 1;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
}

.bento-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-navy);
    color: var(--white);
}

.bento-cta {
    background: var(--orange-gradient);
    color: var(--white);
}

.step-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
}

.glass-card:hover .step-number {
    color: rgba(255, 107, 53, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all var(--transition-normal);
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--electric-orange);
}

.pulse-on-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: var(--secondary-bg);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
}

/* Stats Card */
.stats-content {
    text-align: center;
}

.big-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-value {
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 500;
    color: var(--electric-orange);
}

.stats-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Card */
.cta-content {
    text-align: center;
}

.cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--electric-orange);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.cta-btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-secondary:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: 1;
    }

    .bento-card {
        padding: 30px;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* ========================================
   TRANSFORMATION SECTION - Light Mode
   ======================================== */
.transformation-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: grab;
}

.comparison-slider:active {
    cursor: grabbing;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-before {
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
}

.label-after {
    right: 20px;
    background: var(--electric-orange);
    color: var(--white);
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    z-index: 10;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.handle-circle:hover {
    transform: scale(1.1);
}

.handle-circle svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-primary);
}

.handle-circle svg:first-child {
    transform: rotate(180deg);
    margin-bottom: -4px;
}

.handle-circle svg:last-child {
    margin-top: -4px;
}

/* Transformation Features */
.transformation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
}

.feature-card.glass-card-dark {
    background: var(--brand-navy);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--electric-orange);
}

.feature-text h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transformation-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .transformation-section {
        padding: 80px 0;
    }

    .comparison-slider {
        aspect-ratio: 3/4;
    }

    .feature-card {
        min-width: 100%;
    }
}

/* ========================================
   TESTIMONIALS SECTION - Light Mode
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--secondary-bg);
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-large {
    grid-row: span 2;
}

.testimonial-video {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.testimonial-large .testimonial-video {
    aspect-ratio: 4/3;
}

.testimonial-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.testimonial-card:hover .testimonial-thumb {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.testimonial-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--electric-orange);
    margin-left: 5px;
}

.testimonial-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-content {
    padding: 30px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-mini {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFB800;
}

.mini-stars span {
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .testimonials-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-large {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-masonry {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GALLERY SECTION - Light Mode
   ======================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    background: var(--electric-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FINAL CTA SECTION - Light Mode
   ======================================== */
.final-cta-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #2c5282 100%);
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.final-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.final-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform var(--transition-normal);
}

.final-cta-btn:hover svg {
    transform: translateX(5px);
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: circle-float 15s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: circle-float 12s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation: circle-float 10s ease-in-out infinite;
}

@keyframes circle-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 100px 0;
    }

    .final-cta-title {
        font-size: 2.5rem;
    }

    .final-cta-text {
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER - Light Mode
   ======================================== */
.footer {
    background: var(--secondary-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill var(--transition-fast);
}

.social-link:hover {
    background: var(--electric-orange);
    border-color: var(--electric-orange);
}

.social-link:hover svg {
    fill: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--electric-orange);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-contact p svg {
    width: 20px;
    height: 20px;
    stroke: var(--electric-orange);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--electric-orange);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ========================================
   FLOATING CTA - Light Mode
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.floating-cta-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .floating-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   BOOKING MODAL - Light Mode
   ======================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 50px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.modal-close svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-secondary);
}

.modal-close:hover {
    background: var(--electric-orange);
}

.modal-close:hover svg {
    stroke: var(--white);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    transition: all var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.modal-footer {
    margin-top: 30px;
    text-align: center;
}

.modal-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-footer svg {
    width: 18px;
    height: 18px;
    stroke: var(--electric-orange);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SUCCESS MODAL - Light Mode
   ======================================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    padding: 60px 50px;
    max-width: 450px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: success-pop 0.5s ease;
}

@keyframes success-pop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: #10B981;
}

.success-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.success-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.success-btn {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.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;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Selection */
::selection {
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--secondary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    padding: 40px;
    text-align: center;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--electric-orange);
}

.about-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-cta {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.service-cta:hover {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WORKING HOURS
   ======================================== */
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-secondary);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed span:last-child {
    color: var(--electric-orange);
    font-weight: 600;
}

/* Nav CTA with icon */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta svg {
    flex-shrink: 0;
}

/* Hero CTA links */
.hero-cta-primary,
.hero-cta-secondary {
    text-decoration: none;
}

/* Footer phone link */
.footer-contact p a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-contact p a:hover {
    color: var(--electric-orange);
}

/* Floating CTA link */
.floating-cta-btn {
    text-decoration: none;
}

/* ========================================
   VIDEO GALLERY SECTION
   ======================================== */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.video-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.video-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-gallery-item .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 1;
    transition: opacity var(--transition-normal);
}

.video-gallery-item:hover .video-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%);
}

.video-tag {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Play icon on hover */
.video-gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 10;
    transition: transform var(--transition-bounce);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Video Gallery */
@media (max-width: 1200px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .video-gallery-item {
        aspect-ratio: 9/16;
        max-height: 500px;
        width: 100%;
        max-width: 320px;
        /* Optimizes for mobile screens */
        margin: 0 auto;
    }
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    z-index: 10001;
    transition: transform var(--transition-bounce);
    transform: scale(0.9);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-wrapper {
    position: relative;
    /* Default to 9:16 for vertical videos since all gallery videos are vertical */
    padding-bottom: 177.78%;
    height: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg);
    color: var(--electric-orange);
}

@media (max-width: 768px) {
    .video-modal-close {
        top: -40px;
        right: 10px;
    }

    .video-wrapper {
        max-height: 70vh;
    }
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--white) 50%, var(--secondary-bg) 50%);
}

.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.founder-image-container {
    flex: 1;
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-image-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--electric-orange);
    border-radius: 20px;
    z-index: 1;
    transition: transform var(--transition-normal);
    opacity: 0.5;
}

.founder-image-container:hover .founder-image-bg {
    transform: translate(15px, 15px);
    opacity: 1;
}

.founder-content {
    flex: 1;
}

.founder-subtitle {
    color: var(--electric-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
}

.founder-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.founder-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.founder-highlight {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--electric-orange);
    margin: 30px 0;
    position: relative;
}

.founder-highlight p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.founder-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.feature-icon-circle {
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-orange);
    flex-shrink: 0;
}

.feature-icon-circle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 3;
}

@media (max-width: 1024px) {
    .founder-wrapper {
        gap: 50px;
    }

    .founder-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .founder-section {
        background: var(--secondary-bg);
    }

    .founder-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .founder-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .founder-title {
        font-size: 2.5rem;
    }

    .founder-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--secondary-bg);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.google-g-icon {
    width: 24px;
    height: 24px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rating-score {
    font-weight: 700;
    color: var(--text-primary);
    margin-left: 5px;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    position: relative;
    /* Fixed absolute positioning context */
    min-width: 350px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    scroll-snap-align: center;
    transition: transform var(--transition-normal);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

/* ... existing code ... */

/* Reviews Navigation & Selection Fix */
.reviews-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for arrows */
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background: var(--electric-orange);
    color: var(--white);
    border-color: var(--electric-orange);
}

.review-nav-btn.prev {
    left: 0;
}

.review-nav-btn.next {
    right: 0;
}

.reviews-slider.active {
    cursor: grabbing;
    user-select: none;
    /* Prevent text selection while dragging */
}

.reviews-slider .review-card {
    user-select: none;
    /* Ensure cards themselves are not selectable during drag interactions if needed */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    margin-bottom: 15px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.google-icon-small {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
        max-width: 300px;
    }
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.google-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--gray-50);
}

/* ========================================
   CONTACT FORM - Modern Premium Dark
   ======================================== */
.contact-form-wrapper {
    margin: 80px auto;
    background: linear-gradient(145deg, #1a365d 0%, #2a4365 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.25);
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Decorative background elements */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
    background: none;
    -webkit-text-fill-color: initial;
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    border-color: var(--electric-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 22px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-top: 15px;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(100%);
}

.btn-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submit-btn:hover .btn-icon {
    transform: translateX(6px) rotate(-10deg);
}

.form-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.4s ease;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px 25px;
        margin: 60px 15px;
        width: auto;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-input {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

/* ========================================
   NEW CONTACT GRID LAYOUT
   ======================================== */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-side {
    max-width: 600px;
}

@media (max-width: 1024px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        max-width: 100%;
        text-align: center;
    }

    .trust-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        flex: 1 1 250px;
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .trust-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px !important;
        justify-content: flex-start;
    }

    .trust-item {
        width: 100%;
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 10px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
        border: 1px solid #edf2f7;
    }

    .trust-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .contact-info-side {
        text-align: left;
    }

    .contact-description {
        margin-bottom: 25px !important;
    }
}

/* Hide reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}