/* ============================================================
   Get In Touch — Modern Section Styles
  Brand: Midnight (#1c1c2e) + Champagne Gold (#C4963A)
   ============================================================ */

/* ── Section wrapper ── */
.git-modern-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f2 0%, #faf7f0 100%);
    overflow: hidden;
}

/* ── Two-column layout ── */
.git-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ============================================================
   LEFT SIDE — Info Panel
   ============================================================ */
.git-info-side {
    padding: 16px 0;
}

.git-info-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Badge */
.git-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 60, 52, 0.1);
    color: #1c1c2e;
    border: 1px solid rgba(26, 60, 52, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    text-transform: uppercase;
}

.git-badge i {
    color: #C4963A;
    font-size: 0.85rem;
}

/* Main title */
.git-main-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.2;
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.git-title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C4963A, #e8b84b);
    border-radius: 2px;
    margin-top: 12px;
}

/* Subtitle */
.git-subtitle {
    color: #5a6a66;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Contact Cards ── */
.git-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.git-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(26, 60, 52, 0.08);
    border-left: 4px solid #C4963A;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.git-contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(26, 60, 52, 0.14);
}

.git-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #1c1c2e, #2e2e42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4963A;
    font-size: 1rem;
}

.git-card-content h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1c1c2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
}

.git-card-content a,
.git-card-content p {
    color: #3a5a52;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.git-card-content a:hover {
    color: #C4963A;
}

/* ── Feature checklist ── */
.git-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.git-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3a5a52;
    font-size: 0.95rem;
}

.git-feature-item i {
    color: #C4963A;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================
   RIGHT SIDE — Form Panel
   ============================================================ */
.git-form-side {
    /* intentionally no extra padding — form card handles it */
}

.git-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 36px 32px;
    box-shadow: 0 8px 40px rgba(26, 60, 52, 0.12);
    border-top: 4px solid #C4963A;
    position: relative;
    overflow: hidden;
}

.git-form-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(196, 150, 58, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Form header */
.git-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.git-form-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1c1c2e, #2e2e42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4963A;
    font-size: 1.25rem;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.25);
}

.git-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c1c2e;
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.git-form-header p {
    color: #7a8c88;
    font-size: 0.875rem;
    margin: 0;
}

/* ── Alert ── */
.git-alert {
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.git-alert.success {
    background: rgba(26, 60, 52, 0.08);
    border-color: rgba(26, 60, 52, 0.2);
    color: #1c1c2e;
}

.git-alert.error {
    background: rgba(220, 53, 69, 0.06);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* ── Form layout ── */
.git-modern-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.git-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.git-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ── Input wrapper (icon + input + floating label) ── */
.git-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.git-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8aa59f;
    font-size: 0.875rem;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 1;
}

/* Icon for textarea — align to top */
.git-textarea-icon {
    top: 16px;
    transform: none;
}

.git-form-control {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border: 1.5px solid #d8e4e0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #2C2C2C;
    background: #fafcfb;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.git-form-control::placeholder {
    color: #b0c0bc;
    font-size: 0.875rem;
}

.git-form-control:focus {
    border-color: #1c1c2e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.08);
}

.git-form-control:focus + .git-floating-label,
.git-input-wrapper:focus-within .git-input-icon {
    color: #1c1c2e;
}

/* Floating label (hidden visually — placeholder serves as label) */
.git-floating-label {
    display: none;
}

/* Textarea */
.git-textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 14px;
    align-items: flex-start;
}

/* ── Captcha ── */
.git-captcha-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.git-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1c1c2e;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.git-captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.git-captcha-image-box {
    flex-shrink: 0;
    background: #f0f4f2;
    border-radius: 10px;
    padding: 4px 8px;
    border: 1.5px solid #d8e4e0;
}

.git-captcha-img {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.git-captcha-input {
    flex: 1;
}

/* ── Submit button ── */
.git-submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #1c1c2e 0%, #2e2e42 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(26, 60, 52, 0.3);
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.git-submit-btn:hover {
    background: linear-gradient(135deg, #C4963A 0%, #e8b84b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 150, 58, 0.35);
}

.git-submit-btn:active {
    transform: translateY(0);
}

.git-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.git-btn-text,
.git-btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Form note ── */
.git-form-note {
    text-align: center;
    color: #9aaca8;
    font-size: 0.78rem;
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.git-form-note i {
    color: #C4963A;
    font-size: 0.8rem;
}

/* ============================================================
   Decorative background circles
   ============================================================ */
.git-decorative-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.git-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 60, 52, 0.04);
}

.git-circle-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -80px;
}

.git-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: 15%;
    background: rgba(196, 150, 58, 0.05);
}

.git-circle-3 {
    width: 140px;
    height: 140px;
    top: 40%;
    left: 48%;
    background: rgba(26, 60, 52, 0.03);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .git-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .git-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .git-modern-section {
        padding: 50px 0;
    }

    .git-form-row {
        grid-template-columns: 1fr;
    }

    .git-captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .git-captcha-image-box {
        text-align: center;
    }

    .git-captcha-img {
        margin: 0 auto;
    }
}
