/* =========================
   ABOUT-CTA.CSS – FULLY RESPONSIVE
   Purple background, green card, centered content
   Buttons wrap, padding adjusts on mobile
========================= */

.about-cta {
    width: 100%;
    padding: 80px 0;
    background: #1e1029;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    box-sizing: border-box;
}

/* CTA Box – green‑tinted card, responsive padding */
.cta-box {
    background: rgba(10, 31, 26, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: clamp(40px, 8vw, 60px) clamp(24px, 6vw, 48px);
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(74, 222, 128, 0.15);
    border-color: rgba(192, 132, 252, 0.5);
}

.cta-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    font-weight: 700;
    color: #e2d6f0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    color: #d1e0d6;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* BUTTONS – responsive */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary button (purple) – responsive padding */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: #c084fc;
    color: #0a1f1a;
    border: 2px solid #c084fc;
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.3);
}

.btn-primary:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

/* Secondary button (green outline) */
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: transparent;
    color: #4ade80;
    border: 2px solid #4ade80;
}

.btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (≤ 900px): reduce CTA box padding slightly */
@media (max-width: 900px) {
    .about-cta {
        padding: 60px 0;
    }
    .cta-content h2 {
        margin-bottom: 16px;
    }
    .cta-content p {
        margin-bottom: 28px;
    }
}

/* Mobile (≤ 768px): stack buttons, smaller gaps */
@media (max-width: 768px) {
    .cta-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 200px;
        text-align: center;
    }
    .cta-content p {
        margin-bottom: 24px;
    }
}

/* Small phones (≤ 480px): tighter CTA box padding, smaller buttons */
@media (max-width: 480px) {
    .about-cta {
        padding: 50px 0;
    }
    .cta-box {
        padding: 32px 20px;
    }
    .cta-content h2 {
        margin-bottom: 12px;
    }
    .cta-content p {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 180px;
    }
}

/* Very narrow (≤ 360px) */
@media (max-width: 360px) {
    .cta-box {
        padding: 24px 16px;
    }
    .cta-content h2 {
        font-size: 1.4rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 160px;
    }
}