
/* Hajj Page Specific Styles */
:root {
    --h-dark: #113264;
    --h-gold: #eab308;
    --h-bg-light: #f8fafc;
    --h-text-main: #334155;
    --h-text-muted: #64748b;
    --h-border: #e2e8f0;
}

body.hajj-page {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: var(--h-text-main);
    margin: 0;
    padding: 0;
}

/* Banner */
.hajj-banner {
    background: #113264;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}
.hajj-banner h1 {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}
.hajj-banner p.tentative {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}
.hajj-banner p.desc {
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Main Container */
.hajj-container {
    max-width: 950px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Package Block */
.pkg-block {
    margin-bottom: 2.5rem;
}
.pkg-header {
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.pkg-header.dark {
    background: #113264;
    color: #fff;
}
.pkg-header.dark h2 { color: #fff !important; }
.pkg-header.dark .pkg-sub { color: #facc15; }

.pkg-header.gold {
    background: #eab308;
    color: #113264;
}
.pkg-header.gold .pkg-sub { color: #113264; }

.pkg-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
}
.pkg-header .pkg-sub {
    font-size: 0.8rem;
    font-weight: 600;
}

.pkg-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

/* Left Column */
.pkg-left h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--h-dark);
    margin: 0 0 1rem 0;
}
.detail-card {
    background: var(--h-bg-light);
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.detail-card-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.detail-card-head i {
    width: 24px;
    text-align: center;
}
.detail-card-head h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--h-dark);
    margin: 0;
}
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.detail-list li {
    font-size: 0.8rem;
    color: var(--h-text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.detail-list li::before {
    content: '✓';
    color: #eab308;
    font-weight: bold;
}
.detail-list li strong {
    color: var(--h-text-main);
}

/* Right Column: Pricing */
.pkg-pricing-box {
    background: #fffbeb; /* light yellow */
    border: 2px solid #facc15;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    height: fit-content;
}
.pkg-pricing-box.dark-box {
    background: #113264;
    border: none;
    position: relative;
}
.premium-badge {
    position: absolute;
    top: -10px; /* actually inside top left in screenshot, let's adjust */
    left: 1.5rem;
    background: #eab308;
    color: #113264;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.pkg-pricing-box.dark-box .premium-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
    float: left;
}
.pkg-pricing-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--h-dark);
    margin: 0 0 1.5rem 0;
    clear: both;
}
.pkg-pricing-box.dark-box h3 {
    color: #fff !important;
    margin-top: 0;
}
.price-row {
    background: #fff;
    border: 1px solid var(--h-border);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.price-row.dark-row {
    border: none;
}
.price-row span {
    display: block;
    font-size: 0.75rem;
    color: var(--h-text-muted);
    margin-bottom: 0.2rem;
}
.price-row strong {
    display: block;
    font-size: 1.25rem;
    color: var(--h-dark);
}
.price-row small {
    display: block;
    font-size: 0.65rem;
    color: var(--h-text-muted);
    margin-top: 0.2rem;
}

.pkg-btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.btn-solid-dark {
    background: #113264;
    color: #fff;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
}
.btn-solid-gold {
    background: #eab308;
    color: #113264;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
}
.btn-solid-white {
    background: #fff;
    color: #113264;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
}
.icon-pink {
    color: #e11d48;
    margin-right: 0.4rem;
}

/* Hotel Blocks */
.hotel-block {
    margin-bottom: 2rem;
}
.hotel-block-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.hotel-card {
    background: var(--h-bg-light);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.hotel-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--h-dark);
    margin: 0 0 1rem 0;
}
.hotel-card .detail-list li::before {
    color: #eab308;
}

/* Features Block */
.features-section {
    margin: 4rem 0;
}
.features-section h2 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--h-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 2rem;
}
.req-block {
    border: 1px solid var(--h-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.req-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}
.req-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}
.req-header.dark h3 { color: #fff !important; }
.req-header i { font-size: 1.2rem; color: #fff; opacity: 0.8; }
.req-body {
    background: var(--h-bg-light);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}
.req-body .detail-list li { margin-bottom: 0.8rem; }

/* Accommodations Gallery */
.gallery-section {
    margin: 4rem 0;
    text-align: center;
}
.gallery-section h2 {
    font-size: 1.3rem;
    color: var(--h-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* CTA */
.cta-section {
    background: #113264;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}
.cta-section h2 {
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff !important;
}
.cta-section p {
    font-size: 0.9rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cta-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-gold { background: #eab308; color: #113264; }
.cta-green { background: #22c55e; color: #fff; }
.cta-white { background: #fff; color: #113264; }

@media (max-width: 768px) {
    .pkg-body, .hotel-block-body, .req-body { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0; }
    .cta-btns { flex-direction: column; }
}
