/* ============================================================
   technomed Contact Page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;700&display=swap');

.ctc {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    font-family: 'Noto Sans', 'Roboto', sans-serif;
    color: #0F172A;
    scroll-behavior: smooth;
}
.ctc *, .ctc *::before, .ctc *::after { box-sizing: border-box; }

/* ---- FOCUS VISIBLE (a11y) ---- */
.ctc a:focus-visible,
.ctc button:focus-visible,
.ctc [tabindex]:focus-visible {
    outline: 3px solid var(--matblue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---- REVEAL ---- */
.ctc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ctc-reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .ctc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ================================================================
   HERO
   ================================================================ */
.ctc-hero {
    background: linear-gradient(135deg, #0a1929 0%, #0d2137 50%, #0a1929 100%);
    padding: 44px 16px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ctc-hero::before {
    content: '';
    position: absolute; top: -50%; left: -20%; width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(3,169,244,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ctc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.ctc-hero-title {
    font-family: 'Figtree', 'Noto Sans', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.ctc-hero-title strong { font-weight: 700; }

.ctc-hero-sub {
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0;
}


/* ================================================================
   MAIN CONTENT — 2-column
   ================================================================ */
.ctc-main {
    padding: 40px 16px 56px;
    background: #f7f8fc;
}

.ctc-main-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

/* ── Form Card ── */
.ctc-form-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    padding: 32px;
}

.ctc-form-heading {
    font-family: 'Figtree', 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px;
}

.ctc-form-sub {
    font-size: 13px;
    color: #64748B;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Submit button container */
.ctc-submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

/* ── Info Sidebar ── */
.ctc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctc-sidebar-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    padding: 24px;
}

.ctc-sidebar-heading {
    font-family: 'Figtree', 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ctc-sidebar-heading svg {
    width: 18px; height: 18px;
    fill: var(--matblue);
    flex-shrink: 0;
}

/* Contact item rows */
.ctc-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: #0F172A;
}
.ctc-contact-item + .ctc-contact-item { border-top: 1px solid #f4f5f7; }

.ctc-contact-item svg {
    width: 16px; height: 16px;
    fill: #64748B;
    flex-shrink: 0;
}

.ctc-contact-item a {
    color: var(--matblue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.ctc-contact-item a:hover { color: #0295d6; }

/* Hours mini-table */
.ctc-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 3px 0;
    color: #475569;
}
.ctc-hours-row + .ctc-hours-row { border-top: 1px solid #f8f9fb; }

/* Response time badge */
.ctc-response-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(3,169,244,0.06);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #0F172A;
    line-height: 1.4;
}
.ctc-response-badge svg {
    width: 20px; height: 20px;
    fill: var(--matblue);
    flex-shrink: 0;
}
.ctc-response-badge strong {
    font-weight: 700;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .ctc-main-inner {
        grid-template-columns: 1fr;
    }
    .ctc-hero { padding: 32px 16px 28px; }
    .ctc-form-card { padding: 24px 18px; }
}
