/* ==========================================================================
   contact.css — Dedicated Stylesheet for contact.html (Contact Us)
   ========================================================================== */

/* ============ HERO BANNER ============ */
.contact-hero {
    position: relative;
    height: 320px;
    background: var(--dark-green);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* --- Hero Background & Overlay --- */
.contact-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1b4332 0%, rgba(27,67,50,0.6) 50%, rgba(0,0,0,0) 100%);
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 40px;
    text-align: right;
}

/* --- Breadcrumb Navigation --- */
.contact-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
}

.contact-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-hero__breadcrumb a:hover {
    color: #fff;
}

.contact-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.contact-hero__breadcrumb .current {
    color: var(--green-500);
    font-weight: 600;
}

/* --- Hero Title --- */
.contact-hero__title {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    color: #fff;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 96px 0;
}

/* --- Contact Grid (RTL - Form on the Left, Info on the Right) --- */
.contact-grid {
    display: grid;
    /* العمود الأول (يمين): للمعلومات 464fr ، العمود الثاني (شمال): للفورم 720fr */
    grid-template-columns: 464fr 720fr;
    gap: 64px;
    align-items: start;
    direction: rtl; /* يضمن ترتيب العمودين من اليمين للشمال */
}
/* --- Contact Info Column --- */
.contact-info {
    text-align: right;
}

.contact-info__eyebrow {
    color: var(--green-500);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-info__title {
    font-weight: 900;
    font-size: 30px;
    line-height: 36px;
    color: var(--text-dark);
    margin-top: 16px;
}

.contact-info__desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 26px;
    margin-top: 24px;
}

/* --- Info Cards --- */
.info-card {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* بيجبر العناصر تبدأ من اليمين تماماً */
  gap: 16px;
  direction: rtl;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 16px;
}

.info-card__icon {
  order: 1; /* بيضمن إن الأيقونة تأخد المكان الأول على اليمين */
  flex-shrink: 0;
}

.info-card__text {
  order: 2; /* النص يأجي بعدها على الشمال */
  text-align: right;
  flex-grow: 1;
}

.location-box{

    width:100%;
    height:260px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,.08);

    border:1px solid #E6ECE8;

}

#atharMap{

    width:100%;

    height:100%;

}

.athar-marker{
    animation: markerFloat 2s ease-in-out infinite;
}

@keyframes markerFloat{
    0%,100%{
        margin-top:0;
    }
    50%{
        margin-top:-6px;
    }
}