:root {
    --primary-color: #0f172a; /* Slate 900 (Navy) */
    --primary-light: #1e293b; /* Slate 800 */
    --accent-color: #f97316; /* Orange */
    --accent-hover: #ea580c;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    padding-bottom: 80px;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    mix-blend-mode: multiply; /* Takes out the white background */
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

.sub-headline {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #cbd5e1;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.price-guarantee {
    margin-top: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fbbf24; /* Amber */
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
}

.trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 18px 36px;
    font-size: 1.25rem;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out 0.5s both, pulseGlow 2s infinite 1.5s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-primary .icon {
    margin-right: 8px;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
    font-weight: 500;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Message Section */
.lifetime-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

/* Services */
.service-list {
    list-style: none;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-list li {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-header {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.service-issues {
    font-size: 0.95rem;
    font-weight: 400;
    color: #64748b;
    padding-left: 39px;
    line-height: 1.4;
}

.service-list .emoji-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.review-card .stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card .review-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 15px;
}

.review-card .reviewer {
    font-weight: 700;
    color: var(--primary-color);
}

/* Service Area */
.areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-badge {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.area-badge:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Brands SEO Section */
.brands-seo {
    padding: 30px 0 10px 0;
    text-align: center;
    background-color: var(--text-light);
}

.brands-text {
    font-size: 0.85rem;
    color: #94a3b8; /* Slate 400 - subtle but readable */
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #94a3b8;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 400px;
    background: rgba(249, 115, 22, 0.95); /* Orange with blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    text-align: center;
    padding: 16px 0;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky-cta:active {
    transform: translateX(-50%) scale(0.98);
    background: rgba(234, 88, 12, 0.98);
}

.sticky-cta .icon {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .hero {
        padding: 140px 0 140px 0;
    }
    .hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
    }
    .hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-bottom: 50px;
    }
    .feature-item {
        font-size: 1.3rem;
    }
    .check-icon {
        width: 28px;
        height: 28px;
    }
    .sub-headline {
        font-size: 1.4rem;
        margin-bottom: 50px;
    }
    .trust-inner {
        gap: 40px;
    }
    .trust-inner .badge {
        font-size: 1.1rem;
    }
    .service-list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    body {
        padding-bottom: 0;
    }
    .sticky-cta {
        bottom: 30px;
        right: 30px;
        left: auto;
        transform: none;
        width: auto;
        padding: 16px 32px;
        border-radius: 50px;
    }
    .sticky-cta:active {
        transform: scale(0.98);
    }
}
