:root {
    --blue: #2980b9;
    --orange: #e67e22;
    --black: #2c3e50;
}

.std-hero { height: 45vh; background: url('../images/kaaba2.png') center/cover; position: relative; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.std-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.std-hero-content { position: relative; z-index: 2; }
.std-hero-content h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.std-hero-content p { font-size: 1.2rem; opacity: 0.95; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }

.split-container { display: flex; max-width: 1200px; margin: -50px auto 0; position: relative; z-index: 10; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.15); border-radius: 15px; overflow: hidden; background: white; }
.split-col { flex: 1; padding: 40px 30px; display: flex; flex-direction: column; }

.theme-blue { background: white; border-right: 1px solid #eee; }
.theme-blue h2 { color: var(--blue); }
.theme-blue .col-badge { background: var(--blue); }
.theme-blue .dist-bar-fill { background: var(--blue); }
.theme-blue .col-features i { color: var(--blue); }

.theme-black { background: #fafafa; }
.theme-black h2 { color: var(--black); }
.theme-black .col-badge.gold { background: var(--black); border: 1px solid var(--orange); }
.theme-black .dist-bar-fill.gold-fill { background: var(--black); }
.theme-black .col-features i { color: var(--orange); }

.col-header { text-align: center; margin-bottom: 20px; }
.col-badge { color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; display: inline-block; margin-bottom: 5px; }
.col-header h2 { margin: 5px 0; font-size: 1.8rem; }
.col-header p { color: #777; font-size: 0.9rem; margin: 0; }

.col-gallery { height: 200px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.col-gallery img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.col-gallery:hover img { transform: scale(1.1); }
.gallery-icon { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.distance-box { margin-bottom: 25px; }
.distance-box label { font-size: 0.85rem; font-weight: bold; display: block; margin-bottom: 5px; }
.dist-bar-bg { height: 10px; background: #ddd; border-radius: 10px; overflow: hidden; position: relative; }
.dist-bar-fill { height: 100%; border-radius: 10px; }
.dist-val { float: left; font-size: 0.8rem; font-weight: bold; margin-top: 5px; }

.col-features { list-style: none; padding: 0; margin: 0 0 25px; }
.col-features li { margin-bottom: 8px; font-size: 0.95rem; display: flex; gap: 8px; align-items: center; }

.col-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.price-box { border: 1px solid #eee; padding: 10px; text-align: center; border-radius: 8px; transition: 0.3s; background: white; cursor: pointer; }
.price-box:hover { transform: translateY(-3px); box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.price-box span { display: block; font-size: 0.85rem; color: #888; margin-bottom: 3px; }
.price-box strong { display: block; font-size: 1.1rem; color: #333; }
.price-box.dark { background: #2c3e50; border: none; }
.price-box.dark span { color: #ccc; }
.price-box.dark strong { color: var(--orange); }

.sticky-booking-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #062a4d; color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; z-index: 999; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); cursor: pointer; border-top: 3px solid var(--primary-orange); }
.sb-text span { font-size: 0.8rem; display: block; color: #bbb; }
.sb-text strong { font-size: 1.1rem; color: var(--primary-orange); }
.sb-btn { background: var(--primary-orange); color: white; border: none; padding: 10px 25px; border-radius: 30px; font-weight: bold; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.sticky-booking-bar:hover .sb-btn { transform: scale(1.05); }

.std-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; align-items: center; justify-content: center; }
.std-modal .modal-content { background: white; padding: 15px; width: 90%; max-width: 600px; border-radius: 10px; position: relative;}
.close-modal { font-size: 2rem; cursor: pointer; position: absolute; top: -40px; right: 0; color: white; }

.booking-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; justify-content: center; align-items: center; }
.booking-modal-content { width: 100%; max-width: 500px; position: relative; }
.form-wrapper.vip-form { background: #2c3e50; color: white; border: 1px solid var(--primary-orange); box-shadow: 0 20px 50px rgba(0,0,0,0.2); padding: 30px; border-radius: 15px; }
.form-header { text-align: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.form-header h3 { color: var(--primary-orange); font-size: 1.5rem; margin-bottom: 5px;}
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-size: 0.9rem; color: #ccc;}
.form-group input, .form-group select { width: 100%; padding: 10px; border-radius: 5px; border: 1px solid #4a6278; background: rgba(255,255,255,0.05); color: white; }
.form-group select option { background: #2c3e50; color: white; }
.submit-btn.gold-btn { background: var(--primary-orange); color: white; width: 100%; padding: 12px; border: none; border-radius: 5px; font-size: 1.1rem; cursor: pointer; margin-top: 10px;}

.services-section { padding: 60px 20px; background: #fff; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.service-card { background: #fff; border: 1px solid #eee; padding: 30px 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer; }
.service-card:hover { transform: translateY(-10px); border-color: var(--blue); }
.serv-icon { font-size: 2.5rem; color: var(--blue); margin-bottom: 15px; }

@media (max-width: 768px) {
    .split-container { flex-direction: column; margin-top: -30px; }
    .split-col { border-right: none; border-bottom: 5px solid #eee; padding: 30px 20px; }
}

.season-banner {
    background: linear-gradient(135deg, #1a5276, #2965af);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(41, 101, 175, 0.2);
}
.season-banner i { font-size: 2.5rem; margin-bottom: 10px; display: block; }
.season-banner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.season-banner p { opacity: 0.9; font-size: 1rem; }

.season-omra-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(241, 111, 15, 0.3);
}
.season-omra-cta:hover { background: #d65a00; transform: translateY(-2px); }

.past-trips-section { padding: 40px 0; }
.past-trips-section h2 { text-align: center; font-size: 1.8rem; color: #1a2a3a; margin-bottom: 10px; }
.past-trips-section > .container > p { text-align: center; color: #666; margin-bottom: 30px; }
.trips-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trip-stat-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: 0.3s;
}
.trip-stat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.trip-stat-header {
    padding: 20px;
    text-align: center;
    color: white;
}
.trip-stat-header.year-1445 { background: linear-gradient(135deg, #2980b9, #1a5276); }
.trip-stat-header.year-1446 { background: linear-gradient(135deg, #16a085, #0e6655); }
.trip-stat-header.year-1447 { background: linear-gradient(135deg, #f39c12, #d68910); }
.trip-stat-header h3 { font-size: 1.8rem; font-weight: 900; margin: 0; }
.trip-stat-header span { opacity: 0.9; font-size: 0.9rem; }
.trip-stat-body { padding: 20px; }
.stat-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.stat-row:last-child { border: none; }
.stat-label { color: #666; font-size: 0.9rem; }
.stat-value { font-weight: 800; color: #1a2a3a; font-size: 1rem; }

/* ─── SECTION TITLE ─── */
.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.premium-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #1a2a3a;
    margin-bottom: 5px;
}
.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--ramadan-gold));
    border-radius: 10px;
    margin: 10px 0;
}

/* ─── PACKAGES INTRO ─── */
.packages-intro {
    margin-bottom: 10px;
}

/* ─── PACKAGES WRAPPER ─── */
.packages-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ─── PACKAGE CARD ─── */
.package-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid #eef0f4;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.pkg-header {
    position: relative;
    padding: 30px 26px;
    text-align: center;
    color: white;
}
.pkg-header.gold {
    background: linear-gradient(135deg, #c6a87c, #a78a64);
}
.pkg-header.blue {
    background: linear-gradient(135deg, #2965af, #1a4a85);
}
.pkg-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.pkg-price {
    font-size: 1.8rem;
    font-weight: 900;
}
.pkg-price small {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

.pkg-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pkg-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pkg-badge.gold { background: linear-gradient(135deg, #f0c060, #d4a017); }
.pkg-badge.blue { background: var(--primary-blue); }

.pkg-features {
    list-style: none;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #444;
}
.pkg-features li i {
    color: var(--primary-blue);
    width: 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    white-space: nowrap;
}
.gold-btn {
    background: linear-gradient(135deg, #c6a87c, #a78a64);
    color: white;
    border-color: #c6a87c;
}
.gold-btn:hover { background: linear-gradient(135deg, #b8976a, #8b714b); transform: translateY(-2px); }
.blue-btn {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
.blue-btn:hover { background: #1a4a85; transform: translateY(-2px); }
.ghost-btn {
    background: transparent;
    color: #666;
    border-color: #ddd;
}
.ghost-btn:hover { border-color: #999; color: #333; }

/* ─── SERVICES SHOWCASE ─── */
.services-showcase {
    padding: 20px 0 60px;
}

.serv-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.serv-mini-card {
    background: white;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.03);
}
.serv-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}
.serv-mini-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}
.serv-mini-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 4px;
}
.serv-mini-card p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}

/* ─── MODALS ─── */
.vip-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.popup-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}
.close-popup {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: #333;
    background: rgba(0,0,0,0.05);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}
.close-popup:hover { background: #e74c3c; color: white; }

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-modal-content {
    max-width: 800px;
    background: transparent;
    box-shadow: none;
    padding: 40px 20px 20px;
}
.gallery-title {
    color: white;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-size: 1.5rem;
}
.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    border: 2px solid transparent;
    transition: 0.3s;
    cursor: pointer;
}
.gallery-item:hover { transform: scale(1.05); border-color: #f16f0f; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.videos-section {
    padding: 20px 0 50px;
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef0f4;
    transition: 0.3s;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 768px) {
    .trips-stats-grid { grid-template-columns: 1fr; }
    .packages-wrapper { grid-template-columns: 1fr; }
    .serv-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: 1fr; }
    .hotel-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 120px; }
    .vip-popup { padding: 15px; align-items: center !important; }
    .popup-content { margin: auto; }
}
