:root {
    --ct-teal: #14897e;
    --ct-teal-dark: #0f7268;
    --ct-navy: #1b3a5b;
    --ct-text: #5b6b7b;
    --ct-muted: #98a3af;
    --ct-cream: #faf9f5;
    --ct-card-border: #edefec;
    --ct-input-border: #e2e6e3;
}

.ct-page {
    background-color: var(--ct-cream);
    padding: 48px 24px 56px;
    border-radius: 18px;
}

/* Header */
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ct-teal);
    font-weight: 600;
    font-size: 1rem;
}

.ct-title {
    color: var(--ct-navy);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin: 8px 0 12px;
    letter-spacing: -0.5px;
}

.ct-subtitle {
    color: var(--ct-text);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.ct-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 22px 0 6px;
}

.ct-divider .ct-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ct-teal));
}

.ct-divider .ct-line:last-child {
    background: linear-gradient(90deg, var(--ct-teal), transparent);
}

/* Illustration */
.ct-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ct-illustration svg,
.ct-illustration img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* Contact info cards */
.ct-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--ct-card-border);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 22px rgba(27, 58, 91, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ct-info-card + .ct-info-card {
    margin-top: 18px;
}

.ct-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 58, 91, 0.08);
}

.ct-info-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-info-icon.teal   { background: #dcefeb; color: #14897e; }
.ct-info-icon.purple { background: #efe9fb; color: #8b6ee0; }
.ct-info-icon.coral  { background: #fce7e1; color: #e07a5f; }

.ct-info-title {
    color: var(--ct-navy);
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 3px;
}

.ct-info-value {
    color: var(--ct-text);
    font-size: 0.96rem;
    margin: 0;
}

/* Form card */
.ct-form-card {
    background: #ffffff;
    border: 1px solid var(--ct-card-border);
    border-radius: 16px;
    padding: 30px 32px;
    box-shadow: 0 8px 22px rgba(27, 58, 91, 0.04);
    margin-top: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.ct-label {
    display: block;
    color: var(--ct-navy);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.ct-input,
.ct-textarea {
    width: 100%;
    border: 1px solid var(--ct-input-border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.96rem;
    color: var(--ct-navy);
    background: #fdfdfc;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ct-input::placeholder,
.ct-textarea::placeholder { color: var(--ct-muted); }

.ct-input:focus,
.ct-textarea:focus {
    outline: none;
    border-color: var(--ct-teal);
    box-shadow: 0 0 0 3px rgba(20, 137, 126, 0.12);
}

.ct-textarea {
    min-height: 120px;
    resize: vertical;
}

.ct-field { margin-bottom: 18px; }

.ct-send {
    width: 100%;
    background: var(--ct-teal);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 1.02rem;
    cursor: pointer;
    transition: background 0.18s ease;
}

.ct-send:hover { background: var(--ct-teal-dark); }

/* Bottom banner */
.ct-banner {
    max-width: 620px;
    margin: 26px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, #f4faf8, #eef7f4);
    border: 1px solid #dcece7;
    border-radius: 12px;
    padding: 16px 24px;
}

.ct-banner-icon { color: var(--ct-teal); flex: 0 0 auto; }

.ct-banner-text {
    color: var(--ct-navy);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
}
