:root {
    --primary: #0F3D2E;
    --secondary: #C9A44C;
    --bg: #F7F5F0;
    --text: #1F2933;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;   
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

/* ==============================
   UMRAH HEADER – ARABIAN STYLE
============================== */

.umrah-header {
    position: relative;
    padding: 90px 20px 80px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 61, 46, 0.85) 0%,
            rgba(20, 90, 66, 0.85) 50%,
            rgba(11, 46, 34, 0.85) 100%
        ),
        url("images/makah.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}


/* Islamic geometric glow */
.umrah-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(212, 175, 55, 0.28) 1px,
        transparent 1px
    );
    background-size: 32px 32px;
    opacity: 0.25;
}
/* Soft vignette */
.umrah-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

/* Header content */
.umrah-header h1 {
    position: relative;
    z-index: 2;
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Gold subtitle line */
.umrah-header h1 span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

/* Description */
.umrah-header p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 1.15rem;
    line-height: 1.65;
    color: #e6f2ee;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {
    .umrah-header {
        padding: 70px 16px 60px;
    }

    .umrah-header h1 {
        font-size: 2.1rem;
    }

    .umrah-header h1 span {
        font-size: 1rem;
    }

    .umrah-header p {
        font-size: 1rem;
    }
}

/* ====================== NAVBAR ====================== */
nav {
    background-color: #fdfcf7;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    z-index: 100;
}

nav a {
    text-decoration: none;
    color: #1F2933;
    margin: 0 20px;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Dropdown container */
.dropdown {
    display: inline-block;
    position: relative;
}

/* Dropdown button */
.dropbtn {
    background-color: #0F3D2E;;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dropbtn:hover {
    background-color: #0F3D2E;
    transform: translateY(-2px);
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fdfcf7;
    min-width: 240px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    top: 55px;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #1F2933;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #0F3D2E;
    color: #fff;
}

/* Show dropdown when active */
.dropdown-content.active {
    display: block;
    animation: dropdownSlide 0.3s ease forwards;
}

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: scaleY(0.8);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ====================== MOBILE RESPONSIVE ====================== */
@media (max-width: 600px) {

    nav a,
    .dropbtn {
        display: none;
    }

    .hamburger {
        display: inline-block;
        cursor: pointer;
        font-size: 26px;
        color: #1F2933;
        background: none;
        border: none;
    }

    nav.active a,
    nav.active .dropbtn {
        display: block;
        margin: 12px 0;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        min-width: unset;
        border-radius: 0 0 12px 12px;
    }

    .dropdown-content a {
        padding: 12px 15px;
    }

    .dropdown-content.active {
        display: block;
    }

    nav {
        text-align: left;
        padding: 15px 20px;
    }
}

/* ====================== SECTIONS ====================== */
section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* ===================== COMPACT UMRAH BOOKING FORM ===================== */

/* =====================================================
   UMRAH TAXI BOOKING SECTION – COMPLETE CSS
===================================================== */

/* -------- SECTION BACKGROUND -------- */

#booking {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F3D2E 0%);
    position: relative;
    overflow: hidden;
}

#booking::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(212, 175, 55, 0.22) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    opacity: 0.25;
}

/* -------- MAIN CONTAINER -------- */

.booking-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: stretch; /* Equal height */
    z-index: 2;
}

/* -------- LEFT CONTENT & RIGHT FORM WRAPPER -------- */

.booking-text,
.booking-form-container {
    height: 100%;
    display: flex;
}

/* Center content vertically */
.booking-text {
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcf7 100%);
    padding: 42px 38px;
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    position: relative;
}

.booking-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #D4AF37, #e8c96b);
    border-radius: 24px 24px 0 0;
}

/* -------- TEXT STYLING -------- */

.booking-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1F2933;
    margin-bottom: 14px;
}

.booking-text p {
    font-size: 15.8px;
    line-height: 1.75;
    color: #374151;
}

/* -------- FEATURES -------- */

.taxi-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.feature {
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D4AF37;
}

.feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 6px;
}

.feature p {
    font-size: 13.5px;
    color: #4B5563;
}

/* -------- WHATSAPP BUTTON -------- */

.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 18px;
    background: linear-gradient(45deg, #25D366, #1ebe5d);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

/* -------- FORM CONTAINER -------- */

.booking-form-container {
    justify-content: center;
    align-items: center;
}

/* -------- UMRAH BOOKING FORM -------- */

.umrah-booking-form {
    width: 100%;
    max-width: 620px;
    height: 100%;
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcf7 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
}

.umrah-booking-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #D4AF37, #e8c96b);
}

/* Form title */
.umrah-booking-form h3 {
    font-size: 19px;
    font-weight: 800;
    color: #1F2933;
    text-align: center;
    margin-bottom: 16px;
}

/* Groups */
.umrah-booking-form .form-group {
    margin-bottom: 12px;
}

/* Labels */
.umrah-booking-form label {
    font-size: 13.5px;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 5px;
    display: block;
}

/* Inputs */
.umrah-booking-form input,
.umrah-booking-form textarea {
    width: 100%;
    padding: 9px 12px;
    font-size: 13.5px;
    border-radius: 9px;
    border: 1.4px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.22s ease;
}

.umrah-booking-form input:focus,
.umrah-booking-form textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2.5px rgba(212, 175, 55, 0.18);
    outline: none;
}

/* Textarea */
.umrah-booking-form textarea {
    min-height: 68px;
    resize: vertical;
}

/* Button */
.umrah-booking-form button {
    width: 100%;
    max-width: 280px;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #1F2933, #0F3D2E);
    color: #ffffff;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.umrah-booking-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* Success message */
#successMessage {
    font-size: 13px;
    font-weight: 700;
    color: #1F2933;
    margin-top: 10px;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 1024px) {
    #booking {
        padding: 64px 18px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* REMOVE forced height */
    .booking-text,
    .booking-form-container,
    .umrah-booking-form {
        height: auto;
        display: block;
    }

    .booking-text {
        padding: 36px 30px;
    }

    .taxi-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .booking-text,
    .umrah-booking-form {
        box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    
}

    #booking {
        padding: 52px 16px;
    }

    .booking-text {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .booking-text h2 {
        font-size: 26px;
        text-align: center;
    }

    .booking-text p {
        font-size: 14.8px;
        text-align: center;
    }

    .taxi-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature {
        padding: 16px 14px;
    }

    .booking-form-container {
        justify-content: center;
    }

    .umrah-booking-form {
        max-width: 100%;
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    #booking {
        padding: 42px 12px;
    }

    .booking-text {
        padding: 26px 18px;
    }

    .booking-text h2 {
        font-size: 22px;
    }

    .booking-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .umrah-booking-form h3 {
        font-size: 17px;
    }

    .umrah-booking-form input,
    .umrah-booking-form textarea,
    .umrah-booking-form button {
        font-size: 13px;
    }

    .umrah-booking-form textarea {
        min-height: 60px;
    }
}



/* ===============================
   Routes Grid
   =============================== */

.routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===============================
   Umrah Taxi Routes Section
   =============================== */

.routes-section {
    background: #f8fafc;
    padding: 60px 20px;
    text-align: center;
}

.routes-section h2 {
    font-size: 2.1rem;
    color: #1F2933;
    /* Trust Teal */
    font-weight: 700;
    margin-bottom: 10px;
}

.routes-section .subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===============================
   Routes Grid Layout
   =============================== */

.routes {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

/* ===============================
   Route Buttons
   =============================== */

.routes button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #ffffff;
    color: #0b3c49;
    font-size: 0.95rem;
    font-weight: 600;

    padding: 15px 18px;
    border-radius: 9px;
    border: 1px solid #e2e8f0;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* WhatsApp Icon */
.routes button i {
    font-size: 1.15rem;
    color: #1F2933;
    transition: color 0.3s ease;
}

/* Hover Effect */
.routes button:hover {
    background:  #0F3D2E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.routes button:hover i {
    color: #ffffff;
}

/* Active / Highlighted Button */
.routes button.active {
    background: #0F3D2E;
    /* Umrah Green */
    color: #ffffff;
    border-color: #1aa179;
}

.routes button.active i {
    color: #ffffff;
}

/* ===============================
   Mobile Optimization
   =============================== */

@media (max-width: 768px) {
    .routes-section {
        padding: 45px 15px;
    }

    .routes-section h2 {
        font-size: 1.7rem;
    }

    .routes button {
        font-size: 0.9rem;
        padding: 14px;
    }
}

/* ================= OUR CARS SECTION ================= */
#cars {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

#cars h2 {
    text-align: center;
    color: #1F2933;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

#cars p {
    text-align: center;
    font-size: 14px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Car Cards Container */
.car-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px)); /* 🔹 fixed max width */
    justify-content: center; /* center cards in row */
    gap: 25px;
}

/* Individual Car Card */
.car-card {
    background: #fdfcf7;
    border-radius: 18px;
    border: 2px solid #D4AF37;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px; /* 🔹 compact width */
    width: 100%;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Car Image */
.car-card img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.car-card:hover img {
    transform: scale(1.03);
}

/* Car Name */
.car-card h3 {
    color: #1F2933;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Car Description */
.car-card p {
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* WhatsApp Button - SINGLE CLASS */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto; /* push button to bottom */
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(45deg,#1F2933, #0F3D2E);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    width: 100%; /* full width for alignment */
    text-align: center;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

/* WhatsApp Icon */
.whatsapp-btn i {
    font-size: 16px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {

    .car-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center; /* 🔑 center cards */
    }

    .car-card {
        width: 100%;
        max-width: 420px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    #cars {
        padding: 40px 15px;
    }

    .car-features {
        grid-template-columns: 1fr;
    }

    .car-card {
        padding: 18px;
        text-align: center;
    }

    .car-card h3 {
        font-size: 16px;
    }

    .car-card p {
        font-size: 12.5px;
    }

    .whatsapp-btn {
        font-size: 12px;
        padding: 8px 12px;
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-btn i {
        font-size: 14px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    #cars h2 {
        font-size: 22px;
    }

    #cars p {
        font-size: 13px;
    }

    .car-card {
        max-width: 100%;
    }
}


/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    padding: 20px;
    border-left: 4px solid var(--secondary);
    background: #fafafa;
    border-radius: 8px;
}

/* CTA SECTION */
.cta {
    position: relative;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    background-color: var(--primary); /* fallback */
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/mecca.jpg');  /* ← your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;           /* 0.25–0.45 usually looks best */
    z-index: 0;
}

/* Darker overlay for better text readability */
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(25, 67, 53, 0.65);  /* your --primary color with opacity */
    z-index: 1;
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);     /* gold color looks premium */
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.whatsapp {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 164, 76, 0.4);
}
/* FOOTER */
footer {
    background: var(--primary);
    color: #dceae4;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.95rem;
}
#faq {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

#faq h2 {
    color: #0b3c49;
    font-size: 2rem;
    margin-bottom: 10px;
}

#faq p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #0b3c49;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f9f8;
}

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Toggle FAQ answer */
.faq-item.active .faq-answer {
    display: block;
}
footer {
    background: #145A42; /* Primary brand color */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    color:  var(--secondary);   /* White text for brand */
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 0.9rem;
    color:  white   /* Light gray subtext */
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color:   var(--secondary);    ;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color:  white;   /* White links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color:   white /* lighter shade on hover */
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: var(--secondary); /* WhatsApp green */
    color:black;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-footer i {
    font-size: 1.2rem;
}

.whatsapp-footer:hover {
    background: var(--secondary); /* Darker WhatsApp green */
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 15px 20px;
    border-top: 1px solid #0f4736; /* Slightly darker green */
    font-size: 0.85rem;
    color:  white;   /* Light gray */
    background: #0f4736; /* Darker bottom footer */
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .footer-contact {
        margin-top: 20px;
    }
}