/* --- NAFFEES TRAVELS EXACT CLONE CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --brand-dark: #1e293b; /* Dark blue/slate */
    --brand-gold: #dcb14a; /* Precise gold from screenshot */
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc; /* Very light gray/blueish */
    --badge-red: #ef4444;
    --border-color: #e2e8f0;
}

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

/* Typography Classes */
.font-serif { font-family: 'Playfair Display', serif; }
.font-sans { font-family: 'Inter', sans-serif; }
.text-gold { color: var(--brand-gold) !important; }
.text-dark { color: var(--brand-dark) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Subheading small uppercase */
.section-subhead {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
    display: block;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: 0;
    margin-bottom: 3rem;
}
.section-title-center {
    text-align: center;
}

/* Base Buttons */
.btn-gold {
    background-color: var(--brand-gold);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}
.btn-gold:hover { opacity: 0.9; }

.btn-pill {
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
    transition: background 0.3s, color 0.3s;
    box-sizing: border-box;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: var(--brand-dark);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--brand-gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--brand-gold);
    transition: all 0.3s;
    text-align: center;
    box-sizing: border-box;
}
.btn-outline-gold:hover {
    background-color: var(--brand-gold);
    color: #fff;
}
.btn-outline-gold:hover {
    background-color: var(--brand-gold);
    color: #fff;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---------------- HEADER ---------------- */
.h-header {
    background: #fff;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}
.h-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.h-logo-n {
    background-color: var(--brand-gold);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 2px;
}
.h-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.h-logo-text-top {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
}
.h-logo-text-bottom {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--brand-gold);
    letter-spacing: 2px;
}

.h-nav {
    display: flex;
    gap: 2rem;
}
.h-nav a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}
.h-nav a:hover, .h-nav a.active {
    color: var(--brand-dark);
}

/* ---------------- HERO ---------------- */
.h-hero {
    position: relative;
    padding: 6rem 0 7rem 0; /* Reduced top padding, slightly more on bottom */
    text-align: center;
    overflow: hidden;
}
.h-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/herobg-main.png'); /* Local image as requested */
    background-size: cover;
    background-position: center;
    animation: zoomBg 20s infinite alternate ease-in-out;
}
@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.h-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.5); /* Base overlay */
    z-index: 1;
    transition: background 0.5s ease-in-out;
}
.h-hero:hover::before {
    background: rgba(17, 24, 39, 0.75); /* Darker overlay on hover for clearer text */
}
.h-hero .container {
    position: relative;
    z-index: 2;
}

/* Animations for Hero Content */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.h-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}
.h-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
}
.h-hero h1 span {
    color: var(--brand-gold);
}
.h-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 auto 2rem auto; /* Reduced from 3rem to 2rem */
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
}
.h-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.8s;
}

/* ---------------- 3 FEATURES ---------------- */
.h-features-strip {
    background: #fff;
    padding: 5rem 0;
}
.h-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.h-feat-card {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.h-feat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--border-color);
}
.h-feat-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}
.h-feat-card:hover .h-feat-icon-wrapper {
    background: var(--brand-gold);
}
.h-feat-card:hover .h-feat-icon-wrapper i {
    color: #fff;
    transform: scale(1.1);
}
.h-feat-icon-wrapper i {
    color: var(--brand-gold);
    font-size: 1.4rem;
    transition: all 0.4s ease;
}
.h-feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 1rem 0;
}
.h-feat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------------- OUR SERVICES ---------------- */
.h-services {
    background: var(--bg-light);
    padding: 6rem 0;
}
.h-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.h-srv-card {
    background: #fff;
    border-radius: 12px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    cursor: pointer;
}
.h-srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 177, 74, 0.15); /* Soft gold shadow */
}
.h-srv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(220, 177, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}
.h-srv-card:hover .h-srv-icon-wrapper {
    background: var(--brand-gold);
}
.h-srv-card:hover .h-srv-icon-wrapper i {
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.h-srv-icon-wrapper i {
    color: var(--brand-gold);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}
.h-srv-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 1rem 0;
}
.h-srv-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---------------- TOP HOTELS ---------------- */
.h-hotels {
    background: #fff;
    padding: 6rem 0;
}
.h-hotels-intro {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.h-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.h-hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.h-hotel-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.h-hotel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-gold);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}
.h-hotel-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.h-hotel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 0.5rem 0;
}
.h-hotel-loc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.h-hotel-loc i {
    color: var(--text-muted);
    margin-right: 0.3rem;
}
.h-hotel-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.h-hotel-detail-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.h-hotel-detail-item i {
    color: var(--brand-gold);
    font-size: 0.9rem;
}
.h-hotel-content .btn-gold {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* ---------------- HAJJ & UMRAH PLANS ---------------- */
.h-plans {
    background: var(--bg-light);
    padding: 6rem 0;
}
.h-plans-intro {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.h-pill-toggle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
}
.h-pill-dark { background: var(--brand-dark); }
.h-pill-gold { background: var(--brand-gold); }

/* Hajj Grid */
.h-hajj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2.5rem auto 5rem auto;
}

/* Umrah Grid */
.h-umrah-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem auto 0 auto;
}

/* Package Card */
.h-pkg-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}
.h-pkg-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-gold);
}
.h-pkg-badge-red {
    position: absolute;
    top: -10px; right: 1rem;
    background: var(--badge-red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.h-pkg-badge-gray {
    position: absolute;
    top: 2rem; right: 1rem;
    background: #f1f5f9;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}
.h-pkg-icon-black {
    background: var(--brand-dark);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}
.h-pkg-card:hover .h-pkg-icon-black {
    transform: scale(1.1) rotate(5deg);
}
.h-pkg-icon-gold-outline {
    width: 48px; height: 48px;
    border: 2px solid rgba(220, 177, 74, 0.3);
    color: var(--brand-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}
.h-pkg-card:hover .h-pkg-icon-gold-outline {
    background: var(--brand-gold);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.h-pkg-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

/* Pricing Table (Hajj) */
.h-price-table {
    margin-bottom: 1.5rem;
}
.h-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}
.h-price-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.h-price-row strong {
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 700;
}

/* Price Single (Umrah) */
.h-price-large {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}

/* Features List */
.h-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}
.h-pkg-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.h-pkg-features li i {
    color: var(--brand-gold);
    font-size: 1rem;
    margin-top: 2px;
}
.h-pkg-card .btn-outline-gold {
    width: 100%;
}

/* Separator Line */
.h-separator-line {
    border-top: 1px solid var(--border-color);
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.h-separator-line .h-pill-toggle {
    position: relative;
    top: -18px; /* half of pill height to center it on line */
}

/* ---------------- TOURS ---------------- */
.h-tours {
    background: #fff;
    padding: 6rem 0;
}
.h-tours-intro {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.h-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.h-tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.h-tour-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.h-flight-badge {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    background: #fff;
    color: var(--brand-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.h-flight-badge i { color: #3b82f6; } /* Blue icon as per typical flight badges if not specified, or just text color */
.h-tour-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.h-tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 0.5rem 0;
}
.h-tour-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.h-tour-duration i { color: var(--brand-gold); }
.h-tour-content .btn-outline-gold {
    width: 100%;
    margin-top: auto;
}

/* ---------------- ABOUT ---------------- */
.h-about {
    background: var(--bg-light);
    padding: 6rem 0;
}
.h-about-intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 4rem auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.h-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.h-about-left h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 1rem 0;
}
.h-about-quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.h-ceo-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 0.2rem;
}
.h-ceo-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}
.h-about-right-img {
    position: relative;
    z-index: 1;
}
/* The solid brownish/gold offset background */
.h-about-right-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background-color: #a89f91; /* Color extracted from screenshot approximation */
    z-index: -1;
    border-radius: 4px;
}
.h-about-right-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border: 8px solid #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ---------------- CONTACT ---------------- */
.h-contact {
    background: #fff;
    padding: 6rem 0;
}
.h-contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.h-contact-split h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 1.5rem 0;
}
.h-contact-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.h-contact-card i {
    color: var(--brand-gold);
    font-size: 1.5rem;
    margin-top: 2px;
}
.h-contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 0.4rem 0;
}
.h-contact-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Form Card */
.h-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}
.h-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.h-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.h-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-main);
    box-sizing: border-box;
}
.h-input:focus {
    outline: none;
    border-color: var(--brand-gold);
}
textarea.h-input {
    height: 150px;
    resize: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .h-features-grid { gap: 1.5rem; }
    .h-services-grid { grid-template-columns: repeat(2, 1fr); }
    .h-hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .h-umrah-grid { grid-template-columns: repeat(2, 1fr); }
    .h-tours-grid { grid-template-columns: repeat(2, 1fr); }
    .h-about-split { gap: 2rem; }
}

@media (max-width: 768px) {
    /* .h-nav { display: none; } removed so mobile menu works */
    .h-hero h1 { font-size: 3rem; }
    .h-features-grid { grid-template-columns: 1fr; }
    .h-services-grid { grid-template-columns: 1fr; }
    .h-hotels-grid { grid-template-columns: 1fr; }
    .h-hajj-grid, .h-umrah-grid { grid-template-columns: 1fr; }
    .h-tours-grid { grid-template-columns: 1fr; }
    .h-about-split, .h-contact-split { grid-template-columns: 1fr; }
    .h-form-row { grid-template-columns: 1fr; }
    .h-about-right-img::before { display: none; }
}

/* ---------------- FOOTER ---------------- */
.h-footer {
    background-color: #0f172a;
    padding: 5rem 0;
    color: #fff;
}
.h-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.f-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-right: 2rem;
}
.f-socials {
    display: flex;
    gap: 1rem;
}
.f-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.f-socials a:hover {
    background-color: #dcb14a;
    border-color: #dcb14a;
}
.f-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #dcb14a;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.f-links li {
    margin-bottom: 1rem;
}
.f-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.f-links a:hover {
    color: #dcb14a;
}
.f-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}
.f-contact-item i {
    color: #dcb14a;
    font-size: 1.1rem;
    margin-top: 2px;
}
@media (max-width: 1024px) {
    .h-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .h-footer-grid { grid-template-columns: 1fr; }
}

/* Add image hover animations */
.h-hotel-img, .h-tour-img {
    transition: transform 0.5s ease;
}
.h-hotel-card:hover .h-hotel-img,
.h-tour-card:hover .h-tour-img {
    transform: scale(1.1);
}
.h-about-right-img {
    overflow: hidden;
    border-radius: 12px;
}
.h-about-right-img img {
    transition: transform 0.5s ease;
}
.h-about-right-img:hover img {
    transform: scale(1.05);
}


/* Mobile Menu Styles */
.h-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--brand-dark, #113264);
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 992px) {
    .h-menu-toggle {
        display: block;
    }
    
    .h-nav {
        position: fixed;
        top: 80px; /* Adjust based on header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .h-nav.active {
        left: 0 !important;
    }
    
    .h-nav a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .h-nav a:last-child {
        border-bottom: none;
    }
    
    /* Make sure the header container holds the toggle correctly */
    .h-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    /* Hide the "Book Now" button on very small screens to make room for logo + hamburger, or keep it */
    @media (max-width: 500px) {
        .h-header .btn-gold.btn-pill {
            display: none;
        }
    }
}


/* Mobile Menu Alignment Fix */
@media (max-width: 992px) {
    .h-header .container {
        justify-content: space-between !important;
    }
    .h-menu-toggle {
        margin-left: auto;
    }
    .h-header .container > div:last-child:not(.h-menu-toggle) {
        display: none !important;
    }
}
