/* =========================================================
   CONTACT US — Shyam Sarthi Travels
   Design concept: "Control Desk"
   Same highway/GPS-dashboard language as About & Services —
   condensed signage type for headlines, a mono "readout" face
   for coordinates/labels, and a departures-style info panel
   for phone, email, address and the enquiry form.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
    --ct-navy-deep: #04101f;
    --ct-navy: #0a2147;
    --ct-navy-mid: #163461;
    --ct-gold: #e3a63e;
    --ct-gold-pale: #f6dca3;
    --ct-mist: #eef2f8;
    --ct-ink: #0e1a2e;
    --ct-ink-soft: #55617a;
    --ct-line: rgba(10, 33, 71, 0.14);
    --ct-radius: 18px;

    --ct-font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
    --ct-font-body: 'Inter', -apple-system, sans-serif;
    --ct-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

.ct-hero,
.ct-contact,
.ct-map-section,
.ct-why,
.ct-faq {
    font-family: var(--ct-font-body);
}

.ct-eyebrow {
    display: inline-block;
    font-family: var(--ct-font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ct-gold);
    margin-bottom: 14px;
}

/* ================= HERO ================= */

.ct-hero {
    position: relative;
    background: var(--ct-navy-deep);
    padding: 150px 0 100px;
    overflow: hidden;
    color: #fff;
}

.ct-hero-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ct-hero-route-path {
    stroke: var(--ct-gold);
    stroke-width: 2.5;
    stroke-dasharray: 10 10;
    opacity: 0.55;
    stroke-dashoffset: 1400;
    animation: ct-draw-route 2.6s ease-out 0.2s forwards;
}

.ct-hero-route-dot {
    fill: var(--ct-gold);
    opacity: 0;
    animation: ct-fade-in 0.6s ease-out forwards;
}

.dot-start { animation-delay: 0.2s; }
.dot-end { animation-delay: 2.6s; }

@keyframes ct-draw-route {
    to { stroke-dashoffset: 0; }
}

@keyframes ct-fade-in {
    to { opacity: 1; }
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ct-font-mono);
    font-size: 0.8rem;
    color: #8b98b3;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ct-breadcrumb a {
    color: var(--ct-gold-pale);
    text-decoration: none;
}

.ct-breadcrumb a:hover,
.ct-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.ct-breadcrumb .is-current {
    color: #fff;
}

.ct-hero-coords {
    display: inline-block;
    font-family: var(--ct-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--ct-gold-pale);
    border: 1px solid rgba(227, 166, 62, 0.4);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 26px;
}

.ct-hero-title {
    font-family: var(--ct-font-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.005em;
    margin: 0 0 24px;
    color: #fff;
}

.ct-hero-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #c3ccdb;
    max-width: 560px;
    margin: 0 0 28px;
}

.ct-hero-badge {
    display: inline-block;
    font-family: var(--ct-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ct-navy-deep);
    background: var(--ct-gold);
    padding: 10px 18px;
    border-radius: 999px;
}

/* ================= CONTACT INFO + FORM ================= */

.ct-contact {
    background: #fff;
    padding: 90px 0;
    border-bottom: 1px solid var(--ct-line);
}

.ct-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.ct-info-card,
.ct-form-card {
    background: #fff;
    border: 1px solid var(--ct-line);
    border-radius: var(--ct-radius);
    padding: 40px;
    box-shadow: 0 20px 44px rgba(10, 33, 71, 0.08);
}

.ct-info-card h2,
.ct-form-card h2 {
    font-family: var(--ct-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--ct-navy);
    margin: 0 0 14px;
    line-height: 1.15;
}

.ct-info-lede,
.ct-form-lede {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ct-ink-soft);
    margin: 0 0 28px;
}

.ct-info-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ct-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--ct-line);
}

.ct-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ct-info-label {
    font-family: var(--ct-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ct-gold);
}

.ct-info-item a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ct-navy);
    text-decoration: none;
}

.ct-info-item a:hover,
.ct-info-item a:focus-visible {
    color: var(--ct-gold);
    text-decoration: underline;
}

.ct-info-item span {
    font-size: 0.98rem;
    color: var(--ct-ink-soft);
}

.ct-address {
    font-style: normal;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ct-ink-soft);
}

.ct-service-areas-wrapper h3 {
    font-family: var(--ct-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    color: var(--ct-navy);
    margin: 0 0 14px;
}

.ct-service-areas-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-service-areas-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--ct-ink-soft);
}

.ct-service-areas-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ct-gold);
}

/* ---- Form ---- */

.ct-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-form-row-full {
    grid-column: 1 / -1;
}

.ct-form label {
    font-family: var(--ct-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ct-navy);
}

.ct-form input,
.ct-form select,
.ct-form textarea {
    font-family: var(--ct-font-body);
    font-size: 0.96rem;
    color: var(--ct-ink);
    background: var(--ct-mist);
    border: 1px solid var(--ct-line);
    border-radius: 10px;
    padding: 13px 16px;
    width: 100%;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ct-form textarea {
    resize: vertical;
    min-height: 96px;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--ct-gold);
    background: #fff;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #9aa4b8;
}

.ct-form button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
    border: none;
    cursor: pointer;
}

/* ================= MAP ================= */

.ct-map-section {
    background: var(--ct-mist);
    padding: 0 0 90px;
}

.ct-map-card {
    border-radius: var(--ct-radius);
    overflow: hidden;
    border: 1px solid var(--ct-line);
    box-shadow: 0 20px 44px rgba(10, 33, 71, 0.08);
}

.ct-map-card .map-container {
    width: 100%;
    aspect-ratio: 16 / 6;
    min-height: 280px;
    background: var(--ct-navy);
    background-image:
        linear-gradient(rgba(227, 166, 62, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 166, 62, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ================= WHY CONTACT US DIRECTLY ================= */

.ct-why {
    background: #fff;
    padding: 90px 0;
    border-bottom: 1px solid var(--ct-line);
}

.ct-why-inner {
    max-width: 780px;
}

.ct-why h2 {
    font-family: var(--ct-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ct-navy);
    margin: 0 0 20px;
    line-height: 1.2;
}

.ct-why p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ct-ink-soft);
    margin: 0 0 18px;
}

.ct-why p:last-child {
    margin-bottom: 0;
}

/* ================= FAQ ================= */

.ct-faq {
    background: var(--ct-navy);
    padding: 80px 0;
}

.ct-faq-inner {
    max-width: 820px;
}

.ct-faq .ct-eyebrow {
    color: var(--ct-gold-pale);
}

.ct-faq h2 {
    font-family: var(--ct-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 0 32px;
    line-height: 1.2;
}

.ct-faq-list {
    display: flex;
    flex-direction: column;
}

.ct-faq-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-faq-item:first-child {
    padding-top: 0;
}

.ct-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-faq-item h3 {
    font-family: var(--ct-font-body);
    font-weight: 600;
    font-size: 1.02rem;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}

.ct-faq-item p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: #c3ccdb;
    margin: 0;
}

/* ================= FOCUS STATES ================= */

.ct-hero a:focus-visible,
.ct-info-item a:focus-visible,
.ct-form input:focus-visible,
.ct-form select:focus-visible,
.ct-form textarea:focus-visible {
    outline: 2px solid var(--ct-gold);
    outline-offset: 2px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {

    .ct-contact-grid {
        grid-template-columns: 1fr;
    }

    .ct-form {
        grid-template-columns: 1fr;
    }

    .ct-form-row-full {
        grid-column: 1;
    }

}

@media (max-width: 640px) {

    .ct-hero {
        padding: 120px 0 76px;
    }

    .ct-contact {
        padding: 64px 0;
    }

    .ct-info-card,
    .ct-form-card {
        padding: 28px 22px;
    }

    .ct-map-section {
        padding-bottom: 64px;
    }

    .ct-why {
        padding: 64px 0;
    }

    .ct-faq {
        padding: 64px 0;
    }

}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    .ct-hero-route-path,
    .ct-hero-route-dot {
        animation: none !important;
        opacity: 0.55;
        stroke-dashoffset: 0;
    }

    .dot-start,
    .dot-end {
        opacity: 1;
    }

    .ct-form input,
    .ct-form select,
    .ct-form textarea {
        transition: none;
    }

}