/* ══════════════════════════════════════════
   getInTouch.css — Get In Touch Page Styles
   Mirrors the design language of home.css
   and whoWeAre.css.

   Sections:
   1. Hero
   2. Alert Banners
   3. Contact Section Layout
   4. Left Panel — Form
   5. Form Fields
   6. Right Panel — Removed
   7. Info Strip
   8. Scroll Reveal
   9. Responsive
══════════════════════════════════════════ */


/* ══════════════════════════════════════════
   1. HERO
   Full-viewport parallax banner using the
   contact page image as background
══════════════════════════════════════════ */
.git-hero {
    min-height: 100vh;
    background-image: url('../images/img-getInTouch.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark gradient overlay */
.git-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(9, 14, 18, 0.85) 0%,
        rgba(9, 14, 18, 0.55) 50%,
        rgba(9, 14, 18, 0.92) 100%
    );
}

/* Decorative teal glow bottom-left */
.git-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.git-hero .container {
    position: relative;
    z-index: 1;
}

/* ── Eyebrow label ── */
.git-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.git-hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--teal);
}

/* ── Heading ── */
.git-hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 680px;
    margin: 0 0 22px;
}

.git-hero h1 em {
    font-style: normal;
    color: var(--teal);
}

/* ── Subtitle ── */
.git-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.58);
    max-width: 500px;
    line-height: 1.75;
    margin: 0;
}


/* ══════════════════════════════════════════
   2. ALERT BANNERS
   Success / error feedback shown between
   the hero and contact section
══════════════════════════════════════════ */
.git-alert {
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

.git-alert-success {
    background: rgba(0, 176, 240, 0.08);
    color: var(--teal);
    border-bottom: 2px solid var(--teal);
}

.git-alert-danger {
    background: rgba(220, 53, 69, 0.07);
    color: #c0392b;
    border-bottom: 2px solid rgba(220, 53, 69, 0.25);
}


/* ══════════════════════════════════════════
   3. CONTACT SECTION LAYOUT
   Two-column split: form left, image right
══════════════════════════════════════════ */
.git-section {
    background: #fff;
}

.git-section > .container-fluid {
    padding: 0;
}

.git-section .row {
    min-height: 100vh;
}


/* ══════════════════════════════════════════
   4. LEFT PANEL — FORM
══════════════════════════════════════════ */
.git-left {
    padding: 72px 64px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.git-form-wrap {
    width: 100%;
    max-width: 700px;
}

/* ── Section eyebrow label ── */
.git-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.git-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--teal);
}

/* ── Heading ── */
.git-form-wrap h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark2);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 12px;
}

.git-form-wrap h2 em {
    font-style: normal;
    color: var(--teal);
}

/* ── Intro paragraph ── */
.git-intro {
    font-size: 0.97rem;
    color: #4a6070;
    line-height: 1.75;
    margin-bottom: 40px;
}


/* ══════════════════════════════════════════
   5. FORM FIELDS
   Underline inputs with animated teal focus line
══════════════════════════════════════════ */
.git-form {
    display: flex;
    flex-direction: column;
}

.git-field {
    position: relative;
    margin-bottom: 30px;
}

.git-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(18, 44, 52, 0.18);
    border-radius: 0;
    color: var(--dark2);
    padding: 10px 0;
    box-shadow: none;
    font-size: 0.93rem;
    font-family: var(--font-body);
    width: 100%;
    transition: border-color 0.25s ease;
}

.git-form .form-control::placeholder {
    color: #9aa0b3;
    font-size: 0.88rem;
}

.git-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--teal);
}

/* Animated teal underline on focus */
.git-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
    pointer-events: none;
}

.git-field:focus-within::after {
    width: 100%;
}

.git-form textarea.form-control {
    resize: none;
    min-height: 110px;
    line-height: 1.7;
}

/* ── Two-column name + email row ── */
.git-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.git-row .git-field {
    margin-bottom: 30px;
}

/* ── reCAPTCHA note ── */
.git-recaptcha-note {
    font-size: 0.72rem;
    color: #9aa0b3;
    margin-top: -10px;
    margin-bottom: 22px;
    line-height: 1.55;
}

.git-recaptcha-note a {
    color: var(--teal);
    text-decoration: none;
}

.git-recaptcha-note a:hover {
    text-decoration: underline;
}


/* ── Enquiry Type Radio Group ── */
.git-enquiry-label {
    font-size: 0.82rem;
    color: #4a6070;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.git-enquiry-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.git-enquiry-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid rgba(18, 44, 52, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.85rem;
    color: #4a6070;
    font-weight: 500;
    user-select: none;
}

.git-enquiry-option:hover {
    border-color: var(--teal);
    background: rgba(0, 176, 240, 0.04);
}

.git-enquiry-option input[type="radio"] {
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.git-enquiry-option:has(input:checked) {
    border-color: var(--teal);
    background: rgba(0, 176, 240, 0.07);
    color: var(--dark2);
}


/* ── Submit Button ── */
.git-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.git-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 2px solid var(--teal);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.git-btn:hover {
    background: transparent;
    color: var(--teal);
    transform: translateY(-2px);
}

.git-btn i {
    transition: transform 0.2s;
}

.git-btn:hover i {
    transform: translateX(4px);
}

.git-privacy-note {
    font-size: 0.74rem;
    color: #9aa0b3;
    line-height: 1.5;
    max-width: 220px;
    margin: 0;
}

.git-privacy-note i {
    color: var(--teal);
    margin-right: 4px;
}


/* ══════════════════════════════════════════
   6. RIGHT PANEL — REMOVED
══════════════════════════════════════════ */


/* ══════════════════════════════════════════
   7. INFO STRIP
   Dark bottom band with three highlights
══════════════════════════════════════════ */
.git-strip {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.git-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.git-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    position: relative;
}

.git-strip-item + .git-strip-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border);
}

.git-strip-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 176, 240, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.git-strip-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.git-strip-text span {
    font-size: 0.77rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════
   8. SCROLL REVEAL
   CSS sets hidden state; JS adds .sr-visible
══════════════════════════════════════════ */
.js .git-hero .git-hero-eyebrow,
.js .git-hero h1,
.js .git-hero .git-hero-sub {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity   0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .git-left,
.js .git-strip {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity   0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .git-hero h1       { transition-delay: 100ms; }
.js .git-hero .git-hero-sub { transition-delay: 180ms; }
.git-strip-item:nth-child(2) { transition-delay: 80ms;  }
.git-strip-item:nth-child(3) { transition-delay: 160ms; }

.git-hero.sr-visible .git-hero-eyebrow,
.git-hero.sr-visible h1,
.git-hero.sr-visible .git-hero-sub,
.git-left.sr-visible,
.git-strip.sr-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════════
   9. RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {

    .git-left {
        padding: 56px 32px;
    }

    .git-strip-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .git-strip-item + .git-strip-item::before {
        display: none;
    }

    .git-strip-item {
        padding: 0 16px;
    }

}

@media (max-width: 600px) {

    .git-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .git-left {
        padding: 44px 20px;
    }

    .git-hero {
        min-height: 50vh;
    }

    .git-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .git-privacy-note {
        max-width: 100%;
    }

}