/* ============================================================================
   🚀 ELEMENT HOME SOLUTIONS - LANDING PAGE
   Primary Color: #7142b4 (Purple)
============================================================================ */

/* 🎨 PREMIUM COLOR PALETTE - PROFESSIONAL & HIGH-CONVERTING */
:root {
    /* Primary Brand Colors - Professional Purple */
    --primary: #7142b4;
    --primary-dark: #5a3491;
    --primary-light: #8b5bc9;
    
    /* Accent Colors - Minimal & Strategic */
    --accent-gold: #d4af37;
    --accent-gold-dark: #d4af37;
    
    /* Neutral Palette - Premium Grays */
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray-dark: #4a5568;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #e5e7eb;
    --light: #f7fafc;
    --white: #ffffff;
    
    /* Status Colors - Subtle & Professional */
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Premium Shadows - More Sophisticated */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-light: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
}

/* 🔄 RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* 📱 PROFESSIONAL ANNOUNCEMENT BAR */
.urgent-bar {
    background: var(--gradient-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

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

.urgent-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 600;
}

.urgent-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

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

.urgent-offer {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.urgent-timer {
    font-size: 13px;
    opacity: 0.85;
    color: var(--gray-light);
}

.urgent-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urgent-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* 📱 MOBILE HEADER */
.mobile-header {
    display: block;
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 48px;
    z-index: 999;
}

.desktop-header {
    display: none;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-call-btn {
    background: var(--gradient-primary);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 💻 DESKTOP HEADER */
@media (min-width: 1024px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-header {
        display: block;
        background: var(--white);
        padding: 20px 0;
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 48px;
        z-index: 999;
    }
    
    .desktop-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo-desktop .logo-img {
        height: 50px;
    }
    
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link {
        color: var(--dark);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: var(--primary);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .desktop-contact {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
    }
    
    .phone-link {
        color: var(--dark);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .phone-link i {
        color: var(--primary);
    }
    
    .contact-divider {
        color: var(--gray);
    }
    
    .response-time {
        color: var(--success);
        font-weight: 600;
    }
    
    .desktop-cta-btn {
        background: var(--gradient-primary);
        color: white;
        padding: 12px 28px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
        font-size: 14px;
    }
    
    .desktop-cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
        color: white;
    }
}

/* 📱 Mobile menu (overlay + panel) */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 998;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%;
    max-width: 320px;
    background: var(--white);
    box-shadow: -8px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 9999;
    padding: 20px;
}
.mobile-menu-panel.active { transform: translateX(0); }

.close-menu {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav-item { color: var(--dark); text-decoration: none; font-weight: 600; }
.mobile-quote-btn {
    margin-top: 12px;
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
}

/* 🚀 HERO SECTION - PREMIUM DESIGN */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.webp') center/cover;
    opacity: 0.05;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(113, 66, 180, 0.9) 50%, rgba(90, 52, 145, 0.95) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.hero-content {
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
}

.hero-headline {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.hero-value-prop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-text strong {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.value-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.urgency-counter {
    background: rgba(26, 26, 26, 0.8);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.counter-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.counter-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-primary);
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-cta {
    text-align: center;
    margin-bottom: 40px;
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 22px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main-cta-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;
}

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

.main-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    color: var(--dark);
}

.cta-icon {
    font-size: 1.5rem;
    animation: rocket 2s infinite;
}

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

.cta-text {
    font-family: var(--font-primary);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.main-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .hero-trust {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

@media (min-width: 768px) {
    .hero-image {
        height: 500px;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;  /* Changed from 0 to 1 */
    transition: background 0.3s ease;  /* Changed from opacity to background */
}

.hero-image-container:hover .image-overlay {
    background: rgba(0, 0, 0, 0.5);  /* Darkens on hover instead of appearing */
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

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

.play-button i {
    font-size: 2rem;
    color: var(--primary);
    margin-left: 5px;
}

.overlay-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);  /* Added text shadow for better visibility */
}

/* 💎 BENEFITS SECTION */
.benefits-section {
    padding: 80px 0;
    background: var(--light);
}

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

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.benefit-desc {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-proof {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* 📱 MOBILE STICKY BAR */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none;
    }
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.call-sticky {
    background: var(--gradient-dark);
    color: white;
}

.quote-sticky {
    background: var(--gradient-primary);
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.sticky-btn i {
    font-size: 1.2rem;
}

/* 🦶 FOOTER SECTION */
.footer-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0 0 0;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    line-height: 1.4;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-nav-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-nav-link:hover {
    color: var(--primary);
    padding-left: 20px;
}

.footer-nav-link:hover::before {
    opacity: 1;
}

.footer-nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.footer-nav-link.active::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.contact-item:hover {
    background: rgba(113, 66, 180, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(113, 66, 180, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.contact-text {
    color: var(--gray-light);
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 30px;
    background: rgba(0, 0, 0, 0.2);
}

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

.copyright {
    color: var(--gray-light);
    font-size: 14px;
    margin: 0;
}

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

.footer-bottom-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}

/* 📱 MOBILE RESPONSIVENESS */
@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .urgent-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .urgent-text {
        justify-content: center;
    }
    
    .hero-value-prop {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .counter-timer {
        gap: 15px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .main-cta-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    /* Mobile body padding to account for sticky bar */
    body {
        padding-bottom: 80px;
    }
}

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

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-visual {
    animation: slideInRight 1s ease-out 0.3s both;
}

.benefit-card {
    animation: fadeInUp 0.8s ease-out both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* 🏗️ PROCESS SECTION */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

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

.process-timeline {
    margin-bottom: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

@media (min-width: 1024px) {
    .process-step {
        grid-template-columns: 80px 1fr 300px;
        gap: 40px;
    }
    
    .process-step:nth-child(even) {
        grid-template-columns: 300px 1fr 80px;
    }
    
    .process-step:nth-child(even) .step-number {
        order: 3;
    }
    
    .process-step:nth-child(even) .step-content {
        order: 2;
        text-align: right;
    }
    
    .process-step:nth-child(even) .step-visual {
        order: 1;
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .step-number {
        margin: 0;
    }
}

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

@media (min-width: 1024px) {
    .step-content {
        text-align: left;
    }
}

.step-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-desc {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

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

.step-visual img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.secondary-cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.secondary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* 🖼️ GALLERY SECTION */
.gallery-section {
    padding: 80px 0;
    background: var(--light);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* 💬 TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonials-carousel {
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    margin: 0 15px;
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.customer-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.testimonial-stars {
    font-size: 0.9rem;
}

.google-logo img {
    width: 24px;
    height: 24px;
}

.testimonial-content p {
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-content strong {
    color: var(--dark);
    font-weight: 700;
}

.testimonial-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.verified {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

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

.stat-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
}

/* ❓ FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h3 {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--accent-gold-dark);
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* 🎯 QUOTE FORM SECTION - PREMIUM */
.quote-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg2.webp') center/cover;
    opacity: 0.1;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .quote-content {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-left {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
}

.form-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.form-urgency {
    background: var(--gradient-dark);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(113, 66, 180, 0.1);
}

.form-submit-btn {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 22px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::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.5s ease;
}

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

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    color: var(--dark);
}

.btn-icon {
    font-size: 1.5rem;
    animation: rocket 2s infinite;
}

.btn-text {
    font-family: var(--font-primary);
    font-size: 1rem;
}

@media screen and (max-width: 480px) {
    .btn-text {
        font-size: 0.85rem;
    }
}

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

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

.form-guarantee {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.guarantee-icon {
    color: var(--success);
}

.quote-right {
    color: white;
}

.quote-benefits h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefit-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item .benefit-icon {
    font-size: 1.5rem;
}

.benefit-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.benefit-value {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.total-value {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.value-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.value-line.final {
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 700;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-stars {
    margin-bottom: 10px;
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 10px;
}

.mini-author {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 📞 FINAL CTA SECTION */
.final-cta-section {
    padding: 80px 0;
    background: var(--light);
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta-content {
    text-align: center;
}

.final-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.final-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
}

.final-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

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

.option-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.option-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.option-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.option-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.option-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.quote-btn {
    background: var(--gradient-primary);
    color: white;
}

.text-btn {
    background: var(--gradient-gold);
    color: var(--dark);
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.call-btn:hover,
.quote-btn:hover {
    color: white;
}

.text-btn:hover {
    color: var(--dark);
}

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

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--dark);
    border: 1px solid #e5e7eb;
}
