/* ════════════════════════════════════════════════════════════════
   SAWAAED NAJD ENGINEERING CONSULTANCY — CONTACT PAGE STYLES (contact.css)
   ================================================================ */

/* ─── 01. INNER HERO BANNER ─── */
.abt-hero {
    position: relative;
    padding: 9rem 0 5rem;
    background-color: var(--brand-green, #0C382C);
    background-image: linear-gradient(135deg, rgba(7, 35, 27, 0.95) 0%, rgba(12, 56, 44, 0.9) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80&fm=webp');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
}

.abt-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.abt-hero-inner {
    position: relative;
    z-index: 2;
}

.abt-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.abt-breadcrumbs a {
    color: var(--brand-gold, #C5A059);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abt-breadcrumbs a:hover {
    color: #FFFFFF;
}

.abt-bc-sep {
    color: rgba(255, 255, 255, 0.4);
}

.abt-bc-active {
    color: #FFFFFF;
    font-weight: 600;
}

.abt-hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 1rem !important;
}

.abt-hero-tag span {
    color: #FFFFFF !important;
}

.abt-tag-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background-color: var(--brand-gold, #C5A059) !important;
    box-shadow: 0 0 8px var(--brand-gold, #C5A059) !important;
    flex-shrink: 0 !important;
}

.abt-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #FFFFFF;
    max-width: 800px;
}


/* ─── 02. MAIN CONTACT SECTION (2-Column Grid Layout) ─── */
.cnt-main-sec {
    padding: 6rem 0;
    background-color: #FAFCFB;
}

.cnt-main-sec .sec-eyebrow span:not(.sec-eyebrow-line) {
    color: #0C382C !important;
    font-weight: 800 !important;
}

.cnt-main-sec .sec-title {
    color: #0C382C !important;
    font-size: 2.2rem !important;
}

.cnt-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}

/* Column 1: Info Cards */
.cnt-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.cnt-info-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid rgba(12, 56, 44, 0.08);
    box-shadow: 0 10px 30px rgba(12, 56, 44, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.cnt-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold, #C5A059);
    box-shadow: 0 18px 40px rgba(12, 56, 44, 0.1);
}

.cnt-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--brand-gold, #C5A059);
    color: var(--brand-gold, #C5A059);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnt-card-content {
    flex: 1;
}

.cnt-card-title {
    color: #0C382C !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.6rem !important;
}

.cnt-card-text {
    color: #2C3532 !important;
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 500;
}

.cnt-contact-person {
    color: #0C382C !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.cnt-phone-links,
.cnt-email-links {
    margin-top: 0.4rem;
}

.cnt-link {
    color: #2C3532 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cnt-link:hover {
    color: var(--brand-gold, #C5A059) !important;
    text-decoration: underline;
}

.cnt-sep {
    color: rgba(12, 56, 44, 0.3);
    margin: 0 0.5rem;
}


/* Column 2: Form Box */
.cnt-form-box {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 2.8rem;
    box-shadow: 0 15px 40px rgba(12, 56, 44, 0.06);
    border: 1px solid rgba(12, 56, 44, 0.08);
}

.cnt-form-title {
    color: #0C382C !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    position: relative;
    padding-bottom: 0.8rem;
}

.cnt-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-gold, #C5A059);
    border-radius: 2px;
}

body[dir="ltr"] .cnt-form-title::after {
    right: auto;
    left: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0C382C !important;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    border: 1px solid rgba(12, 56, 44, 0.15);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    color: #1A2521;
    background: #FAFCFB;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-gold, #C5A059);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
    background: #FFFFFF;
}

.cnt-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: #C5A059 !important;
    color: #FFFFFF !important;
    border: 1px solid #C5A059 !important;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cnt-submit-btn span {
    color: #FFFFFF !important;
}

.cnt-submit-btn svg {
    stroke: #FFFFFF !important;
}

.cnt-submit-btn:hover {
    background: #0C382C !important;
    color: #FFFFFF !important;
    border-color: #C5A059 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(12, 56, 44, 0.3);
}

.toast-notice {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    background: rgba(12, 56, 44, 0.95);
    color: #FFFFFF;
    border-radius: 8px;
    border-inline-start: 4px solid var(--brand-gold, #C5A059);
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-notice.show {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ─── 03. FULL-WIDTH GOOGLE MAP ─── */
.cnt-map-sec {
    position: relative;
    width: 100%;
    line-height: 0;
    border-top: 2px solid var(--brand-gold, #C5A059);
}

.cnt-map-frame iframe {
    filter: grayscale(15%) contrast(105%);
}


/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 992px) {
    .cnt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cnt-form-box {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .abt-hero {
        padding: 7rem 0 3.5rem;
    }

    .cnt-info-card {
        flex-direction: column;
        gap: 1rem;
    }
}
