/* ==========================================
   WOOD'S WASTE - PREMIUM CSS
   ========================================== */

:root {
    --primary: #1a1a1a;
    --secondary: #0ea854;
    --accent: #ffffff;
    --text-light: #666666;
    --border: #e5e5e5;
    --success: #10b981;
    --warning: #f59e0b;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

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

body {
    font-family: var(--font-body);
    color: var(--primary);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    animation: slideDown 0.6s var(--transition);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    transition: transform 0.3s var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s var(--transition);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s var(--transition);
    margin-left: 20px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 168, 84, 0.25);
}

.desktop-cta {
    display: inline-block;
}

.mobile-cta {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s var(--transition);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 168, 84, 0.3);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 40px 40px;
    background: #ffffff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 168, 84, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.2), transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.gradient-lines {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(14, 168, 84, 0.05) 50%, transparent 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s var(--transition) 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .line {
    display: block;
    animation: slideUp 0.7s var(--transition-slow) backwards;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary), #0d9e4f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--secondary), #0d9e4f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.8s var(--transition) 0.4s both;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
    max-width: 180px;
}

.card-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    right: 60px;
    animation-delay: 2s;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.floating-card p {
    font-weight: 600;
    font-size: 14px;
}

.hero-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), #0d9e4f);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    animation: morph 15s ease-in-out infinite;
    top: 50px;
    right: -100px;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 70% 30% 66% 34% / 66% 33% 67% 33%;
    }
    50% {
        border-radius: 34% 66% 66% 34% / 66% 34% 33% 67%;
    }
    75% {
        border-radius: 66% 34% 34% 66% / 33% 66% 66% 34%;
    }
}

/* ==========================================
   PROMO BANNER
   ========================================== */

.promo-banner {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary), #2a2a2a);
    color: white;
    overflow: hidden;
    text-align: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(14, 168, 84, 0.2), transparent);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.promo-banner h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s var(--transition) 0.2s both;
}

.promo-banner p {
    font-size: 20px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--transition) 0.3s both;
}

.promo-highlight {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    color: var(--secondary);
}

.promo-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    transition: all 0.3s var(--transition);
    animation: fadeInUp 0.8s var(--transition) 0.4s both;
}

.promo-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 100px 40px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s var(--transition) both;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 900;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition);
    animation: fadeInUp 0.8s var(--transition) backwards;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 168, 84, 0.15);
    border-color: var(--secondary);
}

.service-hover-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}

.service-card:hover .service-hover-effect {
    opacity: 0.15;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 100px 40px;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 900;
    animation: fadeInUp 0.8s var(--transition) both;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--transition) 0.1s both;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    animation: fadeInUp 0.8s var(--transition) 0.2s both;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
}

.value-item h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    margin: 0;
}

.about-visual {
    animation: fadeInUp 0.8s var(--transition) 0.3s both;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), transparent);
    opacity: 0.1;
    z-index: 2;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e5e5, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8f9fa, white);
}

.process-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.8s var(--transition) backwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }

.step-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    font-size: 15px;
}

.step-connector {
    position: absolute;
    left: 47px;
    top: 80px;
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, var(--secondary), transparent);
    border-radius: 3px;
    display: none;
}

.process-step:not(:last-child) .step-connector {
    display: block;
}

/* ==========================================
   FORM SECTION
   ========================================== */

.quote-section {
    padding: 100px 40px;
    background: white;
}

.quote-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s var(--transition) both;
}

.quote-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 900;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--transition) 0.2s both;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--transition);
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(14, 168, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    position: relative;
    padding: 100px 40px;
    background: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 168, 84, 0.3), transparent);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s var(--transition) both;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 900;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary);
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s var(--transition);
}

.footer-section a:hover {
    color: var(--secondary);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 56px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .promo-banner h2 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: 0;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: left;
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li a {
        display: block;
        padding: 16px 20px;
        transition: all 0.3s var(--transition);
    }

    .nav-links li a:hover {
        background: rgba(14, 168, 84, 0.1);
        padding-left: 30px;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-cta {
        display: block !important;
        margin: 20px;
        text-align: center;
    }

    .desktop-cta {
        display: none !important;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        height: 300px;
    }

    .hero-visual {
        display: none;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .services {
        padding: 60px 20px;
    }

    .about {
        padding: 60px 20px;
    }

    .process {
        padding: 60px 20px;
    }

    .quote-section {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }
}
