/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
    --green: #1a5c3a;
    --green-light: #2a7a50;
    --green-dark: #0f3d25;
    --red: #8b1a1a;
    --red-light: #b02020;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #fdf8f0;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #777;
    --white: #ffffff;
    --border: rgba(201, 168, 76, 0.3);
    --font-body: 'Nunito Sans', sans-serif;
    --font-head: 'Cormorant Garamond', serif;
    --font-amiri: 'Amiri', serif;
}

::selection {
    color: var(--cream);
    background: var(--green-dark);
}

::-webkit-scrollbar {
    z-index: 999;
    position: absolute;
    background: transparent;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

p {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--green);
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
    position: relative;
}

.section-title span {
    color: var(--red);
}

h2.underline {
    padding-bottom: 16px;
    margin-bottom: 1.4rem;
}

h2.underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--green), var(--gold));
    border-radius: 2px;
}

h2.underline-left::after {
    left: 0;
    transform: unset;
}

h2.underline-gold::after {
    background: linear-gradient(to right, var(--gold-light), rgba(255, 255, 255, 0.3));
}



.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: none !important;
    transition: 0.3s ease !important;
}

.btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.btn-gold {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
}

.btn-outline {
    color: var(--gold-light) !important;
    border: 1.5px solid var(--gold) !important;
}




/* ─── TICKER ─── */
.ticker-bar {
    background: var(--green-dark);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-inner {
    display: flex;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
    gap: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 11px;
    font-family: var(--font-amiri);
    font-size: 15px;
    color: var(--gold-light);
}

.ticker-sep {
    color: var(--red);
    font-size: 20px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── NAVBAR ─── */
.navbar {
    top: 0;
    z-index: 999;
    position: sticky !important;
    width: 100%;
    padding: 20px 0px !important;
    background: var(--white) !important;
    transition: 0.5s ease;
    display: flex;
    justify-content: center !important;
    border-bottom: 1px solid var(--gold-light);
}

/* Navbar when scrolled */
.navbar.scrolled {
    position: fixed !important;
    padding: 15px 0px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--gold);
}

.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: auto;
    height: 45px;
    transition: 0.5s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-title {
    font-family: var(--font-amiri);
    font-size: 17px;
    font-weight: 500;
    line-height: 100%;
    color: var(--green-dark);
    display: block;
    margin-bottom: 0px;
}

.logo-sub {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.navbar.nav-logo.scrolled img {
    height: 35px !important;
}

.navbar .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: fit-content;
}

a.nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 100%;
    color: var(--green-dark);
    padding: 8px 14px;
    transition: 0.3s ease;
}

a.nav-link:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li>a.nav-link {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    border-radius: 5px;
}

.dropdown-li.open>a.nav-link {
    background: var(--green);
    color: var(--white);
    border-radius: 15px;
}

a.nav-link .dropdown {
    transition: 0.3s ease;
}

.dropdown-li.open .dropdown {
    transform: rotate(180deg) translateY(1px);
}

.dropdown-li .dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(55px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-color: var(--green-light);
    border-radius: 10px;
    padding: 25px 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 999;
}

.dropdown-li.open .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(15px);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
}

.dropdown-grid a.nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    transition: 0.3s ease;
    color: var(--white) !important;
    padding: 13px 20px 13px 13px;
    border-radius: 10px;
    min-width: max-content;
}

.dropdown-grid a.nav-link:hover {
    transform: unset;
    background-color: var(--green-dark);
}



/* ─── HERO ─── */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--green-dark) 0%, #1e3a2a 45%, #2d1010 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bn-con {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-arabic-strip {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .row {
    z-index: 10;
}

.arabic-pill {
    font-family: var(--font-amiri);
    font-size: 20px;
    color: var(--gold-light);
    padding: 6px 20px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    animation: fadeUp 0.8s ease both;
}

.arabic-pill:nth-child(2) {
    animation-delay: 0.1s;
}

.arabic-pill:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    animation: fadeUp 0.9s ease 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-family: var(--font-amiri);
    font-size: clamp(22px, 4vw, 36px);
    color: rgba(255, 255, 255, 0.75);
    animation: fadeUp 0.9s ease 0.5s both;
}

.hero-city-badge {
    text-align: center;
    gap: 10px;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 40px;
    animation: fadeUp 1s ease 0.6s both;
}

.hero-stats {
    display: grid;
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    animation: fadeUp 1s ease 0.7s both;
    grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
    padding: 15px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.18);
    flex: 1;
}

.hero-stat:last-child {
    border: none;
}

.hero-stat-num {
    font-family: var(--font-amiri);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
}

.bn-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    border-radius: 20px;
    border: 4px solid var(--border);
    animation: fadeUp 0.6s ease both;
}

.taabudaat-bn-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 15px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    animation: fadeUp 0.6s ease both;
}

.taabudaat-bn-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--green), var(--gold), var(--red));
}

.taab-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 7px 20px;
    transition: 0.2s ease;
}

.taab-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.taab-card-num {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.taab-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}


/* ─── NEW HERO LAYOUT ─── */
.hero-glass-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    animation: fadeUp 0.8s ease both;
}

.glass-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 2px;
}

.glass-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.glass-body {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.glass-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    transition: 0.3s ease;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Remove border from last row/items of each column */
.glass-item:nth-last-child(-n+1),
.glass-item:nth-child(17),
.glass-item:nth-child(18) {
    border-bottom: none;
}

.glass-item span {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.3;
}

.glass-item i {
    font-size: 10px;
    color: var(--gold);
    opacity: 0;
    transition: 0.3s ease;
    transform: translateX(-5px);
}

.glass-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

.action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    animation: fadeUp 0.8s ease both;
}

.action-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.action-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

.action-info {
    flex: 1;
    min-width: 0;
}

.action-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1px;
}

.action-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-btn {
    font-size: 12px;
    font-weight: 700;
    background: var(--gold);
    color: var(--green-dark);
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.action-card:hover .action-btn {
    opacity: 0.9;
}

/* Decorative Circles */
.hero-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.circle-1 {
    width: 420px;
    height: 420px;
    border: 1.5px solid rgba(201, 168, 76, 0.12);
}

.circle-2 {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

/* Stagger animations for action cards */
.action-card:nth-child(1) {
    animation-delay: 0s;
}

.action-card:nth-child(2) {
    animation-delay: 0.1s;
}

.action-card:nth-child(3) {
    animation-delay: 0.2s;
}

.action-card:nth-child(4) {
    animation-delay: 0.3s;
}

.action-card:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ─── COUNTDOWN ─── */
.countdown-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--green), var(--gold), var(--red));
}

.countdown-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cd-box {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 14px;
    padding: 20px 28px;
    min-width: 110px;
    position: relative;
    overflow: hidden;
}

.cd-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.cd-num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-light);
}

.cd-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.cd-sep {
    font-family: var(--font-head);
    font-size: 52px;
    color: var(--gold);
    align-self: center;
    padding-bottom: 20px;
    line-height: 1;
}

.countdown-note {
    font-family: var(--font-amiri);
    font-size: 18px;
    color: var(--text-light);
}

.countdown-note strong {
    color: var(--green);
}

/* ─── About ─── */
.about-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1b3d28 100%);
    padding: 220px 0 80px;
    --about-img: 600px;
    margin-top: calc(var(--about-img) - 140px);
}

.about-img {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.about-img img {
    width: 85%;
    height: var(--about-img);
    position: absolute;
    bottom: 0;
    left: 50%;
    object-fit: cover;
    background-position: center;
    transform: translateX(-50%);
    border-radius: 30px;
    border: 4px solid var(--border);
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-title span {
    color: var(--gold-light);
}

.about-section p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 16px;
}

.city-card {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    transition: 0.3s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.city-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.city-card .icon i {
    color: var(--gold);
    font-size: 18px;
}

.city-card .label {
    font-size: 12px;
    color: var(--cream);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-card h4 {
    color: var(--gold);
    font-family: var(--font-amiri);
    margin-bottom: 2px;
}

.city-card span {
    font-size: 13px;
    color: var(--white);
}




/* ─── WEATHER ─── */
.weather-section {
    background: var(--cream);
    padding: 72px 0;
}

.weather-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.weather-header {
    text-align: center;
    margin-bottom: 40px;
}

.weather-widget-wrap {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.weather-widget-wrap iframe {
    width: 100%;
    border: none;
    display: block;
}

.weather-meta {
    padding: 20px 28px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.weather-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-meta strong {
    color: var(--gold-light);
}

/* ─── NEWS SECTION ─── */
.news-section {
    background: var(--white);
    padding: 72px 0;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}




.news-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--cream);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    transition: 0.2s ease;
    padding: 20px 20px 30px;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.top-green::before,
.top-red::before,
.top-gold::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
}

.top-green::before {
    background: var(--green);
}

.top-red::before {
    background: var(--red);
}

.top-gold::before {
    background: var(--gold);
}

.news-img {
    width: 100%;
    height: 230px;
    border: 2px solid var(--border);
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: 0.3s ease;
}

.news-card:hover img {
    scale: 1.05;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tag {
    width: fit-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.tag-green {
    background: rgba(26, 92, 58, 0.12);
    color: var(--green);
}

.tag-red {
    background: rgba(139, 26, 26, 0.12);
    color: var(--red);
}

.tag-gold {
    background: rgba(201, 168, 76, 0.15);
    color: #8a6a0a;
}

.news-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.35;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.news-card-date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.news-card-date i {
    font-size: 15px;
}

/* ─── ELANAAT (NEW CLASSES) ─── */
.elan-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--cream);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    transition: 0.2s ease;
    padding: 35px 20px 30px;
}

.elan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Reusing top color bars logic */
.elan-card.top-green::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: var(--green);
}

.elan-card.top-red::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: var(--red);
}

.elan-card.top-gold::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: var(--gold);
}

.elan-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.elan-tag {
    width: fit-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.elan-tag-announcement {
    background: rgba(26, 92, 58, 0.12);
    color: var(--green);
}

.elan-tag-zones {
    background: rgba(139, 26, 26, 0.12);
    color: var(--red);
}

.elan-tag-transport {
    background: rgba(201, 168, 76, 0.15);
    color: #8a6a0a;
}

.elan-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.35;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.elan-date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 6px;
}

.elan-date i {
    font-size: 15px;
}

.elan-desc {
    display: none;
}

.read-more-btn {
    width: fit-content;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    color: var(--green);
}

/* ─── ELANAAT MODAL ─── */
.elan-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.elan-modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--border);
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.elan-modal-close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.elan-modal-close:hover {
    color: var(--red);
}

#elanModalBody h2 {
    color: var(--green-dark);
    font-family: var(--font-head);
    margin-bottom: 10px;
}

#elanModalBody .modal-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

#elanModalBody .modal-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ─── ZONES ─── */
.zones-section {
    background: var(--cream);
    padding: 80px 0;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.zone-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border);
    transition: 0.3s ease;
}

.zone-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--green), var(--gold), var(--red));
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.zone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zone-header h3 {
    margin: 0;
    color: var(--red);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-amiri);
}

.zone-header p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 14px;
    font-family: var(--font-body);
}

.zone-crown {
    color: var(--gold);
    filter: drop-shadow(rgba(210, 167, 65, 0.6) 0px 0px 4px);
    width: 1.6rem;
    height: 1.6rem;
    align-self: start;
}

.zone-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-mid);
}

.zone-location i {
    color: var(--gold);
}

.zone-distance {
    display: flex;
    gap: 10px;
}

.zone-box {
    flex: 1;
    background: rgba(26, 92, 58, 0.08);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid rgba(26, 92, 58, 0.1);
}

.zone-box:nth-child(2) {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.zone-box i {
    color: var(--gold);
}

.zone-box strong {
    display: block;
    font-size: 14px;
    color: var(--gold);
}

.zone-box span {
    font-size: 12px;
    color: var(--text-light);
}

.zone-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-mid);
}

.zone-footer i {
    color: var(--red);
    transition: 0.2s;
}

.zone-card:hover .zone-footer i {
    transform: translateX(4px);
}

/* ─── MAP ─── */
.map-section {
    padding: 72px 0;
    background: var(--white);
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-frame-wrap {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.map-frame-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

/* .map-frame-wrap iframe {
    width: 100%;
    height: 460px;
    border: none;
    display: block;
} */

/* ─── TRANSPORT ─── */
.transport-section {
    background: var(--cream);
    padding: 72px 0;
}

.transport-header {
    text-align: center;
    margin-bottom: 40px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.transport-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.transport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.transport-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.city-card .icon i {
    color: var(--gold);
    font-size: 18px;
}

.transport-title {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.transport-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.7;
}

.transport-detail {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
}

/* ─── FOOTER ─── */
/* ─── FOOTER ─── */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-toran {
    width: 100%;
    height: 36px;
    background-image: url('assets/images/toran.webp');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left bottom;
}

.footer-main {
    padding: 60px 0 0px;
    position: relative;
    background: var(--green-dark);
}

.footer-bg-icon {
    position: absolute;
    top: 24px;
    opacity: 0.05;
    pointer-events: none;
    width: 110px;
}

.footer-bg-icon.left { left: 16px; }
.footer-bg-icon.right { right: 16px; transform: scaleX(-1); }

.footer-logo-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.logo-info p {
    margin-bottom: 0;
}

.logo-info p:first-child {
    font-weight: 800;
    font-size: 16px;
    color: var(--gold);
    line-height: 1.1;
}

.logo-info p:last-child {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo-divider {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-col-divider {
    height: 1px;
    width: 32px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.footer-links a i {
    color: var(--gold);
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item div p:first-child {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.contact-item div p:last-child,
.contact-item div a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0;
}

.footer-external-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.external-link i {
    color: var(--gold);
    font-size: 12px;
}

.external-link:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--white);
    border-color: var(--gold);
}

.footer-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.footer-bottom-bar {
    background: var(--green-dark);
}

.footer-bottom-inner {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-inner p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.weatherwidget-io {
    border: 2px solid rgba(201, 168, 76, 0.8);
    border-radius: 30px;
    overflow: hidden;
}

.footer-arabic {
    font-family: var(--font-amiri);
    font-size: 18px;
    color: var(--gold-light);
}


/* ─── PAGE HERO ─── */
.page-hero {
    background: linear-gradient(160deg, var(--green-dark) 0%, #1e3a2a 50%, #2d1010 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 5;
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 14px;
}

.page-hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero-subtitle {
    font-family: var(--font-amiri);
    font-size: clamp(18px, 3vw, 26px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero-breadcrumb a:hover {
    color: var(--gold);
}

.page-hero-breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Stats bar */
.zones-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.zones-stats-inner {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.zone-stat-item {
    text-align: center;
    padding: 10px 32px;
    border-right: 1px solid var(--border);
}

.zone-stat-item:last-child {
    border-right: none;
}

.zone-stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
}

.zone-stat-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* ─── ZONES PAGE BODY ─── */
.zones-page {
    background: var(--cream);
    padding: 60px 0 80px;
}

/* ─── TABS ─── */
.zones-tab-wrap {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.zones-tab-header {
    background: var(--green-dark);
    padding: 0 6px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.zones-tab-header::-webkit-scrollbar {
    display: none;
}

.zone-tab-btn {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.zone-tab-btn:hover {
    color: var(--gold-light);
}

.zone-tab-btn.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

/* ─── TAB PANELS ─── */
.zone-panel {
    display: none;
}

.zone-panel.active {
    display: block;
}

/* ─── ZONE DETAIL LAYOUT ─── */
.zone-detail-hero {
    padding: 32px 32px 28px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(15, 61, 37, 0.04) 0%, rgba(201, 168, 76, 0.06) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.zone-detail-left {
    flex: 1;
    min-width: 260px;
}

.zone-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-dark);
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.zone-detail-name {
    font-family: var(--font-head);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: 6px;
}

.zone-detail-type {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.zone-detail-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-mid);
}

.zone-detail-address i {
    color: var(--gold);
}

.zone-detail-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.zone-capacity-pill {
    background: rgba(26, 92, 58, 0.1);
    border: 1.5px solid rgba(26, 92, 58, 0.2);
    color: var(--green);
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 14px;
}

.zone-capacity-pill span {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--green-dark);
}

/* Distance row */
.zone-distances {
    display: flex;
    gap: 12px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.zone-dist-card {
    flex: 1;
    min-width: 140px;
    background: var(--cream);
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.zone-dist-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dist-walk .zone-dist-icon {
    background: rgba(26, 92, 58, 0.1);
    color: var(--green);
}

.dist-car .zone-dist-icon {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.dist-bus .zone-dist-icon {
    background: rgba(139, 26, 26, 0.1);
    color: var(--red);
}

.zone-dist-info strong {
    display: block;
    font-size: 18px;
    font-family: var(--font-head);
    color: var(--green-dark);
    line-height: 1;
    font-weight: 700;
}

.zone-dist-info span {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
    display: block;
}

/* Info grid */
.zone-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.zone-info-cell {
    padding: 18px 24px;
    border-right: 1px solid var(--border);
}

.zone-info-cell:last-child {
    border-right: none;
}

.zone-info-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.zone-info-value {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--green-dark);
}

.zone-info-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Facilities */
.zone-facilities {
    padding: 24px 32px;
}

.zone-facilities-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.zone-fac-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zone-fac-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 600;
    transition: 0.2s ease;
}

.zone-fac-tag i {
    color: var(--green);
    font-size: 14px;
}

.zone-fac-tag:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

/* Map link */
.zone-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-dark);
    color: var(--gold-light) !important;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
    cursor: pointer;
}

.zone-map-btn:hover {
    background: var(--green);
    transform: translateY(-1px);
}

/* ─── SUMMARY GRID (All zones) ─── */
.all-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.summary-zone-card {
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
}

.summary-zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--green), var(--gold), var(--red));
}

.summary-zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.sum-card-inner {
    padding: 20px 20px 18px;
}

.sum-card-num {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 700;
}

.sum-card-name {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.sum-card-type {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.sum-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.sum-card-location i {
    color: var(--gold);
    font-size: 13px;
}

.sum-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(26, 92, 58, 0.04);
    border-top: 1px solid var(--border);
}

.sum-card-cap {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

.sum-card-dist {
    font-size: 12px;
    color: var(--text-light);
}

.sum-card-arrow {
    color: var(--gold);
    font-size: 14px;
    transition: 0.2s ease;
}

.summary-zone-card:hover .sum-card-arrow {
    transform: translateX(4px);
}

/* ─── TOTAL BAR ─── */
.zones-total-bar {
    background: var(--green-dark);
    border-radius: 12px;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.zones-total-bar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.zones-total-bar strong {
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 24px;
}

/* ─── FAQ SECTION ─── */
.faq-section {
    padding: 80px 0;
    background: #fdfaf3;
    /* Subtle warm cream */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(26, 92, 58, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.faq-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-text .sep {
    margin: 0 10px;
    opacity: 0.3;
}

.faq-chevron {
    color: var(--gold);
    transition: 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 25px 25px 76px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── TRAVEL ESSENTIALS ─── */
.essentials-section {
    padding: 80px 0;
    background: var(--white);
}

.essentials-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 35px 0 45px;
    flex-wrap: wrap;
}

.ess-tab {
    padding: 10px 22px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ess-tab .en {
    font-size: 11px;
    opacity: 0.6;
    font-weight: 600;
}

.ess-tab.active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
    box-shadow: 0 4px 15px rgba(15, 61, 37, 0.2);
}

.ess-tab:hover:not(.active) {
    border-color: var(--gold);
    background: var(--white);
}

.ess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ess-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ess-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--gold-light);
}

.ess-card-top {
    height: 4px;
    background: var(--gold);
}

.ess-card-body {
    padding: 25px;
}

.ess-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.ess-card-text {
    margin-bottom: 20px;
}

.ess-card-text .dawat {
    font-family: var(--font-amiri);
    font-size: 18px;
    color: var(--text-dark);
    display: block;
    direction: rtl;
    text-align: right;
    margin-bottom: 12px;
}

.ess-card-text .eng {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    display: block;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.ess-badge {
    width: fit-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.ess-badge i {
    font-size: 10px;
}

.ess-badge-essential {
    background: rgba(201, 168, 76, 0.15);
    color: #8a6a0a;
}

.ess-badge-advised {
    background: rgba(26, 92, 58, 0.1);
    color: var(--green);
}

/* Tab Panes */
.ess-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.ess-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── TRANSPORTATION PAGE ─── */
.trans-page {
    background: #f9f9f9;
    padding: 60px 0 100px;
}

.trans-header {
    margin-bottom: 50px;
}

.trans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.hub-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hub-header {
    background: var(--green-dark);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
}

.hub-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 179, 71, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.hub-info h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.hub-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 0;
}

.hub-body {
    padding: 30px;
}

.hub-address {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hub-address i {
    color: var(--gold);
    margin-top: 5px;
}

.hub-address p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0px;
}

.hub-address h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0px;
}

.trans-loc-link {
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
    text-decoration: none;
    color: #b58a12;
}

.hub-facilities h4,
.hub-options h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 15px;
}

.facility-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
}

.facility-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.opt-tag {
    background: rgba(255, 179, 71, 0.08);
    border: 1px solid rgba(255, 179, 71, 0.3);
    color: #b58a12;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* ─── DISTANCE TABLE ─── */
.distance-section {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dist-header {
    background: var(--green-dark);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dist-header h2 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 2px;
}

.dist-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 0px;
}

.dist-table-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #ddd transparent;
    /* For Firefox */
}

/* Custom Scrollbar for Table (Simple & Elegant) */
.dist-table-wrap::-webkit-scrollbar {
    height: 6px;
}

.dist-table-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.dist-table-wrap::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.dist-table-wrap::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.dist-table {
    width: 100%;
    border-collapse: collapse;
}

.dist-table th {
    background: #fcfcfc;
    padding: 15px 25px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.dist-table td {
    padding: 18px 25px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.dist-table th:first-child,
.dist-table td:first-child {
    min-width: 250px;
}

.dist-table th:not(:first-child),
.dist-table td:not(:first-child) {
    min-width: 180px;
}

.dist-table tr:nth-child(even) {
    background: #f9f9f9;
}

.zone-name {
    font-weight: 600;
    color: var(--green-dark);
}

.zone-sub {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

.dist-val {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 500;
}

.time-val {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ─── RIDE HAILING ─── */

.cab-section-container {
    margin-bottom: 40px;
}

.cab-header-icon {
    background: rgba(244, 161, 86, 0.15);
}

.cab-section-body {
    padding: 30px;
}

.dist-header-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.cab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.cab-card {
    background: #fff;
    border: 1.5px solid #00000020;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    gap: 20px;
    text-decoration: none !important;
}

.cab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.cab-logo {
    flex-shrink: 0;
}

.cab-logo img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cab-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cab-link {
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.cab-desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-mid);
}

.cab-info {
    flex: 1;
    min-width: 0;
}

.cab-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.cab-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cab-hint {
    font-size: 12px;
    margin-top: 20px;
}

.cab-link {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.cab-ola .cab-link {
    background: #d7df231a;
}

.cab-uber .cab-link {
    background: rgba(0, 0, 0, 0.07);
}

.cab-rapido .cab-link {
    background: #f9d81540;
}

/* ─── TIPS ─── */
.tips-section {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid #e2d9c8;
    overflow: hidden;
    margin-top: 40px;
}

.tips-header {
    background: var(--green-dark);
    padding: 20px 30px;
}

.tips-header h2 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.tips-body {
    padding: 30px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.tip-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #ffde82);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.5;
}

.hub-address-icon {
    font-size: 20px;
    color: var(--green-dark);
    margin-top: 3px;
}