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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Orange Color Scheme */
:root {
    --primary-orange: #F97316;
    --dark-orange: #ea580c;
    --light-orange: #fb923c;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   HEADER
================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
}

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

.logo-container {
    flex-shrink: 0;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-title h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
    line-height: 1.2;
}

.header-title p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 4px 0 0 0;
    font-weight: 500;
}

.header-nav {
    margin-left: auto;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    padding: 8px 10px;
    border-radius: 6px;
}

.header-nav a:hover {
    color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.1);
}

/* ================================
   HAMBURGER MENU
================================ */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.2s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.next-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.next-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* ================================
   HERO SECTION — FIXED
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1544620344-cd037a87ee29?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
    gap: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(234, 88, 12, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    width: 100%;
    max-width: 860px;
    margin-bottom: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.typewriter {
    color: var(--primary-grey);
    border-right: 3px solid var(--primary-grey);
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    50% {
        border-color: var(--primary-grey);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

/* ================================
   BOOKING FORM — FIXED
================================ */
.booking-form-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 36px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 960px;
    width: 95%;
    margin: 0 auto;
}

.booking-title {
    color: var(--primary-grey);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-grey);
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.cta-button {
    background: var(--primary-grey);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: var(--primary-grey-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 114, 128, 0.3);
}

/* ================================
   TARIFF SECTION
================================ */
.tariff-section {
    padding: 80px 0;
    background: var(--white);
}

.tariff-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tariff-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-grey);
}

.tariff-icon {
    font-size: 2.8rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.tariff-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.seater-info {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.tariff-label {
    color: var(--primary-grey);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.tariff-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.tariff-table th {
    background: var(--light-gray);
    padding: 8px 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}

.tariff-table td {
    padding: 8px 6px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.fleet-pricing {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    color: #333;
    font-weight: 600;
    align-items: center;
    font-size: 12px;
}

.fleet-pricing span {
    background: rgba(249, 115, 22, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    border-left: 3px solid #F97316;
}

.read-more-btn {
    background: var(--primary-grey);
    color: white;
    border: none;
    padding: 11px 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.read-more-btn:hover {
    background: var(--dark-grey);
    transform: translateY(-2px);
}

/* ================================
   SECTION TITLE
================================ */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #F97316;
    margin-bottom: 48px;
}

/* ================================
   FLEET SECTION
================================ */
.fleet-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-card h4 {
    padding: 14px 14px 8px;
    font-size: 16px;
    font-weight: bold;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fleet-info {
    padding: 0 14px 10px;
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #F97316;
    flex-wrap: wrap;
}

.fleet-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fleet-info i {
    color: #F97316;
}

.fleet-pricing-box {
    padding: 0 14px 10px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    border-left: 3px solid #F97316;
    margin: 0 14px 10px;
    line-height: 1.6;
}

.fleet-buttons {
    padding: 10px 14px 16px;
    display: flex;
    gap: 8px;
}

.fleet-btn {
    flex: 1;
    padding: 9px 6px;
    border: 2px solid #F97316;
    background: white;
    color: #F97316;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.fleet-btn:hover {
    background: #F97316;
    color: white;
}

/* ================================
   TESTIMONIALS / GOOGLE REVIEWS
================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-full-width {
    text-align: center;
}

.testimonials-full-width .section-title {
    margin-bottom: 40px;
}

.google-reviews-grid {
    height: 280px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.reviews-scroll-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-scroll {
    display: flex;
    gap: 20px;
    width: max-content;
}

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

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

.google-review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #4285f4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
    flex-shrink: 0;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 17px;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.review-date {
    color: #5f6368;
    font-size: 13px;
}

.review-stars {
    margin-bottom: 10px;
}

.review-stars i {
    color: #fbbc04;
    font-size: 13px;
    margin-right: 2px;
}

.review-text p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.google-rating {
    background: var(--light-gray);
    padding: 28px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.rating-stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 12px;
}

.rating-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.rating-reviews {
    color: var(--text-light);
}

.recommendation {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 14px;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.google-logo i {
    color: #4285f4;
}

/* ================================
   WHY SECTION
================================ */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.2s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border: 3px solid var(--primary-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange);
    transition: all 0.2s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-orange);
    color: white;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-light);
    font-size: 13px;
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.about-block {
    background: var(--white);
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.about-block h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 14px;
}

.about-block ul {
    list-style: none;
    padding-left: 0;
}

.about-block li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.about-block li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 58px;
    height: 58px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 22px;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
}

/* ================================
   TRUST BADGES
================================ */
.trust-badges {
    padding: 60px 0;
    background: var(--light-gray);
}

.badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-badge {
    text-align: center;
    padding: 36px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 2.8rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.trust-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.trust-badge p {
    color: var(--text-light);
    font-size: 13px;
}

/* ================================
   CLIENTS / CORPORATE SECTION
================================ */
.clients-section,
.corporate-clients-section {
    padding: 80px 0;
    background: var(--white);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.client-logos-grid1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.client-logo-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    border-color: var(--primary-orange);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    max-width: 500px;
}

.contact-form h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.contact-info h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* ================================
   VEHICLE DETAIL PAGES
================================ */

/* Grey color variables for vehicle pages */
:root {
    --vehicle-primary: #6B7280;
    --vehicle-primary-dark: #4B5563;
    --vehicle-primary-light: #9CA3AF;
    --vehicle-secondary: #374151;
    --vehicle-light: #F3F4F6;
}

/* Hero Section for Vehicle Pages */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

.hero-meta i {
    font-size: 18px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 16px;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.price-header h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-footer {
    margin-top: 25px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* Vehicle Details Section */
.vehicle-details {
    padding: 80px 0;
    background: var(--vehicle-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
}

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

.vehicle-gallery {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-grid img:hover {
    transform: scale(1.05);
}

.vehicle-specs {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vehicle-specs h3 {
    font-size: 1.8rem;
    color: var(--text-orange);
    margin-bottom: 30px;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.spec-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.spec-item p {
    font-weight: 600;
    color: var(--text-dark);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--vehicle-light);
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--vehicle-light);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0 5px;
}

.period {
    color: var(--text-light);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary-orange);
    font-size: 16px;
}

.extra-charges {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--vehicle-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-left h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.booking-left p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0;
}

.enquiry-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enquiry-form h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-meta {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .price-card {
        padding: 20px;
    }

    .vehicle-gallery,
    .vehicle-specs,
    .enquiry-form {
        padding: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

/* ================================
   FOOTER
================================ */
.footer {
    position: relative;
    padding: 0;
    background: #1a1a2e;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, transparent 10px, rgba(255, 255, 255, 0.03) 10px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, transparent 10px, rgba(255, 255, 255, 0.03) 10px);
    background-size: 20px 20px;
    color: white;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

/* Contact Bar */
.contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-bar .contact-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: unset;
}

.contact-bar .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-bar .contact-info h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-bar .contact-info p {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 3px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
}

.amex-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo,
.amex-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Destination Cards */
.destination-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 140px;
    cursor: pointer;
}

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

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

/* ================================
   ANIMATIONS
================================ */
html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


/* ================================
   TABLET — max-width: 1024px
================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .tariff-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

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

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

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

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

    .contact-bar {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

/* ================================
   MOBILE — max-width: 768px
================================ */
@media (max-width: 768px) {

    /* Header */
    .main-header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }

    .header-logo {
        height: 38px;
    }

    .header-title h1 {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    .header-title p {
        display: none;
    }

    /* Show hamburger, hide nav */
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 1050;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .header-nav.active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(100%);
        }

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

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .header-nav ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        background: #ffffff;
        transition: all 0.2s ease;
    }

    .header-nav ul li:hover {
        background: #f8f9fa;
    }

    .header-nav a {
        display: block;
        padding: 20px 30px;
        font-size: 18px;
        font-weight: 500;
        color: #333333;
        border-radius: 0;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
        text-transform: none;
        letter-spacing: normal;
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }

    .header-nav a:hover {
        background: #f8f9fa;
        color: var(--primary-orange);
        transform: none;
        box-shadow: none;
        border: none;
    }

    .header-nav a:active {
        background: #f0f0f0;
        transform: none;
        box-shadow: none;
    }

    .header-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background: var(--primary-orange);
        transition: width 0.3s ease;
    }

    .header-nav a:hover::after {
        width: 100%;
    }

    /* Tour Packages Dropdown for Mobile */
    .tour-packages-dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background: rgba(248, 249, 250, 0.95);
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .tour-packages-dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }

    .dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
        background: transparent;
        transition: background 0.2s ease;
    }

    .dropdown-menu li:hover {
        background: #f8f9fa;
    }

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

    .dropdown-menu li a {
        display: block;
        padding: 15px 30px 15px 50px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.2s ease;
        border: none;
    }

    .dropdown-menu li a:hover {
        background: #f8f9fa;
        color: var(--primary-orange);
        transform: none;
        box-shadow: none;
    }

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

    /* Hero — fully stacked */
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 100px 16px 40px;
        align-items: center;
        gap: 24px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
        margin-bottom: 0;
    }

    /* Booking Form */
    .booking-form-card {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        padding: 24px 16px;
        margin: 0;
    }

    .booking-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }

    .cta-button {
        padding: 14px;
        font-size: 15px;
    }

    /* Tariff */
    .tariff-section {
        padding: 50px 0;
    }

    .tariff-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tariff-card {
        padding: 16px 12px;
    }

    .tariff-card h3 {
        font-size: 1rem;
    }

    .tariff-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .seater-info {
        font-size: 12px;
    }

    .tariff-label {
        font-size: 11px;
    }

    .tariff-table th {
        font-size: 11px;
        padding: 6px 3px;
    }

    .tariff-table td {
        font-size: 11px;
        padding: 6px 3px;
    }

    .read-more-btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    /* Section Title */
    .section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    /* Fleet */
    .fleet-section {
        padding: 50px 0;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fleet-image {
        height: 140px;
    }

    .fleet-card h4 {
        font-size: 12px;
        padding: 10px 10px 5px;
    }

    .fleet-info {
        font-size: 11px;
        padding: 0 10px 6px;
        gap: 6px;
    }

    .fleet-pricing-box {
        font-size: 10px;
        margin: 0 10px 8px;
    }

    .fleet-buttons {
        padding: 6px 10px 12px;
        gap: 6px;
    }

    .fleet-btn {
        font-size: 10px;
        padding: 7px 3px;
    }

    /* Why */
    .why-section {
        padding: 50px 0;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .why-card {
        padding: 18px 12px;
    }

    .why-card h4 {
        font-size: 0.9rem;
    }

    .why-card p {
        font-size: 12px;
    }

    /* Reviews */
    .google-reviews-grid {
        height: auto;
        margin-bottom: 20px;
    }

    .reviews-scroll {
        animation: none;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
    }

    .google-review-card {
        width: 100%;
    }

    /* About */
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-block {
        padding: 20px;
    }

    .about-block h3 {
        font-size: 1.1rem;
    }

    .about-block p,
    .about-block li {
        font-size: 13px;
    }

    /* Trust */
    .trust-badges {
        padding: 40px 0;
    }

    .badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .trust-badge {
        padding: 24px 14px;
    }

    .badge-icon {
        font-size: 2.2rem;
    }

    /* Clients */
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logos-grid1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo-card {
        min-height: 80px;
        padding: 14px;
    }

    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        max-width: 100%;
    }

    /* Footer */
    .contact-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 20px 0;
        text-align: center;
    }

    .footer-bottom .copyright {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .payment-logo,
    .amex-logo {
        height: 20px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .destination-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ================================
   SMALL MOBILE — max-width: 480px
================================ */
@media (max-width: 480px) {

    .main-header {
        padding: 8px 0;
    }

    .header-logo {
        height: 32px;
    }

    .header-title h1 {
        font-size: 0.9rem;
        max-width: 150px;
    }

    .hero {
        padding: 90px 12px 30px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .booking-form-card {
        padding: 18px 12px;
    }

    .booking-title {
        font-size: 1.1rem;
    }

    .tariff-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tariff-card {
        padding: 14px 10px;
    }

    .tariff-card h3 {
        font-size: 0.85rem;
    }

    .tariff-table th,
    .tariff-table td {
        font-size: 10px;
        padding: 5px 2px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fleet-image {
        height: 120px;
    }

    .fleet-card h4 {
        font-size: 11px;
    }

    .fleet-btn {
        font-size: 9px;
        padding: 6px 2px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .why-card {
        padding: 14px 10px;
    }

    .why-card h4 {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 18px;
    }

    .badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ea580c 0%, var(--primary-orange) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, var(--primary-orange) 100%);
}

.floating-call-btn:active {
    transform: scale(0.95);
}

.floating-call-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for floating call button */
@media (max-width: 768px) {
    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-call-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 10px;
        right: 10px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 10px;
        left: 10px;
    }
}

/* Itinerary Styles */
.itinerary-container {
    margin-top: 40px;
}

.day-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ea580c 100%);
    color: white;
    padding: 20px 30px;
    font-size: 1.3rem;
    font-weight: 600;
}

.day-content {
    padding: 30px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.activity-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    min-width: 30px;
    text-align: center;
}

.stops-list, .sightseeing-list, .adventure-list, .forest-drive {
    margin: 25px 0;
}

.stops-list h4, .sightseeing-list h4, .adventure-list h4, .forest-drive h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.stop-item, .sight-item, .adventure-item, .forest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stop-item:hover, .sight-item:hover, .adventure-item:hover, .forest-item:hover {
    background: #f8f9fa;
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.stop-item i, .sight-item i, .adventure-item i, .forest-item i {
    color: var(--primary-orange);
    min-width: 20px;
    text-align: center;
}

.forest-item {
    background: #e8f5e8;
    border-color: #28a745;
}

.forest-item i {
    color: #28a745;
}

/* Center buttons in package pages */
.package-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.submit-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 89, 0, 0.3);
}

/* Remove underlines from links in new tour package files */
.contact-section a,
.enquiry-buttons a,
.main-footer a,
.footer-inner a {
    text-decoration: none !important;
}

.contact-section a:hover,
.enquiry-buttons a:hover,
.main-footer a:hover,
.footer-inner a:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

.btn-primary, .btn-outline {
    display: inline-block;
    text-align: center;
}

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

.hero-cta .btn-primary,
.hero-cta .btn-outline {
    margin: 0 10px;
}

/* Contact Information Text Color */
.contact-info h3,
.contact-info h4,
.contact-info p,
.contact-info strong {
    color: #000000 !important;
}

.footer-contact .contact-info h3,
.footer-contact .contact-info h4,
.footer-contact .contact-info p,
.footer-contact .contact-info strong {
    color: #000000 !important;
}

/* Ensure contact card text is white */
.contact-card .contact-info h3,
.contact-card .contact-info h4,
.contact-card .contact-info p,
.contact-card .contact-info strong {
    color: #ffffff !important;
}

/* Tour Packages Styles */
.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    overflow: hidden;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.duration,
.price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.duration {
    color: #666;
}

.price {
    color: var(--primary-orange);
    font-size: 20px;
    font-weight: 600;
}

.package-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #ea580c;
    transform: scale(1.05);
}

/* Tour Buttons Section */
.tour-buttons-section {
    padding: 60px 0;
    background: rgb(105, 83, 182);
    position: relative;
    z-index: 10;
    clear: both;
}

/* Tour Package Footer Styles */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.fc {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.fc:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.fc i {
    font-size: 20px;
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
}

.fc strong {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.fc p {
    color: var(--primary-orange);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.footer-copy {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .fc {
        width: 100%;
        min-width: auto;
    }
}

.tour-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tour-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ea580c 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.tour-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, var(--primary-orange) 100%);
}

.tour-button i {
    font-size: 20px;
}

/* Responsive for Tour Packages */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tour-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Tablet package card fixes */
    .package-card {
        position: relative;
        z-index: 5;
        margin-bottom: 15px;
    }

    .package-image {
        height: 220px;
        position: relative;
        z-index: 1;
    }

    .package-content {
        position: relative;
        z-index: 2;
        background: white;
    }
}

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

    .tour-buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .package-content h3 {
        font-size: 20px;
    }

    .tour-button {
        padding: 15px 20px;
        font-size: 14px;
    }

    .tour-buttons-section {
        position: relative;
        z-index: 10;
        margin-top: 20px;
    }

    .package-card {
        position: relative;
        z-index: 5;
        margin-bottom: 20px;
        clear: both;
        overflow: hidden;
        border: 1px solid #e0e0e0;
        background: white;
    }

    .package-image {
        height: 200px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
    }

    .package-content {
        padding: 20px;
        position: relative;
        z-index: 2;
        background: white;
        width: 100%;
        box-sizing: border-box;
    }

    .package-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .duration,
    .price {
        justify-content: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    /* Force proper stacking on mobile */
    .packages-grid {
        position: relative;
        z-index: 1;
    }

    /* Prevent image overlap */
    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Additional mobile overlap fixes */
    .packages-section {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .container {
        position: relative;
        z-index: 1;
    }

    /* Ensure no floating elements interfere */
    .package-card * {
        box-sizing: border-box;
    }

    /* Fix any absolute positioning conflicts */
    .package-card [style*="position"] {
        position: relative !important;
    }

    /* More aggressive mobile overlap prevention */
    .package-card {
        isolation: isolate;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .package-image {
        isolation: isolate;
    }

    .package-content {
        isolation: isolate;
    }

    /* Ensure proper stacking context */
    .packages-section .container {
        transform: translateZ(0);
        isolation: isolate;
    }

    /* Force mobile layout fixes */
    @media (max-width: 768px) {
        /* Reset all potential conflicting styles */
        .packages-grid {
            display: block !important;
            width: 100% !important;
            position: relative !important;
            z-index: 1 !important;
        }

        .package-card {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 0 30px 0 !important;
            padding: 0 !important;
            float: none !important;
            clear: both !important;
            position: relative !important;
            z-index: 10 !important;
            isolation: isolate !important;
            overflow: hidden !important;
            background: white !important;
            border: 1px solid #e0e0e0 !important;
            border-radius: 12px !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        }

        .package-image {
            display: block !important;
            width: 100% !important;
            height: 200px !important;
            overflow: hidden !important;
            position: relative !important;
            z-index: 1 !important;
            margin: 0 !important;
            padding: 0 !important;
            border-radius: 12px 12px 0 0 !important;
        }

        .package-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .package-content {
            display: block !important;
            width: 100% !important;
            position: relative !important;
            z-index: 2 !important;
            background: white !important;
            padding: 20px !important;
            margin: 0 !important;
            box-sizing: border-box !important;
        }

        .package-content h3 {
            font-size: 1.4rem !important;
            margin: 0 0 15px 0 !important;
            color: #333 !important;
            line-height: 1.4 !important;
        }

        .package-details {
            display: flex !important;
            flex-direction: column !important;
            width: 100% !important;
            gap: 12px !important;
            padding: 0 !important;
            margin: 0 0 15px 0 !important;
            box-sizing: border-box !important;
            position: relative !important;
            z-index: 3 !important;
        }

        .duration,
        .price {
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            font-weight: 500 !important;
            width: auto !important;
            position: relative !important;
            z-index: 4 !important;
            margin: 0 !important;
            padding: 0 !important;
            color: #666 !important;
            font-size: 0.95rem !important;
        }

        .duration i,
        .price i {
            font-size: 1.1rem !important;
            color: var(--primary-orange) !important;
        }

        .package-btn {
            display: inline-block !important;
            background: var(--primary-orange) !important;
            color: white !important;
            padding: 12px 30px !important;
            border-radius: 25px !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            z-index: 5 !important;
            margin: 0 !important;
            border: none !important;
            cursor: pointer !important;
            font-size: 1rem !important;
        }

        /* Override any inline styles that might cause overlap */
        .package-card [style*="position: absolute"],
        .package-card [style*="position: fixed"] {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
        }

        /* Ensure no floating elements interfere */
        .package-card:before,
        .package-card:after {
            content: "";
            display: table;
            clear: both;
        }
    }

    /* Additional mobile-specific fixes */
    @media (max-width: 480px) {
        .package-card {
            margin: 0 0 25px 0 !important;
        }

        .package-image {
            height: 180px !important;
        }

        .package-content {
            padding: 15px !important;
        }
    }
}