/* Root Variables & Reset */
:root {
    --primary-color: #3FC7D3;
    --primary-hover: #36b0bb;
    --primary-light: rgba(63, 199, 211, 0.1);
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --success: #4ade80;
    --warning: #fbbf24;
    --gradient-primary: linear-gradient(135deg, #3FC7D3 0%, #36b0bb 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    background: linear-gradient(135deg, #ffffff 0%, #3FC7D3 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #3FC7D3 0%, #ffffff 50%, #3FC7D3 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-weight: 700;
    line-height: 1.2;
}

/* Remove service-highlight styling so it inherits h1 gradient */

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}

.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(63, 199, 211, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 199, 211, 0.4);
    background: var(--gradient-primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* More spacing on desktop */
@media (min-width: 1200px) {
    .hero {
        padding: 200px 0 80px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(63, 199, 211, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

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


.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    font-size: 3.6rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--dark-card);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--dark-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #3FC7D3;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 2px 6px rgba(63, 199, 211, 0.35));
}

.hero-feature-icon svg .fill-accent {
    fill: rgba(63, 199, 211, 0.18);
    stroke: none;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(63, 199, 211, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 199, 211, 0.4);
    color: white;
}

.btn-bubbles {
    position: relative;
    overflow: hidden;
}

.btn-bubbles::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30%;
    width: 160%;
    height: 160%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 95% 85%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 55%);
    background-repeat: no-repeat;
    background-size: 26px 26px;
    opacity: 0;
    pointer-events: none;
    transform: translate(30%, -40%) scale(0.6);
}

.btn-bubbles:hover::after,
.btn-bubbles:focus-visible::after {
    opacity: 1;
    animation: bubble-trail 1.25s ease-out infinite;
}

@keyframes bubble-trail {
    0% {
        transform: translate(30%, -40%) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    100% {
        transform: translate(95%, -140%) scale(1.15);
        opacity: 0;
    }
}

.btn-grow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-grow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(63, 199, 211, 0.4);
}

.btn-secondary {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

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

.btn-white:hover {
    background: #f0f0f0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Welcome Offer */
.welcome-offer {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(63, 199, 211, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    animation: fadeInUp 0.8s ease 0.8s both;
    width: 100%;
    box-shadow: 0 10px 30px rgba(63, 199, 211, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.offer-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-header:hover {
    transform: translateY(-1px);
}

.welcome-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A9CA6 100%);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(63, 199, 211, 0.3);
    z-index: 2;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;  /* Add controlled gap */
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.offer-header::after {
    content: "Click to see details";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.welcome-offer:hover .offer-header::after {
    opacity: 1;
}

.welcome-offer.expanded .offer-header::after {
    content: "Click to hide details";
}

.welcome-offer h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    flex: 1;
}

.gift-box-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.gift-box-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.gift-box-icon svg {
    width: 100%;
    height: 100%;
}

.bonus-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.welcome-offer.expanded .bonus-features-grid {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1.5rem;
}

.bonus-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem;
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.08) 0%, rgba(63, 199, 211, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(63, 199, 211, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

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

.bonus-feature:hover::before {
    left: 100%;
}

.bonus-feature:hover {
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.15) 0%, rgba(63, 199, 211, 0.2) 100%);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 199, 211, 0.2);
}


.bonus-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.bonus-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(63, 199, 211, 0.3));
}

.bonus-feature span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-align: left;
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bonus-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .offer-header {
        flex-direction: column;
        gap: 0.75rem;  /* Reduced from 1.5rem */
        text-align: center;
    }
    
    .welcome-offer h3 {
        font-size: 1.5rem;
    }
    
    .gift-box-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .bonus-feature {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .bonus-icon {
        width: 36px;
        height: 36px;
    }
    
    .bonus-feature span {
        font-size: 0.8rem;
    }
    
    .welcome-offer {
        padding: 1.5rem 1rem;
    }
    
    .offer-header::after {
        bottom: -15px;
        font-size: 0.7rem;
    }
}

.phone-icon svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* Removed duplicate - now handled below */

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(63, 199, 211, 0.4));
}

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle {
    stroke: #fff;
    fill: rgba(255, 255, 255, 0.1);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.stars svg {
    animation: starTwinkle 3s ease-in-out infinite;
}

.stars svg:nth-child(1) { animation-delay: 0s; }
.stars svg:nth-child(2) { animation-delay: 0.2s; }
.stars svg:nth-child(3) { animation-delay: 0.4s; }
.stars svg:nth-child(4) { animation-delay: 0.6s; }
.stars svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

.footer-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Video Placeholder */
.hero-video {
    animation: fadeInUp 0.8s ease 1s both;
    position: relative;
}

.owner-message {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    text-align: center;
    transition: opacity 0.5s ease;
}

.owner-message p {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    padding: 8px 16px;
    background: rgba(63, 199, 211, 0.1);
    border: 1px solid rgba(63, 199, 211, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.video-placeholder {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(63, 199, 211, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 40px 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin: 0.2rem 0 0.1rem 0;
    font-weight: 600;
}

.step-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.step-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-bottom: 0.25rem;
}

.step-svg {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px;
    max-height: 120px;
    margin: 0 auto;
    display: block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 0.35rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(63, 199, 211, 0.3));
    transition: all 0.3s ease;
}

.step-arrow:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(63, 199, 211, 0.5));
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--dark-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* .service-card::before removed - now handled in enhanced-styles.css */

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* .service-card:hover::before removed - now handled in enhanced-styles.css */

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;  /* Consistent spacing below icon */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;  /* Fixed height for consistent spacing */
}

.service-icon svg {
    width: 115px !important;  /* Increased by 15% from 100px */
    height: 115px !important;  /* Increased by 15% from 100px */
    transition: all 0.3s ease;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(63, 199, 211, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.benefit-icon img {
    width: 126px;
    height: auto;
    display: block;
    background-color: transparent;
    filter: drop-shadow(0 6px 16px rgba(63, 199, 211, 0.25));
}

.benefit-card.image-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.benefit-card.image-card img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.benefit-card.image-card:hover {
    transform: none;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon img {
        width: 80px;
        height: auto;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    .services-hero-image {
        max-width: 59% !important;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-feature {
        font-size: 0.75rem;
        padding: 0.45rem 0.65rem;
        gap: 0.4rem;
        justify-content: center;
    }

    .hero-feature-icon {
        width: 18px;
        height: 18px;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--dark-surface);
}

.reviews-badge-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.15) 0%, rgba(95, 227, 232, 0.15) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(63, 199, 211, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.reviews-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 199, 211, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.reviews-badge .stars {
    font-size: 1.5rem;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.reviews-badge .reviews-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5FE3E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(63, 199, 211, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(63, 199, 211, 0.5), 0 0 40px rgba(63, 199, 211, 0.2);
    }
}

@media (max-width: 768px) {
    .reviews-badge {
        padding: 12px 24px;
        gap: 8px;
    }

    .reviews-badge .stars {
        font-size: 1.2rem;
    }

    .reviews-badge .reviews-text {
        font-size: 1rem;
    }
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--dark-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.area-group h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    transition: var(--transition);
}

.area-group li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.areas-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.1) 0%, rgba(63, 199, 211, 0.05) 100%);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    margin-bottom: 1rem;
    text-align: center !important;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Service Areas Section - Proudly Cleaning Houston */
.service-areas-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
}

.service-areas-section h2,
.service-areas-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center !important;
    margin-bottom: 0.5rem;
    font-weight: bold;
    width: 100%;
    display: block;
}

.areas-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    display: block;
}

.city-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-links-grid a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.city-links-grid a:hover {
    background: var(--dark-card);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 199, 211, 0.2);
}

.zip-codes {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .city-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .service-areas-section h2 {
        font-size: 2rem;
    }

    .city-links-grid a {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-info li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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



/* Responsive Design */
@media (max-width: 992px) {
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-surface);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        width: 100%;
        margin: 1rem auto;
        justify-content: center;
    }

    .step-arrow:hover {
        transform: rotate(90deg) scale(1.1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Chat Widget Styling */
iframe[src*="leadconnectorhq"] {
    color-scheme: light !important;
}

/* Override chat widget input styling */
#chat-widget-container input,
#chat-widget-container textarea,
div[class*="chat"] input,
div[class*="chat"] textarea,
div[id*="chat"] input,
div[id*="chat"] textarea {
    color: #ffffff !important;
    background-color: #1a1a1a !important;
    border-color: var(--primary-color) !important;
}

div[class*="chat"] input::placeholder,
div[class*="chat"] textarea::placeholder,
div[id*="chat"] input::placeholder,
div[id*="chat"] textarea::placeholder {
    color: #b0b0b0 !important;
}
