/* Global Styles */
:root {
    --primary-color: #cfa15b;
    /* Premium Gold */
    --primary-dark: #b58b4c;
    /* Darker Gold for hover */
    --secondary-color: #1a1a1a;
    /* Dark Black/Grey */
    --text-color: #333;
    --light-text: #fff;
    --gray-bg: #f9f9f9;
    --red-btn: #b58b4c;
    /* Brown/Red Button Color */
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #ccc;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info a {
    margin-right: 20px;
    color: #ccc;
}

.top-info a:hover {
    color: var(--primary-color);
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.logo img {
    max-height: 70px;
    /* yahan size chhota kar lo */
    max-width: 150px;
    /* optional */
    width: auto;
    height: auto;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    display: block;
    /* Override Bootstrap's display: none */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    border-top: 3px solid var(--primary-color);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 13px;
    text-transform: capitalize;
    color: #555;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
    /* Indent effect */
}

/* CTA Button in Nav */
.nav-cta .btn-book {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-cta .btn-book:hover {
    background: #b58b4c;
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* --- HERO SECTION REDESIGN --- */
.hero {
    /* Using a similar muted dark background placeholder or gradient to match screenshot feel if image not available */
    /* Or keeping the previous image but applying a darker overlay */
    color: #fff;
    overflow: visible;
    padding: 0;
    position: relative;
    background: #000;
    min-height: 85vh;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        /* Smaller height for mobile */
        min-height: 400px;
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    /* Fill container */
    display: block;
    object-fit: cover;
    /* Crop to fill without distortion */
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for text contrast */
    z-index: 1;
}

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

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Side: Text */
.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-red {
    display: inline-block;
    background-color: var(--red-btn);
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}



/* Right Side: Form */
.hero-form {
    flex: 0 0 400px;
    max-width: 100%;
}

/* Swiper Styles */
.hero-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.quote-box {
    border: 2px solid #cfa15b;
    /* Yellow Outline */
    border-radius: 8px;
    padding: 30px;
    background: transparent;
    /* Transparent background */
    box-shadow: none;
    animation: bounceInRight 1.5s both;
    margin-top: 42px;
}

/* Ensure text is readable on yellow background */
.quote-box h3,
.form-group label {
    color: #fff;
    /* Keep white if background is dark enough, or switch to #333 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-group input {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.quote-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

.form-group input:focus {
    border-color: #fff;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Flags Section */
.flags-section {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    /* Hide overflow for marquee */
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
    height: 60px;
    /* Increased size */
    width: auto;
    margin: 0 20px;
    /* Spacing between flags */
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

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

    100% {
        transform: translateX(-50%);
        /* Move half way because content is doubled */
    }
}

/* Responsive Redesign */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        display: none;
    }

    .hero-text p {

        display: none;
    }

    .hero-text .btn-red {
        display: none;
    }


    .hero-form {
        width: 100%;
        flex: none;
        /* Reset flex basis */
        max-width: 450px;
        /* Prevent being too wide on tablets */
        margin: 0 auto;
        /* Center align the form */
    }

    .quote-box {
        text-align: left;
        margin-top: -137px;
    }


}

/* --- WELCOME SECTION --- */
.section-padding {
    padding: 60px 0;
}

.welcome-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.welcome-text {
    flex: 1;
    min-width: 300px;
}

.text-red {
    color: var(--red-btn);
}

.welcome-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-quote {
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.welcome-desc {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}

/* Features */
.features-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--red-btn);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 30px;
    color: var(--red-btn);
    transition: 0.3s;
}

.feature-item:hover .icon-circle {
    background: var(--red-btn);
    color: #fff;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* Video Column */
.welcome-video {
    flex: 0 0 400px;
    max-width: 100%;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
    /* Tall video format */
    background: #000;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: #fff;
}

.video-overlay-content h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.stars {
    color: var(--primary-color);
    /* Gold stars */
    font-size: 20px;
    margin-bottom: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Red Banner */
.nusuk-banner {
    background: var(--red-btn);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Welcome */
@media (max-width: 991px) {
    .welcome-row {
        flex-direction: column;
    }

    .welcome-video {
        width: 100%;
        flex: none;
    }

    .video-container {
        height: 400px;
    }
}

/* Banner Animation Items */
.nusuk-banner .container-fluid {
    padding: 0;
}

.banner-item {
    display: inline-block;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    /* Vertically center */
}

.nusuk-banner {
    padding: 0;
    /* Remove padding as line-height handles, or keep small */
    height: 50px;
    display: flex;
    align-items: center;
}

/* Faster animation for Nusuk Banner */
.nusuk-banner .marquee-content {
    animation-duration: 20s;
    /* Increased speed (lower duration) */
}

/* Refining Banner Look */
.nusuk-banner {
    border-radius: 8px;
    /* Rounded corners */
    margin-bottom: 40px;
    /* Spacing from bottom */
}

/* --- FEEDBACKS SECTION --- */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns strictly */
    gap: 15px;
}

.feedback-item {
    aspect-ratio: 9/16;
    /* Portrait Video ratio */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, rgba(0, 0, 0, 0.4));
}

.overlay-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
    color: #fff;
    width: 100%;
}

.overlay-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
}

.play-btn-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.stars-small {
    color: #ffd700;
    font-size: 12px;
}

.video-controls-fake {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 10px;
    margin-top: 10px;
}

.video-controls-fake .progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    border-radius: 2px;
}

/* Responsive Feedbacks */
@media (max-width: 991px) {
    .feedbacks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .feedbacks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- TRANSPORT GRID SECTION --- */
.transport-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.transport-card {
    background: #1a2b48;
    /* Dark Blue */
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.vehicle-img {
    height: 200px;
    background: #fff;
    /* White bg for car images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full car */
    padding: 10px;
}

.vehicle-details {
    padding: 0;
}

.vehicle-details h3 {
    background: #152238;
    /* Slightly darker header */
    margin: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid #2c3e50;
    border-bottom: 1px solid #2c3e50;
}

.vehicle-specs {
    list-style: none;
    padding: 20px 20px;
    margin: 0;
}

.vehicle-specs li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #e0e0e0;
}

.vehicle-specs li i {
    width: 25px;
    color: #d9232d;
    /* Red icons */
    margin-right: 10px;
}

.book-btn-wrapper {
    padding: 0 20px 20px;
}

.btn-block-red {
    display: block;
    width: 100%;
    background: #b58b4c;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    /* Slight rounding for button */
    transition: background 0.3s;
}

.btn-block-red:hover {
    background: #b58b4c;
    color: #fff;
    text-decoration: none;
}

/* Responsive Transport Grid */
@media (max-width: 991px) {
    .transport-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transport-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- UMRAH TAXI BANNER --- */
.umrah-taxi-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1580418576402-915998f5a438?q=80&w=1500&auto=format&fit=crop');
    /* Makkah Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 0;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.umrah-taxi-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.text-red {
    color: #b58b4c;
}

.subtitle-italic {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 25px;
    color: #eee;
}

.description-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ddd;
}

.phone-text {
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-group-banner {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-red-wide {
    background: #b58b4c;
    color: #fff;
    padding: 10px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 150px;
}

.btn-red-wide:hover {
    background: #b58b4c;
    color: #fff;
    transform: translateY(-2px);
}

/* --- FEATURES SPLIT SECTION --- */
.features-split-section {
    background: #f9f9f9;
    /* Light bg */
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.features-grid-left {
    flex: 0 0 500px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* No gap, borders handle separation */
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
    margin: 0;
    /* Align borders */
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    color: #ccc;
    font-weight: 600;
}

.feature-box i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.feature-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Active State (Red Box) */
.feature-box.daily-active,
.feature-box:hover {
    background: #b58b4c;
    border-color: #b58b4c;
}

.feature-box.daily-active .box-number,
.feature-box:hover .box-number {
    color: rgba(255, 255, 255, 0.6);
}

.feature-box.daily-active i,
.feature-box:hover i {
    color: #fff;
}

.feature-box.daily-active h4,
.feature-box:hover h4 {
    color: #fff;
}

.features-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-text-right h3 {
    font-size: 12px;
    font-weight: 500;
    color: #777;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-text-right p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Responsive Features */
@media (max-width: 991px) {
    .features-row {
        flex-direction: column;
    }

    .features-grid-left {
        width: 100%;
        flex: none;
    }
}

/* --- POPULAR ROUTES SECTION --- */
.popular-routes-section {
    background: #fff;
    overflow: hidden;
    /* Hide horizontal scrollbar if any */
}

.routes-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

.routes-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.routes-container::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.route-card {
    min-width: 250px;
    border: 1px solid #eee;
    background: #fff;
}

.route-img {
    height: 150px;
    overflow: hidden;
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-info {
    padding: 15px;
    font-size: 13px;
    color: #555;
    text-align: center;
    line-height: 1.4;
}

.btn-red-small {
    background: #b58b4c;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* --- FAQ SECTION --- */
.faq-section {
    background: #f4f6f9;
    /* Light grey bg */
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item i {
    color: #999;
    /* Grey bullet */
    margin-right: 12px;
    font-size: 14px;
}

.faq-item span {
    font-weight: 600;
}


/* --- FOOTER SECTIONS --- */

/* Call Us Banner */
.call-us-banner {
    background: #1a2b48;
    /* Dark Blue */
    padding: 60px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.call-us-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Main Footer */
.main-footer {
    background: #111a2b;
    /* Even Darker Blue */
    color: #ccc;
    padding-top: 30px;
    font-size: 14px;
}

.footer-top {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1a2b48;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #d9232d;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #d9232d;
}

.footer-col p {
    line-height: 1.8;
    color: #bbb;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    /* FontAwesome Chevron Right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #d9232d;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    background: #0d131f;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


/* --- VIP FOOTER STYLES --- */

/* VIP Variables */
:root {
    --vip-gold: #c5a059;
    --vip-gold-hover: #e6c67a;
    --vip-dark: #0a101d;
    /* Deep Dark Blue */
    --vip-dark-lighter: #131e32;
    --vip-red: #bb1520;
}

/* Call Us Banner VIP */
.vip-banner {
    background: linear-gradient(rgba(17, 26, 43, 0.95), rgba(17, 26, 43, 0.9)), url('https://images.unsplash.com/photo-1548013146-72479768bada?q=80&w=1500&auto=format&fit=crop');
    /* Map or Road texture */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
    position: relative;
    border-top: 4px solid var(--vip-gold);
}

.vip-banner h2 {
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    /* Or serif-like if available */
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-banner p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-vip {
    background: transparent;
    color: var(--vip-gold);
    border: 2px solid var(--vip-gold);
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--vip-gold);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-vip:hover::before {
    width: 100%;
}

.btn-vip:hover {
    color: #000;
    border-color: var(--vip-gold);
}

/* Main Footer VIP */
.vip-footer {
    background: var(--vip-dark);
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Dotted pattern */
    opacity: 0.5;
}

.footer-logo img {
    max-width: 180px;
    /* filter: brightness(0) invert(1); REMOVED */
}

.footer-tagline {
    color: #889bbd;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.fallback-logo {
    color: var(--vip-gold) !important;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.vip-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    /* Softer squares */
    margin: 0 8px;
    font-size: 18px;
}

.vip-socials a:hover {
    background: var(--vip-gold);
    color: #000;
    border-color: var(--vip-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.vip-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--vip-gold);
}

.vip-heading::after {
    display: none;
    /* remove old style */
}

/* Links VIP */
.vip-links li {
    margin-bottom: 15px;
}

.vip-links a {
    color: #a0aec0;
    font-size: 15px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.vip-links a::before {
    content: '\\f054';
    /* Chevron right small */
    color: var(--vip-gold);
    font-size: 10px;
    margin-right: 12px;
    transition: margin-right 0.3s;
}

.vip-links a:hover {
    color: var(--vip-gold);
    padding-left: 5px;
    border-bottom-color: rgba(197, 160, 89, 0.3);
}

.vip-links a:hover::before {
    margin-right: 8px;
}

/* Contact VIP */
.vip-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.icon-box {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--vip-gold), #9e7f43);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom VIP */
.vip-bottom {
    background: #02060c;
    /* Blackest blue */
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #718096;
    font-size: 14px;
}

.gold-text {
    color: var(--vip-gold);
    font-weight: 600;
}

.footer-links-inline a {
    color: #718096;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-inline a:hover {
    color: var(--vip-gold);
}


/* --- GRID SYSTEM FOR FOOTER (Bootstrap-like) --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-3,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* --- ALIGNMENT FIXES --- */
/* .footer-col alignment handled by padding classes */

/* Indent content to align with the text of the heading (offset by border) */
.footer-col p,
.footer-links,
.contact-info {
    padding-left: 15px;
}

/* Override existing margins/paddings if needed */
.footer-links.vip-links,
.contact-info.vip-contact {
    margin-top: 10px;
}


/* --- ICON FIXES --- */
.vip-socials a i,
.icon-box i {
    display: block;
    line-height: 1;
    /* Fix vertical alignment */
}

.vip-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* --- FONT AWESOME FIXES --- */

/* Fix for chevron arrows in footer not rendering */
.footer-links a::before,
.vip-links a::before {
    font-family: 'Font Awesome 6 Free' !important;
    /* Ensure correct version */
    font-weight: 900 !important;
    /* Solid icons need weight 900 */
    content: '\f105' !important;
    /* Standard chevron right */
}

/* Ensure social icons render correctly */
.social-icons i,
.vip-socials i {
    font-family: 'Font Awesome 6 Brands' !important;
    /* Brands have their own family sometimes, but usually standard works if weight is correct. Brands are 400. */
    font-weight: 400 !important;
    /* Brands are usually 400 */
}

/* Fix specific brand rendering issues if any */
.fa-facebook,
.fa-x-twitter,
.fa-linkedin,
.fa-youtube,
.fa-instagram {
    font-family: 'Font Awesome 6 Brands' !important;
}


/* --- ICON ALIGNMENT PERFECT FIX --- */
.icon-box {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    line-height: normal !important;
    /* Reset line-height */
}

.icon-box i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    /* Ensure generic inline-block behavior */
    vertical-align: middle !important;
    line-height: 1 !important;
}

/* Specific styling for the icons to look sharper */
.icon-box .fa-envelope {
    font-size: 16px;
    margin-top: 1px !important;
}

/* Visual tweaking */
.icon-box .fa-headset {
    font-size: 16px;
    margin-top: 1px !important;
}

.icon-box .fa-map-marker-alt {
    font-size: 16px;
    margin-top: -1px !important;
}

/* Map marker sometimes sits high */


/* --- CONTACT PAGE VIP STYLES --- */

/* Page Header */
/* Unused after banner removal
.vip-page-banner {
    background-color: #0a101d;
    padding: 200px 0;
    position: relative;
    margin-bottom: 0;
} 
*/
/* Added utility classes for new headers */
.text-dark {
    color: #333 !important;
}

.text-muted {
    color: #777 !important;
}

/*
.vip-page-banner .overlay-dark {
    background: rgba(10, 16, 29, 0.85);
     Dark Blue Tint 
}
*/

/* --- ENHANCED BANNER TYPOGRAPHY & ANIMATIONS --- */

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #000, 0 0 20px rgba(0, 0, 0, 0.5);
    /* 3D effect */
    position: relative;
    display: inline-block;

    /* Box Styling */
    border: 3px solid #cfa15b;
    /* Gold Border */
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.4);
    /* Semi-transparent dark background */
    backdrop-filter: blur(5px);
    /* Blur effect */
}

/* Remove the old underline since we have a box now */
.page-title::after {
    display: none;
}

.page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #cfa15b !important;
    /* Gold Text */
    letter-spacing: 1px;
    max-width: 800px;
    margin: 20px auto 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
        padding: 10px 20px;
        border-width: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* Hover effect for cards */
.transport-card,
.blog-card,
.country-card,
.content-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover,
.blog-card:hover,
.country-card:hover,
.content-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    border-color: #cfa15b !important;
    /* Gold border on hover */
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--vip-dark);
    color: var(--vip-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.info-details p {
    color: #555;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.info-details .small-text {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-top: 3px;
}

/* Form Container */
.vip-form-container {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--vip-gold);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--vip-dark);
    margin-bottom: 10px;
}

.form-desc {
    color: #777;
    margin-bottom: 30px;
}

.form-control-vip {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    margin-bottom: 0;
    color: #333;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control-vip:focus {
    border-color: var(--vip-gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-vip-gold {
    background: var(--vip-gold);
    color: #fff;
    /* Gold text on dark might be better? No, white on gold is classic */
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}

.btn-vip-gold i {
    margin-left: 10px;
}

.btn-vip-gold:hover {
    background: #b08d4b;
    /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 141, 75, 0.4);
}

.map-section {
    line-height: 0;
    /* Remove gap below iframe */
}


/* --- FORM & GRID FIXES --- */

/* Missing col-md-12 definition */
.col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Enhanced Input Styling */
.form-control-vip {
    background-color: #f7f9fc !important;
    border: 1px solid #e1e8ed !important;
    border-radius: 8px !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    color: #2c3e50 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
}

.form-control-vip:focus {
    background-color: #fff !important;
    border-color: var(--vip-gold) !important;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15) !important;
    transform: translateY(-2px);
}

textarea.form-control-vip {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #5d6d7e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.btn-vip-gold {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    letter-spacing: 1.5px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-vip-gold:hover {
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}


/* --- ABOUT PAGE VIP STYLES --- */

/* Hero Specific */
.about-banner {
    /* Background image removed */
    background: none;
}

/* Intro Section */
.about-text-vip {
    padding-right: 30px;
}

.sub-heading-gold {
    color: var(--vip-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title-vip {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lead-text {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-vip p {
    color: #666;
    margin-bottom: 15px;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    /* or a handwritten font if added */
    font-size: 20px;
    color: #222;
    font-weight: 700;
    border-top: 1px solid #ddd;
    display: inline-block;
    padding-top: 10px;
    width: 200px;
}

/* Image Frame */
.about-image-vip {
    position: relative;
    padding: 20px;
}

.img-frame-gold {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-frame-gold::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--vip-gold);
    z-index: -1;
}

.img-frame-gold img {
    width: 100%;
    display: block;
}

/* VIP Features Grid */
.bg-light-pattern {
    background-color: #fcfcfc;
    background-image: radial-gradient(#e0d0b0 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
}

.vip-feature-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vip-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--vip-gold);
}

.vip-feature-box:hover .icon-gold-large {
    transform: scale(1.1) rotate(10deg);
    background: var(--vip-gold);
    color: #fff;
}

.icon-gold-large {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--vip-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 30px;
    transition: all 0.4s ease;
}

.vip-feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.vip-feature-box p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Section */
.vip-stats-sec {
    background: url('https://images.unsplash.com/photo-1596700874068-c91350a58141?q=80&w=1600&auto=format&fit=crop');
    /* Desert or abstract dark bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.overlay-gold-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 16, 29, 0.9);
}

.stat-item {
    color: #fff;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--vip-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* CTA Section */
.vip-cta-section {
    background: #fff;
    padding: 80px 0;
}

.vip-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #111;
    margin-bottom: 15px;
}

.vip-cta-section p {
    font-size: 18px;
    color: #666;
}


/* --- ABOUT PAGE ENHANCEMENTS --- */

/* Parallax Effect */
.parallax-effect {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Mission & Vision Section */
.mission-row {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.mv-box {
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-mission {
    background: #1a2b48;
    /* Dark Blue */
    color: #fff;
}

.mv-vision {
    background: #d9232d;
    /* Red */
    color: #fff;
}

.mv-values {
    background: #0a101d;
    /* Deep VIP Dark */
    color: #fff;
    border-right: none;
}

.mv-box:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.mv-mission:hover {
    background: #233758;
}

.mv-vision:hover {
    background: #b01b24;
}

.mv-values:hover {
    background: #131e32;
}

.mv-icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--vip-gold);
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.mv-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Animations (Simple Fade Up) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.vip-feature-box,
.mv-box,
.stat-item {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Stagger animations */
.vip-feature-box:nth-child(1) {
    animation-delay: 0.1s;
}

.vip-feature-box:nth-child(2) {
    animation-delay: 0.2s;
}

.vip-feature-box:nth-child(3) {
    animation-delay: 0.3s;
}

.vip-feature-box:nth-child(4) {
    animation-delay: 0.4s;
}

.vip-feature-box:nth-child(5) {
    animation-delay: 0.5s;
}

.vip-feature-box:nth-child(6) {
    animation-delay: 0.6s;
}


/* --- FIX MISSION/VISION COLORS (WHITE) --- */

.mv-box {
    background: #fff !important;
    /* Force white background */
    color: #333 !important;
    /* Dark text */
    border: 1px solid #eee;
    /* Add thin border for separation */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Gentle shadow */
}

/* Remove the specific colored backgrounds */
.mv-mission,
.mv-vision,
.mv-values {
    background: #fff !important;
}

/* Update text colors inside if specifically targeted */
.mv-box h3 {
    color: #222 !important;
}

.mv-box p {
    color: #666 !important;
}

/* Ensure icons stand out on white */
.mv-icon {
    background: rgba(197, 160, 89, 0.1) !important;
    color: var(--vip-gold) !important;
}

/* Hover effect can be simple lift, no drastic color change */
.mv-box:hover {
    background: #fff !important;
    border-color: var(--vip-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* --- RE-APPLYING BOOTSTRAP GRID (Previous attempt failed) --- */

/* Text Align */
.text-center {
    text-align: center !important;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6,
.col-md-3,
.col-lg-4,
.col-lg-6,
.col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 600px) {
    .vip-page-banner {
        background-image: url('assets/images/page_header_bg.png') !important;
        /* High contrast Kaaba image */
        background-size: cover !important;
        background-position: center center !important;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Stats Fix */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}

.stat-item p {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    white-space: normal;
    /* Ensure text wraps */
}

/* Spacing */
.mb-4 {
    margin-bottom: 24px !important;
}

.mt-4 {
    margin-top: 24px !important;
}


/* --- GLOBAL RESET (Critical for Grid) --- */
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* --- FOOTER ENHANCEMENTS --- */
.vip-heading {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    /* Space for accent */
    border-left: 3px solid var(--vip-gold);
    /* Gold accent line */
    line-height: 1.2;
}

.footer-col {
    padding-bottom: 20px;
    /* Spacing between rows if wrapped */
}

/* Ensure 4 column alignment on large screens */
@media (min-width: 992px) {
    .footer-col {
        margin-bottom: 0;
    }
}

/* Improve Link Spacing */
.vip-links li {
    margin-bottom: 12px;
}

.vip-links a {
    font-size: 15px;
    color: #b0b0b0;
    /* Softer grey */
}

.vip-links a:hover {
    color: var(--vip-gold);
    padding-left: 8px;
    /* More pronounced hover slide */
}

/* Contact Info Alignment */
.vip-contact li {
    align-items: center !important;
    /* Vertically center icon with text */
    margin-bottom: 18px;
}

.vip-contact .icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 15px;
    background: rgba(197, 160, 89, 0.15);
    /* Transparent gold bg */
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--vip-gold);
    box-shadow: none;
    /* Remove heavy shadow for cleaner look */
}

.vip-contact span {
    font-size: 15px;
    color: #ccc;
    line-height: 1.4;
}

/* Logo Alignment in Footer */
.footer-logo img {
    max-height: 80px;
    /* Ensure logo isn't too huge */
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}


/* --- FORCE FOOTER 1 ROW (4 Columns) --- */
@media (min-width: 768px) {
    .footer-widgets .col-md-6 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    /* Ensure padding doesn't break layout */
    .footer-col {
        padding-right: 10px;
        padding-left: 10px;
    }
}


/* --- HERO VIDEO BACKGROUND --- */
.hero {
    position: relative;
    overflow: hidden;
    /* Ensure video doesn't spill out */
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Base level */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed shadow */
    z-index: 1;
}

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

/* --- BANNER IMAGE FIX --- */
.vip-page-banner {
    background: url('assets/images/new_page_banner.jpg') no-repeat center center / cover !important;
    position: relative;
    padding: 180px 0;
    text-align: center;
    color: #fff;
}

.page-header {
    background: url('assets/images/page_header_bg.png') no-repeat center center / cover !important;
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.vip-page-banner .overlay-dark,
.page-header .overlay {
    background: transparent;
    /* Removed shadow */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vip-page-banner .overlay-dark {
    background: transparent !important;
    /* Removed shadow */
}

/* Footer Logo */
.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

/* --- UMRAH TAXI BANNER --- */
/* --- UMRAH TAXI BANNER (Dark Theme Section) --- */
.umrah-taxi-banner {
    background: #1a1a1a;
    /* Dark Theme Background */
    position: relative;
    padding: 100px 0;
    color: #cfa15b;
    /* Gold Text */
    border-top: 5px solid #cfa15b;
    border-bottom: 5px solid #cfa15b;
}

.umrah-taxi-banner h2 {
    color: #fff;
    /* White Heading for contrast */
    font-weight: 700;
}

.umrah-taxi-banner .text-red {
    color: #cfa15b !important;
    /* Force Gold on the highlight text */
}

/* Override description text color for readability on dark bg */
.umrah-taxi-banner .description-text {
    color: #ccc !important;
    font-size: 1.1rem;
    line-height: 1.8;
}

.umrah-taxi-banner .subtitle-italic {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 20px;
}

/* Ensure overlay is transparent or removed */
.umrah-taxi-banner .overlay-dark {
    display: none;
}

.umrah-taxi-banner .relative-z {
    position: relative;
    z-index: 2;
}

/* --- VIP HEADER COMPONENTS --- */
.vip-page-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vip-page-banner .page-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-weight: 500;
}

.gold-divider-center {
    width: 80px;
    height: 3px;
    background: #cfa15b;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Ensure global overrides if specific overrides needed */
.relative-z {
    position: relative;
    z-index: 2;
}

/* Global Overlay Dark for consistency if missed elsewhere */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed shadow */
    z-index: 1;
}

@media (max-width: 768px) {
    /*
    .vip-page-banner .page-title {
        font-size: 2.2rem;
    }

    .vip-page-banner .page-subtitle {
        font-size: 1rem;
    }
*/
}

/* --- FAQ Accordion Styles --- */
.faq-item {
    display: block !important;
    /* Force vertical stacking to fix side-by-side bug */
    width: 100% !important;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    /* Full width */
    padding: 20px;
    cursor: pointer;
    display: flex;
    /* Internal flex for question text + icon only */
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
    background: #fff;
    /* Ensure bg */
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #c51c23;
}

.faq-answer {
    display: block !important;
    /* Block level element */
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top: 1px solid #eee;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Active State */
.faq-item.active .faq-question {
    background: #f9f9f9;
    color: #c51c23;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.reviews-container-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.reviews-container-scroll::-webkit-scrollbar {
    width: 6px;
}

.reviews-container-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.reviews-container-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.review-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.reviewer-name i {
    color: var(--primary-color);
    margin-right: 5px;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-stars {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Review Form */
.review-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.review-form-box .form-control {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
}

.review-form-box .form-control::placeholder {
    color: #999 !important;
}

.review-form-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.rating-css {
    width: 100%;
}

.star-icon {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    /* Align stars to the left */
}

.star-icon input {
    display: none;
}

.star-icon label {
    font-size: 25px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
    margin: 0 2px;
}

.star-icon input:checked~label {
    color: #ffc107;
}

.star-icon label:hover,
.star-icon label:hover~label {
    color: #ffc107;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.welcome-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.feedback-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Image Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* --- HOME PAGE BACKGROUND ENHANCEMENTS --- */
body {
    background-color: #fdfdfd;
    /* Slight off-white overall */
}

/* Enhancing "Why Choose Us" / Features Section */
.features-section,
.why-choose-us {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cfa15b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    padding: 80px 0;
}

/* Service Section / Umrah Taxi Section Enhancement */
.service-section,
.about-section {
    background: linear-gradient(135deg, #fffcf5 0%, #ffffff 100%);
    position: relative;
    border-bottom: 1px solid #f0e6d2;
}

/* Add a gold accent line to section headings if not present */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #cfa15b;
    margin: 15px auto;
    border-radius: 2px;
}

/* Boxed Services for better contrast */
.service-box,
.feature-box {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover,
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(207, 161, 91, 0.15);
    border-color: #cfa15b;
}

/* Mobile Top Bar Fix: Phone on Top */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px;
        padding-bottom: 5px;
    }

    .top-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px;
        width: 100%;
        margin-bottom: 5px;
    }

    .top-info a {
        margin-right: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .top-info a:nth-child(2) {
        order: -1 !important;
        font-weight: 600;
        font-size: 15px;
        /* Slightly larger phone */
        color: #fff !important;
        /* Make it pop */
    }

    .top-info a:nth-child(1) {
        color: #ccc !important;
        font-size: 13px;
    }
}

/* --- ROBUST MOBILE FIXES (About & Contact - FINAL) --- */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

@media (max-width: 991px) {

    /* About Page Fixes */
    .about-text-vip {
        padding-right: 0 !important;
        text-align: center !important;
        margin-bottom: 40px;
    }

    .about-image-vip {
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .signature-name {
        margin: 0 auto !important;
        /* Center signature */
        display: table;
    }

    /* Contact Page Fixes */
    .vip-form-container {
        padding: 30px 20px !important;
        margin-top: 30px;
    }

    .contact-info-wrapper {
        margin-bottom: 40px;
    }

    .vip-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {

    /* Page Headers */
    .page-title {
        font-size: 1.5rem !important;
        /* Smaller font */
        line-height: 1.4 !important;
        padding: 10px 15px !important;
        /* Reduced padding */
        white-space: normal !important;
        word-wrap: break-word !important;
        width: auto !important;
        /* Auto width */
        max-width: 90% !important;
        /* Constraint width */
        margin: 0 auto 10px !important;
        display: inline-block !important;
        box-sizing: border-box !important;
        /* Ensure padding includes in width */
    }

    .page-subtitle {
        font-size: 0.9rem !important;
        padding: 5px 10px !important;
        width: auto !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        white-space: normal !important;
    }

    /* Global Section Padding */
    .section-padding {
        padding: 40px 0 !important;
    }

    /* Stats Section */
    .stat-item {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .counter {
        font-size: 32px !important;
    }

    /* Mission/Vision Box */
    .mv-box {
        margin-bottom: 20px;
        padding: 20px 15px !important;
    }

    /* Contact Form specifics */
    .form-title {
        font-size: 20px !important;
        text-align: center;
        word-wrap: break-word;
        /* Prevent long words breaking layout */
    }

    .form-desc {
        text-align: center;
        font-size: 13px !important;
    }

    .btn-vip-gold {
        width: 100% !important;
        padding: 12px !important;
        font-size: 14px !important;
    }

    /* VIP Feature Box */
    .vip-feature-box {
        padding: 20px 15px !important;
    }
}