/* CSS Variables */
:root {
    --primary-green: #3D5A45;
    --primary-green-dark: #2E4535;
    --primary-green-light: #5C7D64;
    --accent-tan: #D4A574;
    --accent-tan-light: #E8C4A0;
    --cta-orange: #E85A3C;
    --cta-orange-dark: #D14A2E;
    --cream: #FDF8F3;
    --off-white: #FAFAFA;
    --light-grey: #F5F5F5;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    --border-color: #E8E8E8;
    --error-red: #DC3545;
    --guarantee-bg: #E8F0E8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--off-white);
}

h1, h2, h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

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

a:hover {
    text-decoration: underline;
}

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

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 64px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--cta-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 90, 60, 0.35);
}

.btn-primary:hover {
    background: var(--cta-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 90, 60, 0.45);
}

.btn-light {
    background: white;
    color: var(--cta-orange);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: #FFF8F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

@media (max-width: 767px) {
    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }
}

/* ==================== */
/* HEADER */
/* ==================== */
.header {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    padding: 8px 0;
    z-index: 50;
}

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

.header-logo {
    display: flex;
    align-items: center;
}

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

@media (min-width: 768px) {
    .logo-img {
        height: 220px;
    }
}

.header-cta {
    padding: 10px 20px;
    font-size: 14px;
    background: white;
    color: var(--primary-green);
}

.header-cta:hover {
    background: var(--cream);
}

@media (min-width: 768px) {
    .header-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    position: relative;
    padding: 48px 0 60px;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 64px 0 80px;
        min-height: 650px;
    }
}

/* Background image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay for text readability */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 45, 45, 0.85) 0%,
        rgba(61, 90, 69, 0.75) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
}

.hero .subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero .subheadline {
        font-size: 20px;
        margin-bottom: 0;
    }
}

.hero .btn-primary {
    background: var(--cta-orange);
    color: white;
    box-shadow: 0 8px 32px rgba(232, 90, 60, 0.4);
}

.hero .btn-primary:hover {
    background: var(--cta-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 90, 60, 0.5);
}

/* Hero image */
.hero-image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 22px;
    }
}

.hero-stat {
    color: white;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--cta-orange);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

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

/* ==================== */
/* WHAT PARENTS SEE SECTION */
/* ==================== */
.what-parents-see {
    background: white;
    padding: 56px 0;
}

@media (min-width: 768px) {
    .what-parents-see {
        padding: 72px 0;
    }
}

.parents-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.parents-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-dark);
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.parents-list li:last-child {
    border-bottom: none;
}

.parents-list-heading {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
    line-height: 1.3;
}

.parents-list-desc {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.parent-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.parent-icon i {
    color: white;
    font-size: 16px;
}

@media (min-width: 768px) {
    .parents-list-heading {
        font-size: 21px;
    }

    .parents-list-desc {
        font-size: 17px;
    }
}

/* ==================== */
/* HOW IT WORKS SECTION */
/* ==================== */
.how-it-works {
    background: var(--cream);
    padding: 56px 0;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 72px 0;
    }
}

.steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-horizontal {
        flex-direction: row;
        gap: 0;
        align-items: flex-start;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(61, 90, 69, 0.3);
}

.step-connector-line {
    display: none;
}

@media (min-width: 768px) {
    .step-connector-line {
        display: block;
        position: absolute;
        top: 28px;
        left: calc(50% + 28px);
        width: calc(100% - 56px);
        height: 3px;
        background: linear-gradient(90deg, var(--primary-green), var(--accent-tan));
        z-index: 1;
    }

    .step:last-child .step-connector-line {
        display: none;
    }
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.steps-outcome {
    text-align: center;
    margin-top: 40px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 12px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(61, 90, 69, 0.25);
}

.outcome-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.outcome-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .steps-outcome {
        margin-top: 48px;
        padding: 24px 32px;
    }

    .outcome-label {
        font-size: 16px;
    }

    .outcome-text {
        font-size: 22px;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==================== */
/* SUCCESS STORY SECTION */
/* ==================== */
.success-story {
    background: var(--cream);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .success-story {
        padding: 100px 0;
    }
}

.story-card {
    background: white;
    border-radius: 24px;
    padding: 40px 28px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .story-card {
        padding: 56px 64px;
    }
}

.story-visual-enhanced {
    margin-bottom: 40px;
}

.grade-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .grade-journey {
        gap: 32px;
    }
}

.grade-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

@media (min-width: 768px) {
    .grade-circle {
        width: 120px;
        height: 120px;
    }
}

.grade-circle svg {
    width: 100%;
    height: 100%;
}

.grade-circle .grade-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 24px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .grade-circle .grade-number {
        font-size: 28px;
    }
}

.grade-before .grade-number {
    color: var(--error-red);
}

.grade-after .grade-number {
    color: var(--primary-green);
}

.grade-circle .grade-label {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.journey-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.journey-arrow span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-headline {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .story-headline {
        font-size: 28px;
    }
}

.story-body {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 32px;
}

.parent-quote {
    background: linear-gradient(135deg, var(--cream) 0%, #F5EDE5 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 0;
    position: relative;
}

.quote-icon {
    color: var(--accent-tan);
    margin-bottom: 12px;
}

.parent-quote p {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .parent-quote p {
        font-size: 28px;
    }
}

.parent-quote cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-muted);
}

/* ==================== */
/* WHY US SECTION */
/* ==================== */
.why-us {
    background: var(--cream);
    padding: 56px 0;
}

@media (min-width: 768px) {
    .why-us {
        padding: 72px 0;
    }
}

.why-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--text-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: white;
    font-size: 14px;
}

.why-icon-gold {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

.why-highlight {
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
}

.why-list li strong {
    font-weight: 600;
}

@media (min-width: 768px) {
    .why-list li {
        font-size: 18px;
        padding: 14px 0;
    }
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.subtle-grid-bg {
    position: relative;
}

.subtle-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(61, 90, 69, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 90, 69, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.dotted-paper-bg {
    position: relative;
}

.dotted-paper-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(61, 90, 69, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

.subtle-grid-bg > .container {
    position: relative;
    z-index: 1;
}

.section-depth {
    box-shadow:
        inset 0 20px 40px -20px rgba(0, 0, 0, 0.03),
        inset 0 -20px 40px -20px rgba(0, 0, 0, 0.03);
}

/* ==================== */
/* TESTIMONIALS SECTION */
/* ==================== */
.testimonials-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 96px 0;
    }
}

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-tan));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .testimonials-section h2 {
        font-size: 42px;
    }
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .testimonials-carousel-wrapper {
        padding: 0 48px;
    }
}

@media (max-width: 400px) {
    .testimonials-carousel-wrapper {
        padding: 0 44px;
    }
}

.testimonials-carousel {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: none;
    flex: 0 0 calc(100vw - 140px);
    max-width: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
}

.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    color: rgba(196, 164, 132, 0.15);
    line-height: 1;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 400px;
        max-width: 400px;
        padding: 32px;
    }

    .testimonial-card::before {
        font-size: 120px;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent-tan);
    font-size: 14px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-tan);
}

.grade-highlight {
    font-weight: 700;
    font-style: normal;
    color: var(--primary-green);
    background: rgba(61, 90, 69, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.carousel-btn:hover i {
    color: white;
}

.carousel-btn i {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

#carousel-prev {
    left: 0;
}

#carousel-next {
    right: 0;
}

@media (max-width: 767px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #D0D0D0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-dot:hover {
    background: var(--accent-tan);
}

.carousel-dot.active {
    width: 36px;
    background: rgba(61, 90, 69, 0.3);
}

.carousel-dot .dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-green);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left center;
}

@keyframes progressFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.carousel-dot.active .dot-progress.animating {
    animation: progressFill 5s linear forwards;
}

/* Local Trust Badge */
.local-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 48px auto 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 14px 28px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.local-trust:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.local-trust i {
    color: white;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
}

.cta-after-offer {
    text-align: center;
    padding-top: 24px;
}

/* Glow Button */
.btn-glow {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(232, 90, 60, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(232, 90, 60, 0.55), 0 0 40px rgba(232, 90, 60, 0.2);
    }
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .cta-section {
        padding: 100px 0;
    }
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }
}

.cta-urgency {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-urgency {
        font-size: 18px;
        margin-bottom: 36px;
    }
}

.cta-simple {
    padding: 48px 0;
}

.cta-simple h2 {
    margin-bottom: 24px;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.btn-cta-orange {
    background: var(--cta-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 90, 60, 0.4);
}

.btn-cta-orange:hover {
    background: var(--cta-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 90, 60, 0.5);
}

@media (min-width: 768px) {
    .cta-simple {
        padding: 56px 0;
    }
}

/* Questions Section */
.questions-section {
    background: var(--cream);
    padding: 56px 0;
    text-align: center;
}

.questions-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.questions-section p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .questions-section {
        padding: 72px 0;
    }

    .questions-section h2 {
        font-size: 32px;
    }
}

/* ==================== */
/* FORM SECTION */
/* ==================== */
.form-section {
    background: var(--off-white);
    padding: 80px 0 100px;
}

@media (min-width: 768px) {
    .form-section {
        padding: 100px 0 120px;
    }
}

.form-container {
    max-width: 460px;
    margin: 0 auto;
    background: white;
    padding: 40px 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .form-container {
        padding: 56px 48px;
    }
}

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

.form-icon {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(61, 90, 69, 0.1);
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 12px 0 0 12px;
    user-select: none;
}

.phone-input-wrapper input {
    border-radius: 0 12px 12px 0 !important;
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error-red);
}

.form-group .error-message {
    color: var(--error-red);
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

.form-container .btn {
    margin-top: 12px;
    height: 56px;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-privacy svg {
    color: var(--primary-green);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 56px 0 36px;
    text-align: center;
}

.footer-content {
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.footer-location {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

.footer-contact-info a {
    color: white;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.footer-contact-info a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    font-style: italic;
    opacity: 0.5;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

/* ==================== */
/* STICKY CTA */
/* ==================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    display: none;
}

.sticky-cta.visible {
    display: block;
}


/* Add padding to body when sticky CTA is visible on mobile */
body.sticky-cta-visible {
    padding-bottom: 84px;
}

@media (min-width: 768px) {
    body.sticky-cta-visible {
        padding-bottom: 84px;
    }

    .sticky-cta .btn {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}
