/* ---------------------------------------------------------
   CONTACT PAGE – HERO
------------------------------------------------------------ */

.contact-hero {
    position: relative;
    padding: 110px 0 80px;
    background: radial-gradient(circle at top left, #e0f2fe 0%, #eff6ff 45%, #e0f2fe 100%);
    overflow: hidden;
}

/* Image behind the gradient */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Use root path – ignores css folder depth */
    background-image: url('/images/web-img5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.9;          /* make it clearly visible for testing */
    mix-blend-mode: normal;
    z-index: 0;
    pointer-events: none;
}


.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 60%, #fef9c3 100%);
    opacity: 0.9;
    z-index: 1;
}

.contact-hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    z-index: 2;
}

.contact-hero-glow-yellow {
    background: #facc15;
    top: -80px;
    left: -60px;
}

.contact-hero-glow-blue {
    background: #2563eb;
    bottom: -80px;
    right: -60px;
}

.contact-hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-hero-left h1 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.contact-hero-subtitle {
    font-size: 17px;
    color: #334155;
    max-width: 560px;
}

.contact-badge {
    display: inline-block;
    background: #0f172a;
    color: #f9fafb;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

/* Hero buttons */

.btn-contact-primary,
.btn-contact-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-contact-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.btn-contact-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-contact-outline {
    background: transparent;
    border-color: #2563eb;
    color: #2563eb;
    margin-left: 10px;
}

.btn-contact-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

.contact-hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Hero metrics */

.contact-hero-metrics {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.contact-metric-number {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.contact-metric-label {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* Hero right card */

.contact-hero-right {
    flex: 0 0 360px;
    max-width: 360px;
}

.contact-hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
    border: 1px solid #dbeafe;
}

.contact-hero-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.contact-hero-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
}

.contact-hero-card ul {
    padding-left: 18px;
    margin: 0;
    font-size: 14px;
    color: #1e293b;
}

/* ---------------------------------------------------------
   MAIN CONTACT AREA
------------------------------------------------------------ */

.contact-main {
    padding: 70px 0 80px;
    background: #f9fafb;
}

.contact-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Grid */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 14px;
}

/* Info card */

.contact-block {
    margin-bottom: 14px;
}

.contact-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.contact-block p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.contact-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0 14px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.contact-list li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #111827;
    margin-bottom: 6px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
}

/* meta text */

.contact-meta p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Form card */

.contact-form-card {
    position: relative;
}

.contact-success {
    margin-bottom: 12px;
    font-size: 14px;
}

/* We let Bootstrap form-control exist, just tweak spacing */
.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-form .form-control {
    border-radius: 10px;
    border-color: #cbd5f5;
    font-size: 14px;
    padding: 9px 11px;
}

.contact-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.25);
}

/* Map card */

.contact-map-wrapper {
    margin-top: 8px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbeafe;
    background: #e5e7eb;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.contact-map-points {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 0;
    font-size: 13px;
    color: #4b5563;
}

.contact-map-points li {
    margin-bottom: 4px;
}

/* Highlight strip */

.contact-highlight-strip {
    margin-top: 36px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.highlight-item {
    color: #e5e7eb;
    font-size: 13px;
}

.highlight-label {
    font-weight: 600;
    color: #facc15;
    margin-right: 6px;
}

.highlight-value {
    font-weight: 500;
}

/* ---------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 991.98px) {
    .contact-hero-inner {
        flex-direction: column;
        text-align: left;
    }

    .contact-hero-right {
        max-width: 100%;
        width: 100%;
    }

    .btn-contact-outline {
        margin-left: 0;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 90px 0 60px;
    }

    .contact-hero-left h1 {
        font-size: 30px;
    }

    .contact-hero-inner {
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-highlight-strip {
        align-items: flex-start;
    }
}
