/* ── CTA Sections ──────────────────────────── */
.cta-section {
    position: relative;
    padding: 7rem 0;
}

.cta-mid {
    background: linear-gradient(to bottom, var(--bg-color), rgba(20,20,26,0.9), var(--bg-color));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-mid .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Contact Box ───────────────────────────── */
.container-sm { max-width: 780px; }

.cta-box {
    background: rgba(12, 12, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 4rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60%; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 79, 0, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-box .section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 0.75rem;
}

/* ── Contact Form ──────────────────────────── */
.contact-form { margin-top: 2.5rem; }

.contact-form .form-group { margin-bottom: 1.25rem; }

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: rgba(255, 79, 0, 0.5);
    background: rgba(255, 79, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 79, 0, 0.08);
}

.contact-form select.form-control option {
    background: #111;
    color: #fff;
}

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

/* ── Testimonials Marquee ──────────────────── */
.testimonials-section {
    padding: 7rem 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.2;
}

.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
}

.testimonial-card {
    background: rgba(16, 16, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.25rem;
    position: relative;
    width: 400px;
    flex-shrink: 0;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 79, 0, 0.35);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.client-info {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
}

.client-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Btn sizes ──────────────────────────────── */
.btn-lg { padding: 1rem 2.75rem; font-size: 1.05rem; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .cta-box { padding: 2.5rem 1.75rem; }
    .testimonial-card { width: 320px; padding: 1.75rem; }
}

@media (max-width: 480px) {
    .cta-box { padding: 2rem 1.25rem; border-radius: 20px; }
}
