:root {
    --brand: #00468E;
    --brand-dark: #003366;
    --brand-light: #E8F0FE;
    --white: #ffffff;
    --text-muted: #6b7280;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/* ── Hero ── */
.ct-hero {
    background: linear-gradient(135deg, var(--brand-light) 0%, #dce6f5 100%);
    padding: 4rem 0 3.5rem;
}

.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--brand);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.ct-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ct-hero-title span {
    color: var(--brand);
}

.ct-hero-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Quick Action Cards ── */
.ct-actions {
    padding: 3rem 0;
    background: var(--white);
}

.ct-action-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

a.ct-action-card {
    color: inherit;
}

a.ct-action-card:hover {
    color: inherit;
}

.ct-action-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.ct-action-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ct-action-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a1a2e;
    margin-bottom: 0.1rem;
}

.ct-action-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Form Section ── */
.ct-form-section {
    padding: 4rem 0;
    background: #fafbfc;
}

.ct-form-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ct-form-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(0, 70, 142, 0.06);
}

.ct-form-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ct-form-body {
    padding: 1.75rem;
}

.ct-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.35rem;
    display: block;
}

.ct-label span {
    color: #c0392b;
}

.ct-input {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ct-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 70, 142, 0.1);
}

.ct-input::placeholder {
    color: #b0b6c0;
}

textarea.ct-input {
    resize: vertical;
}

.ct-submit-btn {
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background 0.2s;
}

.ct-submit-btn:hover {
    background: var(--brand-dark);
    color: var(--white);
}

/* ── Contact Info Cards ── */
.ct-info-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.ct-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ct-info-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.ct-info-value {
    font-size: 0.88rem;
    color: #374151;
    margin-bottom: 0.15rem;
    line-height: 1.5;
}

.ct-info-card small {
    font-size: 0.75rem;
}

/* Social Card */
.ct-social-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.ct-social-links {
    display: flex;
    gap: 0.6rem;
}

.ct-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ct-social-link:hover {
    background: var(--brand);
    color: var(--white);
}

/* ── Map ── */
.ct-map {
    padding: 4rem 0;
    background: var(--white);
}

.ct-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 70, 142, 0.06);
}

/* ── FAQ ── */
.ct-faq {
    padding: 4rem 0 5rem;
    background: #fafbfc;
}

.ct-faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.ct-faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.ct-faq-item {
    border: 1px solid rgba(0, 70, 142, 0.06) !important;
    border-radius: 12px !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
    background: var(--white);
}

.ct-faq-btn {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    padding: 1rem 1.25rem;
    background: var(--white);
    box-shadow: none !important;
}

.ct-faq-btn:not(.collapsed) {
    color: var(--brand);
    background: var(--white);
}

.ct-faq-btn::after {
    filter: none;
    color: var(--brand);
}

.ct-faq-answer {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.7;
    padding-top: 0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .ct-hero-title {
        font-size: 2rem;
    }

    .ct-faq-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .ct-hero {
        padding: 3rem 0 2.5rem;
    }

    .ct-hero-title {
        font-size: 1.6rem;
    }

    .ct-actions,
    .ct-form-section,
    .ct-map,
    .ct-faq {
        padding: 2.5rem 0;
    }

    .ct-form-body {
        padding: 1.25rem;
    }

    .ct-action-card {
        padding: 1rem 0.75rem;
        gap: 0.6rem;
    }

    .ct-faq-title {
        font-size: 1.4rem;
    }
}
