/* ======================================
   MOBILE-FIRST DESIGN FOR COMFORTPEEPS
   ====================================== */

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

:root {
    --primary-blue: #0f57fb;
    --dark-blue: #0a3fbd;
    --light-blue: #f3f7ff;
    --text-dark: #484c50;
    --text-light: #6b7280;
    --white: #ffffff;
    --accent-orange: #ff6b35;
    --success-green: #10b981;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ======================
   CALL NOW BANNER
   ====================== */
.call-banner {
    position: sticky;
    top: 0;
    background: #fbbf24;
    padding: 6px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background 0.3s ease;
}

.call-banner:hover {
    background: #f5b800;
}

.call-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.call-banner-content i {
    color: var(--text-dark);
    font-size: 1.1rem;
    animation: ring 1.5s ease-in-out infinite;
}

.call-banner-text {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

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

/* ======================
   HERO SECTION - MOBILE FIRST
   ====================== */
.hero {
    position: relative;
    background-image: url('images/hero-bg-comfort-peeps.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 20px 0 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.85) 0%, rgba(10, 63, 189, 0.85) 100%);
    z-index: 1;
}

.hero-background {
    display: none;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    margin-bottom: 25px;
}

/* Hero Header with Logo and Badge */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    max-width: 170px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

/* Schedule Badge */
.schedule-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 8.4px;
    border-radius: 6px;
    box-shadow: 0 2.4px 7.2px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schedule-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.schedule-badge * {
    text-decoration: none !important;
}

.badge-icon {
    width: 21.6px;
    height: 21.6px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: var(--white);
    font-size: 0.6rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 1.2px;
}

.badge-label {
    font-size: 0.42rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18px;
    line-height: 1;
}

.badge-phone {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.badge-phone:hover {
    color: var(--dark-blue);
}

/* Call Section & Rating Display */
.call-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.75rem;
}

.rating-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}

.tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-top: 10px;
}

/* Hero Text */
.headline {
    font-size: 1.296rem;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.3;
    padding: 0 8px;
    text-align: left;
}

.headline .highlight {
    color: #fbbf24;
    position: relative;
    display: inline;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 20px;
    line-height: 1.5;
    padding: 0 8px;
    text-align: left;
    font-weight: 500;
    opacity: 0.95;
}

.headline .highlight-families {
    color: #fbbf24;
    display: inline;
}

.subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.6;
    padding: 0 12px;
}

/* Hero Form - Always Visible */
.hero-form {
    margin-top: 20px;
}

/* ======================
   FORM CARD - MOBILE FIRST
   ====================== */
.form-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 450px;
}

.form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 22px;
    text-align: center;
}

.house-size-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.size-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
    min-height: 100px;
}

.size-option:active {
    transform: scale(0.98);
}

.size-option:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.house-icon {
    font-size: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.size-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.size-number {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}

.size-unit {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.get-estimate-btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: #fbbf24;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    text-decoration: none;
    text-align: center;
}

.get-estimate-btn:hover {
    background: #f5b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.get-estimate-btn:active {
    transform: translateY(0);
}

.form-offer {
    margin-top: 16px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px solid #fbbf24;
    display: block;
}

.form-offer-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-offer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.offer-badge-small {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.offer-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.offer-details-small {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
    margin-bottom: 4px;
}

.offer-expires-small {
    font-size: 0.65rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
    margin-top: 4px;
}

/* Form always visible in hero on all devices */

/* ======================
   OFFER BANNER - MOBILE
   ====================== */
.offer-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    padding: 30px 0;
    text-align: center;
    color: var(--white);
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.offer-headline {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
    padding: 0 12px;
}

.offer-details {
    font-size: 1rem;
    margin-bottom: 6px;
    opacity: 0.95;
}

.offer-expires {
    font-size: 0.9rem;
    opacity: 0.9;
}

.offer-expires strong {
    font-weight: 700;
    text-decoration: underline;
}

/* ======================
   SOCIAL PROOF - MOBILE
   ====================== */
.social-proof {
    display: none;
    padding: 50px 0;
    background: var(--white);
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

/* ======================
   BENEFITS - MOBILE
   ====================== */
.benefits {
    padding: 30px 0 45px 0;
    background: var(--light-blue);
}

.section-title {
    font-size: 1.3125rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding: 0 9px;
    line-height: 1.25;
}

.benefits-grid {
    display: grid;
    gap: 15px;
}

.benefit-card {
    background: var(--white);
    padding: 21px;
    border-radius: 9px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.0625rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.benefit-icon i {
    display: block;
}

.benefit-title {
    font-size: 0.975rem;
    color: var(--text-dark);
    margin-bottom: 9px;
    line-height: 1.3;
}

.highlight-number {
    color: var(--primary-blue);
    font-weight: 800;
}

.benefit-description {
    font-size: 0.7125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ======================
   TRUST BADGES - MOBILE
   ====================== */
.trust-badges {
    display: none;
    padding: 50px 0;
    background: var(--white);
}

.badges-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.badge {
    text-align: center;
    padding: 16px;
}

.badge-icon {
    font-size: 2.25rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.badge-icon i {
    display: block;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ======================
   TESTIMONIALS - MOBILE
   ====================== */
.testimonials {
    padding: 30px 0 40px 0;
    background: var(--light-blue);
}

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

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.verified-badge {
    background: #7c3aed;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ======================
   SERVICES - MOBILE
   ====================== */
.services {
    padding: 30px 0 45px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.services-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-content {
    padding: 30px 20px;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3125rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.25;
    text-align: center;
}

.services-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.service-item-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 700;
    line-height: 1.3;
}

.service-item-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.services-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
}

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

/* ======================
   FINAL CTA - MOBILE
   ====================== */
.final-cta {
    padding: 30px 0 40px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--white);
    padding: 0 12px;
    line-height: 1.25;
}

.cta-subheadline {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.final-form {
    margin-bottom: 25px;
}

.form-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.cta-benefit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* ======================
   FOOTER - MOBILE
   ====================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 25px;
}

.footer-content {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

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

.footer-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
}

.footer-brand .tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-info strong {
    color: var(--white);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:active {
    color: var(--primary-blue);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.offer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.5;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover,
.legal-links a:active {
    color: var(--white);
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
}

/* ======================
   TABLET BREAKPOINT (768px+)
   ====================== */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Hero adjustments */
    .hero {
        padding: 60px 0 80px;
    }

    .logo-img {
        max-width: 260px;
    }

    .headline {
        font-size: 2.25rem;
        padding: 0;
    }

    .subheadline {
        font-size: 1.2rem;
        padding: 0;
    }

    .form-card {
        padding: 32px 28px;
    }

    .form-title {
        font-size: 1.65rem;
    }

    .size-option {
        padding: 18px 22px;
        font-size: 1rem;
    }

    .house-icon {
        width: 32px;
        height: 32px;
    }

    /* Stats in 4 columns */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    /* Benefits in 2 columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Testimonials in 2 columns */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Services in 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Badges in 3 columns */
    .badges-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
    }

    .section-title {
        font-size: 2rem;
        padding: 0;
    }

    .offer-headline {
        font-size: 1.75rem;
        padding: 0;
    }

    .cta-headline {
        font-size: 2rem;
        padding: 0;
    }

    .cta-benefits {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .legal-links {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .footer-brand,
    .footer-info {
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 12px;
    }

    .footer-social {
        justify-content: flex-start;
        flex-direction: column;
    }
}

/* ======================
   DESKTOP BREAKPOINT (1024px+)
   ====================== */
@media (min-width: 1024px) {
    /* Hero two-column layout */
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-header {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .rating-stars {
        font-size: 0.95rem;
        gap: 3px;
    }

    .rating-text {
        font-size: 0.85rem;
    }

    .hero-main {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

    .hero-content .headline {
        margin-top: 0;
        text-align: left;
    }

    .logo {
        margin-bottom: 0;
    }

    .logo-img {
        max-width: 240px;
    }

    .tagline {
        text-align: left;
        font-size: 1.1rem;
    }

    .headline {
        font-size: 2.5rem;
        padding: 0;
    }

    .subheadline {
        font-size: 1.2rem;
        padding: 0;
    }

    .hero-subheadline {
        font-size: 1.3rem;
        padding: 0;
        margin-top: 24px;
    }

    /* Sticky form on desktop */
    .hero-form {
        position: sticky;
        top: 20px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-card {
        padding: 35px;
        max-width: 500px;
    }

    .form-offer {
        margin-top: 0;
        max-width: 500px;
    }

    .form-title {
        font-size: 1.75rem;
    }

    /* Benefits in 2 columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Testimonials in 3 columns */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Services side-by-side layout */
    .services {
        padding: 60px 0;
    }

    .services-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .services-content {
        padding: 50px 45px;
    }

    .services-title {
        font-size: 2rem;
        text-align: left;
    }

    .services-subtitle {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 35px;
    }

    .services-list {
        gap: 22px;
    }

    .service-item {
        gap: 15px;
    }

    .service-item-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .service-item-text h3 {
        font-size: 1.15rem;
    }

    .service-item-text p {
        font-size: 0.95rem;
    }

    .services-image {
        height: 100%;
        min-height: 550px;
    }

    .services-image .service-photo {
        object-position: left center;
    }

    /* Services in 3 columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Final CTA section - side by side layout */
    .cta-content {
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        text-align: left;
    }

    .cta-headline,
    .cta-subheadline {
        text-align: left;
    }

    .final-form {
        margin-bottom: 0;
    }

    .cta-benefits {
        margin-top: 0;
        justify-content: flex-start;
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .offer-headline {
        font-size: 2rem;
    }

    .cta-headline {
        font-size: 2.5rem;
    }

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

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

    .badge:hover {
        transform: scale(1.05);
    }
}

/* ======================
   LARGE DESKTOP (1200px+)
   ====================== */
@media (min-width: 1200px) {
    .stat-number {
        font-size: 3rem;
    }

    .headline {
        font-size: 2.75rem;
    }

    .logo-img {
        max-width: 320px;
    }
}
