/* ── Hero ───────────────────────────────────────────────────────────── */
.contact-hero {
    position: relative;
    margin-top: -100px;
    height: 70vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../project_images/lead.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.93;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Quick-info strip ───────────────────────────────────────────────── */
.contact-strip {
    background: white;
    padding: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #eef2ff;
    transition: box-shadow 0.25s ease;
}

.strip-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.strip-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: white;
}

.strip-icon.blue   { background: var(--primary-blue); }
.strip-icon.orange { background: var(--accent-orange); }
.strip-icon.red    { background: var(--primary-red); }

.strip-text strong {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.strip-text span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.strip-text a {
    font-size: 0.88rem;
    color: var(--text-light);
    text-decoration: none;
}

.strip-text a:hover {
    color: var(--accent-orange);
}

/* ── Main content area ──────────────────────────────────────────────── */
.contact-main {
    padding: 5rem 0 6rem;
    background: #f8f9fa;
}

/* ── Form card ──────────────────────────────────────────────────────── */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-orange);
}

.form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #fafbfc;
}

.contact-form .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
    background: white;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.btn-send {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    color: white;
}

/* ── Info sidebar ───────────────────────────────────────────────────── */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.07);
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.11);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.info-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.info-card-icon.blue   { background: linear-gradient(135deg, var(--primary-blue), #3949ab); }
.info-card-icon.orange { background: linear-gradient(135deg, var(--accent-orange), var(--primary-red)); }
.info-card-icon.green  { background: linear-gradient(135deg, #2e7d32, #43a047); }

.info-card-title {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.info-card-body {
    color: var(--text-dark);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

.info-card-body a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.info-card-body a:hover {
    text-decoration: underline;
}

/* Social card */
.social-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #303f9f 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    box-shadow: 0 6px 25px rgba(26,35,126,0.25);
}

.social-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.95;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

/* ── Alerts ─────────────────────────────────────────────────────────── */
.contact-alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .strip-item {
        padding: 0.85rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 7rem 0 4rem;
        background-attachment: scroll;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    .form-card {
        padding: 1.75rem;
    }
}
