/* CSS Variables for Consistent Theming - Cyan/Green Color Scheme */
:root {
    --primary-bg: #000000;
    --primary-accent: #00e5ff;
    --card-bg: #111111;
    --card-border: #262626;
    --text-color: #f5f5f5;
    --text-muted: #cccccc;
    --section-bg: #000000;
    --overlay-bg: rgba(0, 0, 0, 0.8);

    /* Refactor Variables - Cyan/Green Brand System */
    --brand-cyan: #00e5ff;
    --brand-green: #00ff88;
    --brand-red: #00ffcc;
    --neutral-900: #0b0b0b;
    --neutral-800: #1a1a1a;
    --muted: rgba(255,255,255,0.06);
    --glass: rgba(255,255,255,0.03);
    --card-radius: 14px;
    --container-max: 1200px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.45);
    --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ============================================ */
/* MODERN 2025 TYPOGRAPHY SYSTEM               */
/* Clean, professional, no glow effects        */
/* ============================================ */

/* Typography - Clean & Modern */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: none;
}

/* Body text - crisp and readable */
body, p, span, a, li, td, th, label {
    color: #ffffff;
    text-shadow: none;
}

/* Muted text for secondary content */
.text-muted, .section-subtitle, p {
    color: rgba(255, 255, 255, 0.7);
}

/* Links - subtle hover effect */
a {
    text-shadow: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    text-shadow: none;
    opacity: 0.85;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem); 
    margin-bottom: 1rem; 
    color: var(--primary-accent); 
}
h3 { 
    font-size: clamp(1.25rem, 3vw, 1.75rem); 
    margin-bottom: 0.5rem; 
    color: var(--text-color); 
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}

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

/* Accent Colors */
.accent-text {
    color: #00e5ff;
    background: linear-gradient(45deg, #00e5ff, #00ff88, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-accent), #00ff88);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #00ff88, var(--primary-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00e5ff;
    border: 2px solid #00e5ff;
    font-weight: 600;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #00e5ff, #00ff88);
    color: #000;
    font-weight: 600;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.logo-text small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00e5ff;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00e5ff, #00ff88, #ffffff);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Cart icon link and smaller badge */
.nav-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1; /* ensure vertical centering relative to siblings */
}
/* remove underline effect from cart icon link */
.nav-cart-link:after { content: none !important; }

.nav-cart-link .cart-icon {
    width: 18px;
    height: 18px;
    color: #fff;
    opacity: 0.75;
    display: block; /* avoid inline baseline offset */
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
    transform-origin: 50% 50%;
}
.nav-cart-link:hover .cart-icon {
    color: var(--primary-accent);
    opacity: 1;
    transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
    .nav-cart-link .cart-icon,
    .nav-cart-link:hover .cart-icon { transition: none; transform: none; }
}

.nav-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--primary-accent) 35%, transparent);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
@supports (backdrop-filter: blur(2px)) {
    .nav-cart-count { backdrop-filter: saturate(140%) blur(6px); }
}
.nav-cart-count[hidden] { display: none !important; }

.nav-cta {
    display: none;
    gap: 10px;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-menu .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.mobile-nav-menu li:nth-child(1) .nav-link { animation-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) .nav-link { animation-delay: 0.2s; }
.mobile-nav-menu li:nth-child(3) .nav-link { animation-delay: 0.3s; }
.mobile-nav-menu li:nth-child(4) .nav-link { animation-delay: 0.4s; }
.mobile-nav-menu li:nth-child(5) .nav-link { animation-delay: 0.5s; }

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    color: #00e5ff;
    transform: scale(1.05) translateY(0);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-nav-cta .btn {
    min-width: 250px;
    padding: 15px 30px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .nav-cta { display: flex; }
    .mobile-menu-toggle { display: none; }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 24px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Premium Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Chrome/iOS dynamic viewport height for reliable containment */
    display: flex;
    align-items: center;
    overflow: hidden; /* prevent hero video from bleeding into next section */
    background: #000;
    isolation: isolate; /* keep stacking context self-contained */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 229, 255, 0.08) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 229, 255, 0.05) 100%
    );
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 229, 255, 0.08) 30%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 229, 255, 0.05) 100%
        );
    }
    50% {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 229, 255, 0.12) 30%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 229, 255, 0.08) 100%
        );
    }
}

.hero-content-premium {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Push content down slightly so top elements are not cut off behind fixed header */
    padding-top: clamp(70px, 12vh, 150px);
}

.hero-text-premium {
    color: #fff;
    max-width: 900px;
    animation: heroSlideUp 1.2s ease-out;
    position: relative;
}

/* Enhanced Badge with Glow Effect */
.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: none;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.6),
        0 0 30px rgba(0, 229, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.9);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badgePulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 229, 255, 0.8),
            0 0 20px rgba(0, 229, 255, 0.6),
            0 0 30px rgba(0, 229, 255, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(0, 229, 255, 1),
            0 0 30px rgba(0, 229, 255, 0.8),
            0 0 45px rgba(0, 229, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.9);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-title-premium {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* Background glow layer - simplified */
.hero-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: inherit;
    font-weight: inherit;
    color: rgba(0, 229, 255, 0.15);
    z-index: 0;
    filter: blur(15px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-line-1 {
    display: block;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.4);
    animation: titleSlideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-line-2 {
    display: block;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.4);
    animation: titleSlideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-title-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
    opacity: 0.6;
}

@keyframes titleSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero-line-3 {
    display: block;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 1s ease-out 1s both;
}

.hero-services-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 18px 0;
    border-top: 2px solid rgba(0, 229, 255, 0.3);
    border-bottom: 2px solid rgba(0, 229, 255, 0.3);
    position: relative;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-services-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    animation: barShimmer 3s ease-in-out infinite;
}

.service-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 4px 8px;
    text-shadow: 
        0 0 8px rgba(0, 229, 255, 0.6),
        0 0 15px rgba(0, 229, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.service-item:hover {
    text-shadow: 
        0 0 12px rgba(0, 229, 255, 0.9),
        0 0 20px rgba(0, 229, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.service-item-1 {
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.service-item-2 {
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.service-item-3 {
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.service-item-4 {
    animation: fadeInUp 0.8s ease-out 1.6s both;
}

.service-divider {
    color: rgba(0, 229, 255, 0.6);
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes barShimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-subtitle-premium {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1.4s both;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subtitle-line-1,
.subtitle-line-2 {
    display: block;
    text-shadow: 
        0 0 10px rgba(0, 229, 255, 0.5),
        0 0 20px rgba(0, 229, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.location-highlight {
    color: #fff;
    font-weight: 700;
    text-shadow: 
        0 0 12px rgba(0, 229, 255, 0.8),
        0 0 24px rgba(0, 229, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
}

.location-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.8), transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

.subtitle-emphasis {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-top: 8px;
    text-shadow: 
        0 0 15px rgba(0, 229, 255, 0.8),
        0 0 30px rgba(0, 229, 255, 0.6),
        0 0 45px rgba(0, 229, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.9);
    animation: emphasisPulse 3s ease-in-out infinite;
    display: block;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes emphasisPulse {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(0, 229, 255, 0.8),
            0 0 30px rgba(0, 229, 255, 0.6),
            0 0 45px rgba(0, 229, 255, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(0, 229, 255, 1),
            0 0 40px rgba(0, 229, 255, 0.8),
            0 0 60px rgba(0, 229, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.9);
    }
}

.hero-cta-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
}

.hero-cta-1 {
    animation: fadeInUp 0.8s ease-out 1.7s both, ctaFloat 4s ease-in-out infinite 2.5s;
}

.hero-cta-2 {
    animation: fadeInUp 0.8s ease-out 1.8s both, ctaFloat 4s ease-in-out infinite 2.7s;
}

.hero-cta-3 {
    animation: fadeInUp 0.8s ease-out 1.9s both, ctaFloat 4s ease-in-out infinite 2.9s;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Animate financing hero pill like other hero CTAs */
.hero-finance-pill { animation: fadeInUp 1s ease-out 1.8s both; }
@media (prefers-reduced-motion: reduce) { .hero-finance-pill { animation: none !important; } }

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    border: 2px solid;
    min-width: 180px;
}

.btn-primary-premium {
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.4);
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 149, 0, 0.5);
    background: linear-gradient(45deg, #ffaa00, #ffcc66, #ffffff);
}

.btn-secondary-premium {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary-premium:hover .btn-shine {
    left: 100%;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1s ease-out 2s both;
    text-shadow: 
        0 0 8px rgba(0, 229, 255, 0.5),
        0 0 15px rgba(0, 229, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.location-icon {
    font-size: 18px;
    animation: iconBounce 2s ease-in-out infinite 2.2s;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

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

.scroll-indicator-premium {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-arrow-premium {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow-premium:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.6);
}

/* Premium Hero Animations */
@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Premium Hero */
@media (max-width: 768px) {
    .hero-services-bar {
        justify-content: center;
    }
    
    .service-item {
        font-size: 10px;
    }
    
    .hero-cta-premium {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium {
        min-width: 250px;
    }

    /* Ensure hero content sits below iOS status bar / fixed header on phones */
    .hero-content-premium {
        padding-top: max(90px, calc(env(safe-area-inset-top, 0px) + 60px));
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Services Preview */
.services-preview {
    background: #000;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23ff8c00" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ff8c00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
    border-color: var(--primary-accent);
}

.service-card.featured {
    border: 2px solid var(--primary-accent);
    background: var(--card-bg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #FF6B35;
    white-space: nowrap;
    z-index: 10;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 14px;
}

.service-price {
    font-size: 18px;
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: #FF6B35;
    font-size: 24px;
}

.service-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.service-link:hover {
    text-decoration: underline;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    padding: 2rem;
    color: var(--text-color);
    margin-top: 2rem;
}

.faq-section details summary {
    font-weight: 600;
    color: var(--primary-accent);
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-section details[open] summary {
    margin-bottom: 0.5rem;
}

.faq-section input,
.faq-section textarea {
    background-color: var(--primary-bg);
    color: var(--text-color);
    border: 1px solid var(--card-border);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--primary-bg);
    padding: 80px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 40px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    margin-bottom: 10px;
    color: #FF6B35;
}

.benefit-content p {
    opacity: 0.8;
    margin-bottom: 0;
}

.image-container {
    position: relative;
    margin-top: 30px;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .image-container {
        margin-top: 0;
    }
}

/* Process Section */
.process-section {
    background: #000;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(7, 1fr);
        gap: 16px;
        align-items: center;
    }
}

/* Process Card - Glass Design Aesthetic */
.process-card {
    padding: 24px 20px;
    border-radius: var(--card-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.04);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.process-card__badge {
    width: 48px;
    height: 48px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255,31,31,.3);
    text-shadow: none;
    flex-shrink: 0;
}

.process-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.process-card__desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
    flex-grow: 1;
}

.process-arrow {
    display: none;
    color: rgba(255,255,255,.4);
    font-size: 28px;
    text-align: center;
    font-weight: 300;
    align-self: center;
}

@media (min-width: 768px) {
    .process-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Legacy support - keep old classes working */
.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #FF6B35;
}

.step-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: #000;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #FF6B35;
}

.author-title {
    font-size: 14px;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Ensure footer logo is left-aligned */
.footer-content .footer-section:first-child {
    text-align: left;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    margin-left: 0;
    padding: 12px 0;
    justify-content: flex-start;
    transition: all 0.4s ease;
}

.footer-logo .logo {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
    padding: 2px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover .logo {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 4px 24px rgba(0, 229, 255, 0.7)) drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.footer-logo:hover {
    transform: translateX(4px);
}

.footer-description {
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #FF6B35, #ffb347);
    transform: translateY(-2px);
}

.footer-title {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-links a {
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    font-size: 16px;
    min-width: 20px;
}

.contact-item a {
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.contact-item a:hover {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-features {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Mobile-specific improvements */
    .btn {
        min-width: 200px;
        padding: 15px 25px;
        font-size: 16px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 15px 12px !important;
        border-radius: 8px !important;
    }
    
    /* Better touch targets */
    .nav-link, .service-link, .footer-links a {
        padding: 12px 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .filter-btn {
        min-width: 200px;
        padding: 12px 20px !important;
    }
    
    /* Service cards mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* Quote form mobile */
    .quote-form .row {
        flex-direction: column;
    }
    
    .quote-form .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Improved scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile typography */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.25rem !important; }
    
    /* Mobile spacing */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Houston Expansion Story Animations */
@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotateBeam {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced CTA Hover Effect */
.houston-expansion-cta:hover .arrow-icon {
    transform: translateX(8px) !important;
}

/* Pricing Grid Centering */
.pricing-grid {
    display: grid;
    justify-items: center;
    align-items: start;
}

.pricing-grid .service-card {
    width: 100%;
    max-width: 400px;
}

/* Service Links and Buttons */
.service-link,
.btn {
    display: inline-block;
    text-align: center;
    width: auto;
    min-width: 120px;
}

.service-card .btn {
    width: auto;
    min-width: 140px;
}

/* Houston Expansion Story Section Responsive */
@media (max-width: 768px) {
    .houston-expansion-story {
        padding: 80px 0 !important;
    }
    
    .houston-story-content .houston-expansion-cta {
        font-size: 1rem !important;
        padding: 18px 30px !important;
        gap: 10px !important;
    }
    
    .houston-story-content .houston-expansion-cta span:first-child {
        font-size: 1.5rem !important;
    }
    
    .houston-story-content .houston-expansion-cta .arrow-icon {
        font-size: 1.2rem !important;
    }
    
    /* Badge Logo Responsive */
    .houston-story-content img[alt="Southside Mobile Detail & Tint"],
    .hero-badge img[alt="Southside Mobile Detail & Tint"] {
        height: 80px !important;
    }
    
    /* Hero Logo Responsive */
    .hero-logo img {
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .houston-expansion-story {
        padding: 60px 0 !important;
    }
    
    .houston-story-content {
        padding: 0 15px;
    }
    
    /* Extra Small Badge Logo */
    .houston-story-content img[alt="Southside Mobile Detail & Tint"],
    .hero-badge img[alt="Southside Mobile Detail & Tint"] {
        height: 60px !important;
    }
    
    /* Hero Logo Extra Small */
    .hero-logo img {
        height: 70px !important;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Financing Banner (scoped) */
/* Glassy pill (hero + footer strip) */
.glass-pill{border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-radius:12px;padding:12px 18px;display:inline-flex;gap:10px;align-items:center;transition:transform .2s ease, box-shadow .2s ease; color:#E5E5E5; font-weight:600; font-size:15px; text-decoration:none;}
.glass-pill:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(0,0,0,.25);} 
.glass-pill:focus-visible{outline:2px solid rgba(255,255,255,.35); outline-offset:2px; border-color:rgba(255,255,255,.25);} 
@media (prefers-reduced-motion: reduce){ .glass-pill{ transition:none; } }

/* Secondary financing button */
.finance-apply-btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 28px; border-radius:30px; border:1px solid rgba(255,255,255,.25); color:#E5E5E5; text-decoration:none; font-weight:700; background:transparent; transition:all .25s ease; }
.finance-apply-btn:hover{ background:linear-gradient(90deg, rgba(255,107,53,.15), rgba(255,179,71,.15)); color:#fff; border-color:rgba(255,255,255,.4); }
.finance-apply-btn:focus-visible{ outline:2px solid rgba(255,255,255,.5); outline-offset:2px; }

/* Mobile sticky financing bar */
.sticky-finance{position:fixed;left:0;right:0;bottom:0;z-index:60;padding:12px 16px;display:flex;justify-content:center;align-items:center;gap:8px;box-shadow:0 -8px 20px rgba(0,0,0,.35);background:linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02));}
@media(min-width:769px){.sticky-finance{display:none;}}

/* Financing eligibility badge */
.badge-finance{border:1px solid rgba(255,255,255,.10);border-radius:10px;padding:4px 8px;font-size:12px;line-height:1;font-weight:600;background:rgba(255,255,255,.03); color:#E5E5E5;}

/* Footer financing strip */
.financing-footer-strip{ background: #000; border-top:1px solid var(--card-border); border-bottom:1px solid var(--card-border); padding:20px 0; }
.financing-footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:12px 16px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.financing-footer-text{ margin:0; color:#E5E5E5; font-weight:600; font-size:14px; }
@media(max-width:768px){ .financing-footer-inner{ justify-content:center; } .financing-footer-text{ text-align:center; } }

/* Scroll to Top Button - Red Theme */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4), 0 0 30px rgba(0, 229, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00ff88 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Video Showcase Section */
.video-showcase {
    background: #000;
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(255, 140, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .video-content h3 {
        font-size: 1.25rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
}

/* Enhanced Image and Video Styling */
.service-icon img,
.feature-image,
.author-photo,
.gallery-image img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: 15px;
}

.service-card:hover .service-icon img,
.image-container:hover .feature-image {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Premium Video Effects */
.hero-video,
.showcase-video {
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.video-item:hover .showcase-video,
.gallery-video:hover video {
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

/* Enhanced Testimonial Photos */
.author-photo {
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.testimonial-card:hover .author-photo {
    border-color: rgba(255, 255, 255, 0.5);
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Gallery Image Enhancements */
.gallery-image img {
    filter: brightness(0.98) contrast(1.02);
}

.gallery-item:hover .gallery-image img {
    filter: brightness(1.02) contrast(1.05);
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Premium Loading Animation for Images */
.service-icon,
.gallery-image,
.image-container {
    position: relative;
    overflow: hidden;
}

.service-icon::before,
.gallery-image::before,
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover .service-icon::before,
.gallery-item:hover .gallery-image::before,
.image-container:hover::before {
    left: 100%;
}

/* Enhanced Section Backgrounds */
.services-preview {
    background: #000;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ff8c00" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23ff8c00" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ff8c00" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Enhanced Video Quality and Performance */
video {
    /* Optimize for smooth, HD video rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    
    /* Force hardware acceleration for smooth playback */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    
    /* Ensure maximum video quality */
    object-fit: cover;
    object-position: center;
    
    /* Optimize playback performance */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

/* Enhanced Mobile Responsiveness for Images */
@media (max-width: 768px) {
    .service-icon img,
    .feature-image,
    .gallery-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-video,
    .showcase-video {
        object-position: center center;
    }
}

/* Premium Button Hover Effects */
.btn:hover {
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffaa00, #ffcc66, #ffffff);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.6);
    color: #000;
    font-weight: 600;
}

/* Enhanced Gallery Filter Buttons */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

/* Contact Page Enhancements */

/* Hero Logo Watermark */
.hero-logo-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.watermark-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-logo-watermark:hover {
    opacity: 0.6;
}

/* Contact Boxes Hover Animations */
.contact-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.contact-box:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 149, 0, 0.4);
    border-color: #FF6B35 !important;
}

.contact-box:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6B35, #ffb347, #ffffff, #FF6B35);
    border-radius: 17px;
    z-index: -1;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        filter: blur(2px);
    }
    to {
        opacity: 0.8;
        filter: blur(4px);
    }
}

/* Service Areas Box Enhancement */
.service-areas-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-areas-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 149, 0, 0.3);
    border-color: #FF6B35 !important;
}

/* Enhanced Hero Text Shadow for Better Contrast */
.hero-title {
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

/* Media Queries for Contact Enhancements */
@media (max-width: 768px) {
    .hero-logo-watermark {
        top: 15px;
        left: 15px;
    }
    
    .watermark-logo {
        height: 45px;
    }
    
    .contact-box:hover {
        transform: scale(1.02) translateY(-3px);
    }
}

/* Hero Logo Styles */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    max-height: 150px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 0, 0.3));
}

/* Brand Evolution Styles for Gallery */
.brand-evolution {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.2s ease-out;
}

.brand-past, .brand-present {
    transition: all 0.3s ease;
}

.brand-past:hover, .brand-present:hover {
    transform: translateY(-5px);
}

.brand-arrow {
    animation: pulse 2s infinite;
    color: #FF6B35;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-height: 100px;
    }
    
    .brand-evolution {
        padding: 15px;
        gap: 20px !important;
    }
    
    .brand-past img, .brand-present img {
        height: 60px !important;
    }
    
    .brand-arrow {
        font-size: 20px !important;
        transform: rotate(90deg);
    }
}

/* Newsletter Popup Styles */
.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.newsletter-popup {
    background: #000;
    border: 1px solid #333;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.newsletter-popup-overlay.active .newsletter-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF6B35;
    transform: rotate(90deg);
}

.popup-content {
    padding: 40px 30px 30px;
    text-align: center;
    color: #fff;
}

.popup-logo {
    margin-bottom: 25px;
}

.popup-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.popup-header {
    margin-bottom: 25px;
}

.popup-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-text {
    color: #FF6B35;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.popup-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0;
}

.popup-offer-details {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.offer-item {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
}

.newsletter-form {
    margin-bottom: 20px;
}

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

.popup-email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.popup-email-input:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.popup-email-input::placeholder {
    color: #999;
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF6B35, #ff8c5a);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.popup-submit-btn:hover::before {
    left: 100%;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #e55a2b, #FF6B35);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

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

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.popup-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.popup-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.popup-disclaimer small {
    font-size: 0.75rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .newsletter-popup {
        width: 95%;
        margin: 20px;
    }
    
    .popup-content {
        padding: 30px 20px 25px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.7rem;
    }
    
    .popup-offer-details {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
    }
    
    .offer-item {
        font-size: 0.9rem;
    }
    
    .popup-email-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .popup-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .form-group {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .newsletter-popup {
        width: 98%;
        margin: 10px;
        border-radius: 15px;
    }
    
    .popup-content {
        padding: 25px 15px 20px;
    }
    
    .popup-logo-img {
        height: 60px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
}

/* Smooth Animations */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Focus States for Accessibility - Cyan Theme */
*:focus-visible {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #00e5ff;
    outline-offset: 4px;
}

.popup-close:focus,
.popup-email-input:focus,
.popup-submit-btn:focus {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

/* Loading Animation */
.popup-submit-btn.loading .btn-text::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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

/* ============================================ */
/* REFACTOR: Hero Improvements & Components */
/* ============================================ */

/* Refactored Hero Section */
.hero {
    position: relative;
    min-height: clamp(520px, 78vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(96px, 12vh, 140px) 0 clamp(64px, 10vh, 120px);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(0.95);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.44), rgba(0,0,0,.58));
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 820px;
    padding: 48px 24px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 12px;
    text-shadow: 0 0 22px rgba(255,0,0,0.6), 0 6px 20px rgba(0,0,0,0.65);
}

.hero__lead {
    opacity: 0.94;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 20px);
    text-shadow: 0 0 18px rgba(255,0,0,0.45);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.trust-item {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
}

/* Desktop Hero Centering */
@media (min-width: 769px) {
    .hero {
        justify-content: center;
    }
    
    .hero__inner {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__title {
        text-align: center;
    }
    
    .hero__lead {
        text-align: center;
    }
    
    .hero__ctas {
        justify-content: center;
    }
    
    .hero__trust {
        justify-content: center;
    }
}

/* Hero Scroll Indicator */
@keyframes scrollBounce {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(12px);
    }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    color: #00e5ff;
    cursor: pointer;
    z-index: 10;
}

.hero__scroll-indicator svg {
    display: block;
}

/* Buttons - Refactored */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--brand-cyan);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 229, 255, .12);
}

.btn--primary:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, .2);
}

.btn--primary:focus {
    outline: 2px solid var(--brand-cyan);
    outline-offset: 2px;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
}

.btn--ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
}

.btn--ghost:focus {
    outline: 2px solid rgba(255,255,255,.3);
    outline-offset: 2px;
}

/* Feature Card Component */
.feature-card {
    width: 100%;
    max-width: 320px;
    padding: 18px;
    border-radius: var(--card-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.04);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 0 auto;
}

/* Ensure feature-card works in services-grid */
.services-grid .feature-card {
    max-width: 100%;
}

.feature-card__badge {
    display: inline-block;
    padding: 6px 10px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 12px;
    text-shadow: none;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.feature-card__desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
    line-height: 1.5;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.feature-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.icon-link:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.icon-link:focus {
    outline: 2px solid rgba(255,255,255,.3);
    outline-offset: 2px;
}

/* Info Card - Standardized */
.info-card {
    padding: 20px;
    border-radius: var(--card-radius);
    background: var(--glass);
    border: 1px solid rgba(255,255,255,.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.info-card__img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
}

.info-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.info-card__copy {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 16px;
    flex-grow: 1;
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.info-card__meta {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--brand-red);
    text-shadow: 0 0 15px rgba(255,31,31,0.6);
}

/* Sticky Desktop CTA */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
}

.sticky-cta .btn {
    box-shadow: 0 8px 24px rgba(255,31,31,.3);
}

/* Mobile Bottom CTA Bar */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-bottom-cta .btn {
    flex: 1;
    max-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 60px);
        padding-top: calc(110px + env(safe-area-inset-top, 0));
        padding-bottom: 64px;
        align-items: flex-start;
    }
    
    .hero__inner {
        padding: 32px 20px 24px;
        width: 100%;
        text-align: center;
    }
    
    .hero__title {
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1.18;
        margin-bottom: 8px;
    }

    .hero__lead {
        font-size: clamp(15px, 4.4vw, 18px);
        margin-bottom: 16px;
    }
    
    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__ctas .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .sticky-cta {
        display: none;
    }
    
    .mobile-bottom-cta {
        display: flex;
    }
    
    .feature-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

/* ============================================ */
/* TRUST BADGES SECTION */
/* ============================================ */
.trust-bar {
    background: linear-gradient(180deg, rgba(0,229,255,0.08) 0%, rgba(0,255,136,0.05) 100%);
    border-top: 1px solid rgba(0,229,255,0.2);
    border-bottom: 1px solid rgba(0,229,255,0.2);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,229,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0,255,136,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
    background: rgba(0,0,0,0.6);
    border-color: #00e5ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,229,255,0.3);
}

.trust-badge-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(0,255,136,0.15) 100%);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.trust-badge:hover .trust-badge-icon {
    background: linear-gradient(135deg, rgba(0,229,255,0.25) 0%, rgba(0,255,136,0.25) 100%);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0,229,255,0.4);
    transform: scale(1.1);
}

.trust-badge-icon svg {
    stroke: #00e5ff;
    transition: all 0.4s ease;
}

.trust-badge:hover .trust-badge-icon svg {
    stroke: #00ff88;
}

.trust-badge-content {
    flex: 1;
}

.trust-badge-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    text-shadow: 0 0 15px rgba(0,229,255,0.6);
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-title {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0,229,255,0.8);
}

.trust-badge-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-shadow: 0 0 10px rgba(0,229,255,0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-subtitle {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 15px rgba(0,229,255,0.5);
}

/* Trust Badges Responsive */
@media (max-width: 768px) {
    .trust-bar {
        padding: 30px 15px;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-badge {
        padding: 16px;
        gap: 15px;
    }

    .trust-badge-icon {
        width: 44px;
        height: 44px;
    }

    .trust-badge-icon svg {
        width: 28px;
        height: 28px;
    }

    .trust-badge-title {
        font-size: 1rem;
    }

    .trust-badge-subtitle {
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================ */
/* INSTAGRAM FEED SECTION */
/* ============================================ */
.instagram-section {
    background: #000;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,229,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00e5ff;
    text-decoration: none;
    margin-top: 10px;
    padding: 12px 24px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0,229,255,0.6);
}

.instagram-handle:hover {
    background: rgba(0,229,255,0.2);
    border-color: #00e5ff;
    box-shadow: 0 4px 20px rgba(0,229,255,0.3);
    transform: translateY(-2px);
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.instagram-post {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    border: 1px solid rgba(0,229,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post:hover {
    border-color: #00e5ff;
    box-shadow: 0 8px 30px rgba(0,229,255,0.3);
    transform: translateY(-4px);
}

.instagram-post-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.instagram-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.instagram-post:hover .instagram-post-image img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.7) 0%, rgba(0,255,136,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    fill: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Instagram Feed Responsive */
@media (max-width: 639px) {
    .instagram-section {
        padding: 50px 15px;
    }

    .instagram-feed-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .instagram-handle {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* ============================================ */
/* EXIT INTENT POPUP */
/* ============================================ */
.exit-intent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.exit-intent-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-intent-popup {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0,229,255,0.2);
    animation: popupSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.exit-intent-close:hover {
    background: rgba(255,255,255,0.2);
    border-color: #00e5ff;
    transform: rotate(90deg);
}

.exit-intent-close svg {
    stroke: #fff;
}

.exit-intent-content {
    text-align: center;
}

.exit-intent-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(0,255,136,0.15) 100%);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 50%;
}

.exit-intent-icon svg {
    stroke: #00e5ff;
}

.exit-intent-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    text-shadow: 0 0 20px rgba(0,229,255,0.6);
}

.exit-intent-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0,229,255,0.3);
}

.exit-intent-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.exit-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.exit-benefit:hover {
    background: rgba(0,229,255,0.1);
    border-color: rgba(0,229,255,0.3);
}

.exit-benefit svg {
    flex-shrink: 0;
}

.exit-benefit span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 10px rgba(0,229,255,0.3);
}

.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-exit-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,229,255,0.4);
}

.btn-exit-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(0,229,255,0.6);
}

.btn-exit-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-exit-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* Exit Intent Responsive */
@media (max-width: 639px) {
    .exit-intent-popup {
        padding: 30px 20px;
        max-width: 100%;
    }

    .exit-intent-title {
        font-size: 1.5rem;
    }

    .exit-intent-subtitle {
        font-size: 0.95rem;
    }

    .exit-intent-icon {
        width: 64px;
        height: 64px;
    }

    .exit-intent-icon svg {
        width: 40px;
        height: 40px;
    }

    .btn-exit-primary,
    .btn-exit-secondary {
        width: 100%;
    }
}

/* ============================================ */
/* FLOATING CONTACT BUTTONS */
/* ============================================ */
.floating-contact-buttons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.floating-btn svg {
    flex-shrink: 0;
}

.floating-btn-call {
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    color: #000;
}

.floating-btn-call:hover {
    box-shadow: 0 8px 30px rgba(0,229,255,0.5);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.floating-btn-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #F77737 50%, #FCAF45 100%);
}

.floating-btn-instagram:hover {
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

.floating-btn-label {
    font-family: 'Poppins', sans-serif;
    text-shadow: none;
}

/* Hide labels on very small screens */
@media (max-width: 400px) {
    .floating-btn {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-btn-label {
        display: none;
    }

    .floating-contact-buttons {
        bottom: 85px;
    }
}

/* Hide on desktop - desktop users can use nav CTAs */
@media (min-width: 1024px) {
    .floating-contact-buttons {
        display: none;
    }
}

/* ============================================ */
/* REVIEWS SECTION */
/* ============================================ */
.reviews-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0,229,255,0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(0,255,136,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.review-card {
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(20,20,20,0.6) 100%);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(20,20,20,0.7) 100%);
    border-color: #00e5ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,229,255,0.2);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    text-shadow: 0 0 10px rgba(0,229,255,0.2);
}

.review-text::before {
    content: '"';
    color: rgba(0,229,255,0.5);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 5px;
}

.review-text::after {
    content: '"';
    color: rgba(0,229,255,0.5);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.3em;
    margin-left: 5px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,229,255,0.1);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(0,255,136,0.15) 100%);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    stroke: #00e5ff;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 12px rgba(0,229,255,0.4);
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-shadow: 0 0 10px rgba(0,229,255,0.3);
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    .review-text {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-cta {
        display: none !important;
    }
}

/* Process Card Mobile Responsiveness */
@media (max-width: 767px) {
    .process-card {
        padding: 20px 16px;
    }
    
    .process-card__badge {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .process-card__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .process-card__desc {
        font-size: 13px;
    }
    
    .process-steps {
        gap: 20px;
    }
}

/* ========================================
   INQUIRY MODAL STYLES
   ======================================== */

.inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.inquiry-modal-popup {
    background: linear-gradient(180deg, rgba(20,20,20,0.98) 0%, rgba(10,10,10,0.99) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 40px auto;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.15), 0 25px 50px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.inquiry-modal-overlay.active .inquiry-modal-popup {
    transform: translateY(0);
}

.inquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #fff;
}

.inquiry-modal-close:hover {
    background: rgba(0, 229, 255, 0.3);
    transform: rotate(90deg);
}

.inquiry-modal-content {
    padding: 30px 25px;
}

.inquiry-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.inquiry-modal-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.inquiry-modal-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.gohighlevel-form-container {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.gohighlevel-form-container iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 15px;
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .inquiry-modal-overlay {
        padding: 10px;
    }
    
    .inquiry-modal-popup {
        margin: 20px auto;
        border-radius: 15px;
    }
    
    .inquiry-modal-content {
        padding: 20px 15px;
    }
    
    .inquiry-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}