/* =====================================================
   Abhimo TECHNOLOGIES — contact.css
   Professional, premium light-theme contact page
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --brand-blue: #0057ff;
    --brand-blue-dark: #0040cc;
    --brand-cyan: #00c6ff;
    --accent-glow: rgba(0, 87, 255, 0.18);
    --surface-0: #f5f8ff;
    /* page bg */
    --surface-1: #ffffff;
    /* cards */
    --surface-2: #eef2fb;
    /* input bg */
    --border-soft: rgba(0, 87, 255, 0.12);
    --text-primary: #0d1b3e;
    --text-secondary: #4a5578;
    --text-muted: #8a92aa;
    --radius-card: 20px;
    --radius-input: 12px;
    --shadow-card: 0 8px 40px rgba(0, 60, 180, 0.09);
    --shadow-hover: 0 20px 60px rgba(0, 60, 180, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
    background: var(--surface-0);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* =====================================================
   HERO
   ===================================================== */
.contact-hero {
    position: relative;
    padding: 130px 20px 90px;
    background: linear-gradient(145deg, #e8f0ff 0%, #f0f5ff 50%, #e4f1ff 100%);
    overflow: hidden;
}

/* Subtle dot-grid texture */
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 87, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Decorative blobs */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(0, 87, 255, 0.12);
    top: -120px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 198, 255, 0.15);
    bottom: -80px;
    right: -60px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 87, 255, 0.08);
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(0, 87, 255, 0.08);
    border: 1px solid rgba(0, 87, 255, 0.2);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-heading .highlight {
    position: relative;
    color: var(--brand-blue);
    display: inline-block;
}

/* Underline accent on "Us" */
.hero-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    border-radius: 3px;
    opacity: 0.5;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    padding: 90px 20px 100px;
    background: var(--surface-0);
}

/* ---------- Info Panel (left column) ---------- */
.info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    padding: 22px 26px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    cursor: default;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 87, 255, 0.25);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 87, 255, 0.3);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotate(-6deg) scale(1.05);
}

.info-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 4px;
}

.info-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition);
    display: block;
}

.info-value:hover {
    color: var(--brand-blue);
}

/* Social Row */
.social-row {
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    padding: 22px 26px;
    box-shadow: var(--shadow-card);
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.3);
}

/* ---------- Form Panel (right column) ---------- */
.form-panel {
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    padding: 48px 44px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

@media (max-width: 576px) {
    .form-panel {
        padding: 32px 22px;
    }
}

.form-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ---------- Field Labels ---------- */
.field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ---------- Input Wrapper ---------- */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--transition);
    z-index: 2;
}

/* ---------- Inputs ---------- */
.custom-input {
    background: var(--surface-2) !important;
    border: 1.5px solid transparent !important;
    border-radius: var(--radius-input) !important;
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 13px 16px 13px 44px !important;
    transition: var(--transition);
    box-shadow: none !important;
    outline: none;
}

.custom-input::placeholder {
    color: var(--text-muted) !important;
    font-weight: 400;
}

.custom-input:focus {
    background: #fff !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1) !important;
}

.custom-input:focus+.input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--brand-blue);
}

/* Textarea — no left icon, reset padding */
.custom-textarea {
    padding: 14px 16px !important;
    resize: vertical;
    min-height: 130px;
}

/* ---------- Submit Button ---------- */
.submit-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #0085ff 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.35);
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0040cc, var(--brand-blue));
    opacity: 0;
    transition: opacity var(--transition);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 87, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 87, 255, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn.sending {
    opacity: 0.8;
    pointer-events: none;
}

.submit-btn.sent {
    background: linear-gradient(135deg, #00b96b, #00d97e);
    box-shadow: 0 8px 24px rgba(0, 185, 107, 0.35);
}

/* Ripple shimmer on sending */
.submit-btn.sending::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1s infinite;
}

@keyframes shimmer {
    to {
        left: 200%;
    }
}

/* =====================================================
   MAP STRIP
   ===================================================== */
.map-strip {
    padding: 0 0 80px;
    background: var(--surface-0);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}

.map-wrapper iframe {
    display: block;
    filter: saturate(0.85) contrast(1.02);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: saturate(1.1) contrast(1);
}

.map-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-1);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 60, 180, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-label i {
    color: var(--brand-blue);
}

/* =====================================================
   NAVBAR (preserved — do not override)
   ===================================================== */
.custom-navbar {
    background: white;
    backdrop-filter: none;
}

.logo-text {
    font-size: 36px;
    font-weight: 800;
    color: #0077ff !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: black !important;
    font-weight: 800;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    width: 0%;
    height: 3px;
    background: #0077ff;
    position: absolute;
    left: 0;
    bottom: -5px;
    border-radius: 20px;
    transition: 0.4s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #0077ff !important;
}

/* =====================================================
   FOOTER (preserved — do not override)
   ===================================================== */
.footer {
    background: white;
    color: black;
    padding: 50px 20px;
    text-align: center;
}

.footer h3 {
    font-size: 32px;
    font-weight: 700;
    color: #042437;
}

.footer p {
    margin-top: 15px;
    color: #2a6fab;
}

.footer-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00d9ff, #7b2cff);
    color: white !important;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    border: none;
}

.footer-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.7);
    color: white !important;
}

/* =====================================================
   BUTTONS (global, preserved)
   ===================================================== */
.apply-btn,
.hero-btn {
    background: linear-gradient(135deg, #0099ff, #005eff);
    color: white !important;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.25);
}

.apply-btn:hover,
.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(213, 225, 239, 0.4);
    background: linear-gradient(135deg, #005eff, #0099ff);
}

/* =====================================================
   RESPONSIVE TWEAKS
   ===================================================== */
@media (max-width: 991px) {
    .contact-hero {
        padding: 100px 20px 70px;
    }

    .contact-section {
        padding: 60px 20px 70px;
    }

    .info-panel {
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .hero-heading {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .info-card {
        padding: 18px 20px;
    }

    .social-row {
        padding: 18px 20px;
    }
}

@media (max-width: 400px) {
    .contact-hero {
        padding: 100px 12px 60px;
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 1.15;
    }

    .contact-section {
        padding: 48px 12px 56px;
    }

    .info-card {
        padding: 14px 16px;
        gap: 14px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .info-value {
        font-size: 0.88rem;
    }

    .form-heading {
        font-size: 1.4rem;
    }

    .map-strip {
        padding: 0 0 50px;
    }
}