/* Base Variables */
:root {
    --primary-color: #ef8c33;
    /* Logo Orange accent */
    --primary-color-hover: #e07a21;
    --secondary-color: #9d4c2c;
    /* Logo Dark Red */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-7-5 {
    grid-template-columns: 7fr 5fr;
}

/* Booking Offers Grid */
.booking-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 576px) {
    .booking-offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .booking-offers-grid > div {
        padding: 15px !important;
    }
    .booking-offers-grid h4 {
        font-size: 0.8rem !important;
    }
    .booking-offers-grid p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }
    .booking-offers-grid > div > div { /* Wrapper of icon + title */
        margin-bottom: 10px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .booking-offers-grid > div > div > div { /* Icon */
        margin-right: 0 !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5rem;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.section-title {
    margin-bottom: 50px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 12px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* Header & Navbar */
.header {
    background-color: #000000;
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 215px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 4px;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-menu li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown li {
    width: 100%;
}

.nav-menu .dropdown li a {
    color: var(--text-color);
    padding: 10px 20px;
    display: block;
    width: 100%;
    border-radius: 0;
    font-size: 0.9rem;
}

.nav-menu .dropdown li a::after {
    display: none;
}

.nav-menu .dropdown li a:hover,
.nav-menu .dropdown li a.active {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-slider {
    height: 70vh;
    min-height: 500px;
    width: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-content {
    color: var(--white);
    padding: 20px;
    max-width: 800px;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.hero-text-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .animate-heading {
    animation: fadeInUp 0.8s ease-out forwards;
}

.swiper-slide-active .animate-subheading {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.swiper-slide-active .animate-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-img-style {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Tour Cards (One Day & Packages) */
.tour-card,
.package-card,
.hotel-card,
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover,
.package-card:hover,
.hotel-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-img img,
.package-card:hover .card-img img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.location,
.date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-footer .price {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Taxi Services */
.taxi-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.taxi-img {
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.taxi-img img {
    max-height: 100%;
    object-fit: contain;
}

.taxi-details {
    padding: 25px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.features li i {
    color: var(--primary-color);
}

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

/* Hotel Stars */
.stars {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* What We Offer */
.feature-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Booking Form */
.booking-section {
    background-color: var(--secondary-color);
}

.booking-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.review {
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info h4 {
    margin: 0;
    font-size: 1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Statistics */
.statistics {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Blog */
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--white);
    padding-top: 70px;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    background-color: #0b1730;
    padding: 20px 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }

    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .header-action .btn {
        display: none;
    }

    .grid-2,
    .grid-4,
    .grid-3,
    .grid-7-5 {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 45vh;
        min-height: 350px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-text-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-text-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

}

/* Custom border for One Day Tours */
.tour-card {
    border: 3px solid white;
    transition: all 0.3s ease;
}

.tour-card:hover {
    border-color: #ff9900;
}

/* About Us Page Styles */
.page-banner {
    padding: 40px 0 30px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.banner-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.about-us-section {
    padding: 60px 0 20px;
}

.about-us-section.pt-0 {
    padding-top: 0;
}

.about-us-section.pb-5 {
    padding-bottom: 60px;
}

.about-us-section p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-left: 0;
    padding: 0;
}

.services-list li {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.services-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(239, 140, 51, 0.2);
    border-color: var(--primary-color);
}

.services-list li i {
    margin-top: 2px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.specialized-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-yellow {
    background-color: rgba(247, 168, 0, 0.1);
    color: #f7a800;
}

.icon-blue {
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.icon-green {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.icon-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.icon-red {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.service-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card-content ul {
    list-style-type: disc;
    margin-left: 18px;
    color: var(--text-light);
}

.service-card-content ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.vision-section {
    background-color: #3e170a;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.vision-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color);
}

.vision-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* FAQ Section Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff !important;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000000 !important;
    cursor: pointer;
    list-style: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-question::-webkit-details-marker {
    display: none !important;
}

.faq-question::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ef8c33;
    /* Kept arrow orange for accent, text is black */
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: 15px;
}

.faq-item[open] {
    border-color: #ef8c33;
}

.faq-item[open] .faq-question {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 15px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: #000000 !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p {
    margin: 0;
}

/* CSS Extracted from contact-us.html */

.contact-page-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-details-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-details-item-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-details-item-card h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-details-item-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.full-width-map {
    width: 100%;
    height: 450px;
    margin-top: 50px;
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-card {
    background: #9d4c2c;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    color: #ffffff;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-form label .text-danger {
    color: #f64e4e;
}

.contact-form .form-control {
    border: 1px solid #eef1f5;
    border-radius: 6px;
    padding: 14px 15px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #ef8c33;
    box-shadow: 0 0 0 3px rgba(239, 140, 51, 0.3);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    background-color: #ef8c33;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background-color: #e07a21;
}



.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-blue {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-orange {
    background: #ffedd5;
    color: #ea580c;
}

.contact-info-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-details-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-details-row {
        grid-template-columns: 1fr;
    }
}

/* CSS Extracted from taxi-service.html */

.taxi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.taxi-card-new {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.taxi-card-new .card-img-wrap {
    position: relative;
    background: #eaeaea;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-card-new .card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.taxi-card-new .card-content h3 {
    font-size: 1.2rem;
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

.taxi-card-new .card-content .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.taxi-card-new .card-content .btn {
    background-color: #f39c12;
    border-color: #f39c12;
    font-weight: 600;
    padding: 12px;
    text-transform: none;
    margin-top: auto;
    color: white;
    text-align: center;
    display: block;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.taxi-card-new .card-content .btn:hover {
    background-color: #e67e22;
    color: white;
}

/* CSS Extracted from index.html */

.trust-features-section {
    background-color: #ffffff;
    border-top: 1px solid #f0e6d2;
    border-bottom: 1px solid #f0e6d2;
    padding: 25px 0;
}

.trust-features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid #f0e6d2;
    padding-left: 15px;
}

.trust-feature:first-child {
    padding-left: 0;
}

.trust-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.trust-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fdf3e6;
    color: #d35400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0 0 4px 0;
    line-height: 1;
}

.trust-feature-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    text-transform: capitalize;
}

@media (max-width: 992px) {
    .trust-features-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-feature {
        border-right: none;
        padding-left: 0;
        padding-right: 0;
        min-width: 45%;
    }
}

@media (max-width: 576px) {
    .trust-features-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .trust-feature {
        width: 100%;
        flex: none;
        gap: 8px;
    }
    .trust-feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .trust-feature-content h4 {
        font-size: 0.95rem;
    }
    .trust-feature-content p {
        font-size: 0.7rem;
    }
}

.how-it-works-section {
    background-color: #171b26;
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.how-it-works-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #a0a8b9;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.how-it-works-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.how-it-works-title span {
    color: #ef8c33 !important;
}

.how-it-works-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.how-it-works-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    border-top: 2px dashed #343b4f;
    z-index: -1;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ef8c33;
    background-color: #171b26;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.step-desc {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works-steps {
        flex-direction: column;
        gap: 40px;
    }

    .how-it-works-line {
        display: none;
    }

    .how-it-works-title {
        font-size: 2.2rem;
    }
}

.hotel-cards-slider-container {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
}

.hotel-cards-track {
    display: inline-flex;
    gap: 30px;
    animation: hotelScroll 25s linear infinite;
}

.hotel-cards-track:hover {
    animation-play-state: paused;
}

.hotel-new-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
}

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

.hotel-new-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.hotel-new-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-new-card:hover .hotel-new-card-img img {
    transform: scale(1.05);
}

.hotel-new-card-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-new-card-title {
    color: #9c4c23;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
}

.hotel-new-card-location {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.hotel-new-card-location i {
    color: #ef8c33;
    margin-right: 8px;
    font-size: 1.1rem;
}

.hotel-new-card-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: #9c4c23;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #9c4c23;
    text-align: center;
    margin-top: auto;
}

.hotel-new-card-btn:hover {
    background-color: #9c4c23;
    color: #ffffff;
}

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

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@media (max-width: 768px) {
    .hotel-new-card {
        width: 300px;
    }
}

.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-subtitle {
    font-size: 0.85rem;
    color: #d1755a;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.why-choose-subtitle::before,
.why-choose-subtitle::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #f0c3b5;
    margin: 0 10px;
}

.why-choose-title {
    font-size: 2.5rem;
    color: #333;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.why-choose-title span {
    font-style: italic;
    color: #a04924;
    font-weight: 400;
}

.why-choose-desc {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #f0e6d2;
    /* border color */
    gap: 1px;
    /* border thickness */
    border: 1px solid #f0e6d2;
    border-radius: 4px;
}

.why-choose-item {
    padding: 40px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.why-choose-item:hover {
    background-color: #fbf5eb;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
    border-radius: 8px;
}

.why-choose-item.highlight {
    background-color: #fbf5eb;
}

.why-choose-item:hover .why-choose-num {
    transform: scale(1.1);
    color: #f0c3b5;
}

.why-choose-num {
    font-size: 2.5rem;
    color: #fae3e0;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-choose-item-title {
    font-size: 1.2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-item-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

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

.booking-faq-section {
    padding: 80px 0;
    background-color: #9d4c2c;
}

.booking-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-widget-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.booking-tabs {
    display: flex;
}

.booking-tab {
    background: #ffffff;
    color: #6c757d;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin-right: 5px;
}

.booking-tab.active {
    color: #1a1a1a;
    opacity: 1;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.booking-tab i {
    font-size: 1.1rem;
}

.booking-tab.active i {
    color: #f64e4e;
}

.booking-widget-content {
    background: #ffffff;
    border-radius: 0 12px 12px 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-widget-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.booking-field-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.booking-field-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #88929b;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.booking-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    padding: 0 15px;
    height: 52px;
    transition: border-color 0.3s;
}

.booking-input-wrap:focus-within {
    border-color: #f64e4e;
}

.booking-input-wrap i {
    color: #f64e4e;
    font-size: 1.1rem;
    margin-right: 10px;
}

.booking-input-wrap i.fa-clock {
    color: #6c757d;
}

.booking-input {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 0.95rem;
    color: #1a1a1a;
    font-family: inherit;
}

.booking-input-double {
    display: flex;
    gap: 10px;
    flex: 1.5;
    min-width: 300px;
}

.booking-input-double .booking-input-wrap {
    flex: 1;
}

.btn-book-now {
    background-color: #f64e4e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0 35px;
    height: 52px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-book-now:hover {
    background-color: #e53939;
    transform: translateY(-2px);
}

/* FAQ wrapper styling */
.faq-wrapper {
    width: 100%;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.booking-faq-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .booking-faq-container {
        grid-template-columns: 1fr;
    }

    .booking-widget-form {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-field-group,
    .booking-input-double {
        min-width: 100%;
    }

    .booking-tab {
        flex: 1;
        justify-content: center;
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .booking-tabs {
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Extracted Utility Classes */
.taxi-icon {
    color: #f39c12;
    width: 20px;
}

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

.p-20 {
    padding: 20px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 3px solid white;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #2d68f2;
}