/* 
   MALLU RIDES UAE - PREMIUM STYLESHEET
   Aesthetics: Luxury, Modern, Clean, Professional
*/

/* 1. Global Reset & Setup */
:root {
    --primary-navy: #0a1c30;
    --primary-navy-light: #162d4a;
    --accent-gold: #c3933c;
    --accent-gold-light: #fdf8ef;
    --accent-gold-hover: #b08130;
    --text-dark: #1e2d3d;
    --text-gray: #5a6e7f;
    --bg-light: #f4f6fa;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(10, 28, 48, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-outfit: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-outfit);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 2. Premium Navbar */
.site-header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-navy);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.dropdown-arrow {
    transition: var(--transition);
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
    padding: 12px 0;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-navy);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    padding-left: 24px;
}

/* Contact CTA Desk */
.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(195, 147, 60, 0.2);
    transition: var(--transition);
}

.contact-link:hover .phone-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--white);
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Specific styling for Desktop Contact CTA */
.header-contact .phone-icon-wrapper {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.header-contact .contact-link:hover .phone-icon-wrapper {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.mobile-contact-wrapper {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 28, 48, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 3. Hero Section */
.hero {
    margin-top: 90px;
    position: relative;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: right top;
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 0 60px;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    flex-grow: 1;
}

.cards-wrapper {
    width: 100%;
    z-index: 10;
    margin-top: 60px;
}

.hero-content {
    max-width: 580px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(195, 147, 60, 0.3);
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-badge svg {
    fill: none;
    stroke: currentColor;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-navy);
    border: 1.5px solid rgba(10, 28, 48, 0.15);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* 4. Service Cards Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Service Card Container */
.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -10px rgba(10, 28, 48, 0.25);
}

.card-img-wrapper {
    height: 170px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: var(--transition);
}

.service-card:hover .card-img {
    transform: scale(1.08);
}

.card-icon-badge {
    position: absolute;
    top: 145px;
    /* Aligns vertically perfectly on the 170px image border (170px image height - 25px half badge height) */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
}

.service-card:hover .card-icon-badge {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Card content */
.card-body {
    padding: 28px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover .card-divider {
    width: 60px;
}

/* 5. Responsive Design Styles */






/* 6. Car Lift Services Section */
.car-lift-services {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lift-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left side */
.lift-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}


.lift-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.lift-title span {
    color: var(--accent-gold);
}

.lift-title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 20px 0 28px;
    border-radius: 10px;
}

.lift-desc-main {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.lift-desc-main .brand-text {
    color: var(--primary-navy);
    font-weight: 700;
}

.lift-desc-sub {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* 4 Feature Cards Grid */
.lift-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.lift-feature-card {
    background-color: var(--white);
    border: 1px solid rgba(10, 28, 48, 0.05);
    padding: 24px 12px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lift-feature-card:hover {
    border-color: rgba(195, 147, 60, 0.15);
    box-shadow: 0 12px 30px rgba(10, 28, 48, 0.06);
    transform: translateY(-4px);
}

.lift-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.lift-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.lift-feature-card:hover .lift-icon-wrapper {
    background-color: var(--primary-navy-light);
    transform: scale(1.05);
}

.lift-feature-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.lift-feature-card p {
    font-size: 11.5px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Book Button */
.btn-book-ride {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px;
    background-color: var(--primary-navy);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    border: 1.5px solid var(--primary-navy);
    border-bottom: 3px solid var(--accent-gold);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-book-ride:hover {
    background-color: transparent;
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-book-ride svg {
    transition: var(--transition);
}

.btn-book-ride:hover svg {
    transform: translateX(4px);
}

/* Right side */
.lift-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.lift-img-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: visible;
    /* to allow card overflow */
    position: relative;
}

.lift-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
}

/* Overlapping Priority Card */
.lift-priority-card {
    position: absolute;
    left: 50px;
    right: 70px;
    bottom: -30px;
    width: auto;
    max-width: 520px;
    background-color: var(--primary-navy);
    border-radius: 20px;
    padding: 30px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(10, 28, 48, 0.25);
    z-index: 10;
    border: 1.5px solid #ebdcb9;
}

.priority-card-body {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.priority-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.priority-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.priority-icon-wrapper svg {
    width: 44px;
    height: 44px;
}

.priority-divider {
    width: 1px;
    align-self: stretch;
    background-color: var(--accent-gold);
    opacity: 0.4;
    flex-shrink: 0;
}

.priority-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.priority-header-text h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--white);
}

.priority-header-text h3 .gold-text {
    color: var(--accent-gold);
}

.priority-card-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.priority-card-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(195, 147, 60, 0.4);
    padding-top: 18px;
}

.footer-shield-wrapper {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-shield-wrapper svg {
    width: 32px;
    height: 32px;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-tags {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.gold-dot {
    color: var(--accent-gold);
    margin: 0 4px;
}

/* Media Queries for Car Lift Services */






/* 7. Our Services Section */
.our-services {
    background-color: #f8f9fc;
    padding: 100px 0;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.services-header-left {
    flex-basis: 50%;
}

.services-header-right {
    flex-basis: 40%;
    border-left: 3px solid var(--accent-gold);
    padding-left: 30px;
    margin-bottom: 8px;
}

.services-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

.services-title span {
    color: var(--accent-gold);
}

.services-header-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 16px;
}

.services-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-rental-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 28, 48, 0.04);
    transition: var(--transition);
}

.service-rental-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rental-img-wrapper {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.rental-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%; /* Shift visible area up to reveal bottom */
    transition: var(--transition);
}

.service-rental-card:hover .rental-img {
    transform: scale(1.06);
}

.rental-icon-badge {
    position: absolute;
    top: 115px;
    /* 140px image height - 25px half badge height */
    left: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
}

.service-rental-card:hover .rental-icon-badge {
    background-color: var(--accent-gold);
    color: var(--white);
}

.rental-body {
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rental-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-left: 65px;
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rental-desc {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    margin-left: 65px;
}

.rental-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 16px;
    border-top: 1px solid rgba(10, 28, 48, 0.08);
    padding-top: 12px;
}

.rental-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--primary-navy);
}

.rental-feature-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.rental-feature-item span {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
}

.rental-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.rental-call-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 28, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: var(--transition);
}

.rental-call-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.rental-book-btn {
    flex-grow: 1;
    height: 46px;
    border-radius: 8px;
    background-color: var(--primary-navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.rental-book-btn:hover {
    background-color: var(--accent-gold);
}

/* 7. About Us Section */
.about-us {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: stretch;
}

/* Left Side Styling */
.about-left {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: var(--shadow-lg);
}

.about-floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 290px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(10, 28, 48, 0.15);
    border: 1px solid rgba(10, 28, 48, 0.05);
    z-index: 10;
}

.floating-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.floating-card-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Right Side Styling */
.about-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 36px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.about-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-navy);
}

.about-title span {
    color: var(--accent-gold);
}

.about-title-line {
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 20px 0 30px;
    border-radius: 10px;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-more-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-more-about svg {
    transition: transform 0.3s ease;
}

.btn-more-about:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-more-about:hover svg {
    transform: translateX(4px);
}

/* Bottom Row (Sub image & Overlapping Mission) */
.about-mission-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 0;
    flex-grow: 1;
    min-height: 240px;
}

.about-sub-img-wrapper {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-sub-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-mission-card {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 210px;
    background-color: var(--primary-navy);
    border-radius: 16px;
    padding: 24px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(10, 28, 48, 0.25);
    border-bottom: 4px solid var(--accent-gold);
    z-index: 10;
}

.about-mission-card .quote-icon {
    font-size: 48px;
    font-family: serif;
    color: var(--accent-gold);
    line-height: 1;
    margin-top: -15px;
    margin-bottom: 5px;
}

.mission-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.mission-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.mission-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mission-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.author-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Media Queries for About Section */




/* ==========================================================================
   8. Our Fleet Section Styles
   ========================================================================== */
.our-fleet {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.our-fleet .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 16px;
}

.fleet-badge::before,
.fleet-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
}

.badge-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.fleet-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.fleet-subtitle-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fleet-subtitle-main::before,
.fleet-subtitle-main::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.fleet-title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 20px auto;
    border-radius: 10px;
}

.fleet-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tabs Switcher */
.fleet-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto 40px;
    background-color: transparent;
    padding: 0;
    border: none;
}

.fleet-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background-color: #f8f9fc;
    border: 1.5px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tab-text-wrapper {
    display: flex;
    flex-direction: column;
}

.tab-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
    transition: var(--transition);
}

.tab-helper {
    font-size: 11.5px;
    color: var(--text-gray);
    line-height: 1.3;
    transition: var(--transition);
}

/* Active tab state */
.fleet-tab.active {
    background-color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.fleet-tab.active .tab-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--white);
}

.fleet-tab.active .tab-label {
    color: var(--primary-navy);
}

/* Tab Hover states */
.fleet-tab:hover:not(.active) {
    background-color: rgba(10, 28, 48, 0.03);
}

/* Grid Layout */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.fleet-card {
    display: none;
    /* Hidden by default */
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 28, 48, 0.04);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), display 0.4s allow-discrete;
    opacity: 0;
    transform: translateY(15px);
}

.fleet-card.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.fleet-img-wrapper {
    height: 190px;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fc;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(195, 147, 60, 0.2);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.06);
}

.fleet-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--white);
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
    z-index: 5;
    border: 1px solid rgba(195, 147, 60, 0.15);
}

.fleet-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.fleet-car-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.fleet-specs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
}

.spec-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.spec-item span {
    font-size: 12.5px;
    font-weight: 500;
}

.spec-divider {
    color: rgba(10, 28, 48, 0.12);
    font-size: 12px;
}

/* Media Queries for Fleet Section */






/* 8. FAQ Section Styling */
.faq-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 70px;
    align-items: flex-start;
}

.faq-left {
    position: sticky;
    top: 110px;
}

.faq-right {
    margin-top: 44px;
    /* Align vertically with Frequently Asked Questions title */
}

.faq-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 35px;
}

.faq-subtitle .gold-text {
    color: var(--accent-gold);
    font-weight: 600;
}

/* FAQ Promo Card */
.faq-promo-card {
    background-color: var(--accent-gold-light);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(195, 147, 60, 0.15);
    max-width: 450px;
}

.promo-card-top {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: center;
}

.promo-img-wrapper {
    width: 180px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-info {
    flex-grow: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(195, 147, 60, 0.1);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-badge svg {
    stroke: var(--accent-gold);
}

.promo-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 12px;
}

.promo-title .gold-text {
    color: var(--accent-gold);
}

.promo-desc {
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Promo Features inside Card */
.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-top: 1px solid rgba(195, 147, 60, 0.2);
    padding-top: 24px;
}

.promo-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
}

/* Vertical separator lines between features */
.promo-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(10, 28, 48, 0.08);
}

.promo-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7ebd3;
    /* Creamy gold background circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.promo-feature-item span {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

.btn-book-ride.faq-book-btn {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    border-bottom: 1.5px solid var(--accent-gold);
    border-radius: 12px;
}

.btn-book-ride.faq-book-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Accordion list on the right */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(10, 28, 48, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    border-color: rgba(195, 147, 60, 0.15);
    box-shadow: 0 8px 25px rgba(10, 28, 48, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.faq-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(195, 147, 60, 0.1);
    transition: var(--transition);
}

.faq-icon-circle svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-navy);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.4;
    transition: var(--transition);
}

.faq-chevron {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 12px;
}

/* Open State Accordion */
.faq-item.active {
    border-color: rgba(195, 147, 60, 0.3);
    box-shadow: 0 10px 30px rgba(10, 28, 48, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(195, 147, 60, 0.02);
}

.faq-item.active .faq-icon-circle {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.faq-item.active .faq-icon-circle svg {
    stroke: var(--white);
}

.faq-item.active .faq-question h3 {
    color: var(--accent-gold);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 18px 24px 24px 92px;
    /* Left indent aligning with question text */
    border-top: 1px solid rgba(195, 147, 60, 0.1);
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section Media Queries */




/* 9. Wavy Booking CTA Section Styling */
.booking-cta-section {
    padding: 60px 0;
    background-color: var(--white);
}

.booking-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.booking-card {
    position: relative;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(10, 28, 48, 0.06);
}

.booking-left {
    background-color: var(--white);
    width: 42%;
    flex-shrink: 0;
    padding: 50px 0 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.booking-wave-wrapper {
    position: absolute;
    left: 42%;
    top: 0;
    bottom: 0;
    width: 18%;
    z-index: 4;
    pointer-events: none;
}

.booking-wave-wrapper svg {
    width: 100%;
    height: 100%;
    display: block;
}

.booking-right {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 40px;
    z-index: 3;
    background-image: url('../images/booking-bg.png');
    background-size: cover;
    background-position: center right;
}

/* Badge inside Booking Card */
.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid rgba(10, 28, 48, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.booking-badge .badge-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-badge span {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

/* Booking Card Typography */
.booking-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.booking-title span {
    color: var(--accent-gold);
}

.booking-divider-line {
    width: 45px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 16px 0 20px;
    border-radius: 10px;
}

.booking-desc {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 92%;
}

/* Features Grid in Booking Card */
.booking-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-top: 1px solid rgba(10, 28, 48, 0.06);
    padding-top: 20px;
    margin-bottom: 30px;
    position: relative;
    max-width: 98%;
}

.booking-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
}

.booking-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(10, 28, 48, 0.08);
}

.booking-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f7ebd3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-feature-label {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.25;
}

.btn-book-ride.booking-cta-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 13.5px;
    width: fit-content;
}

/* Floating Priority Card on Right Column */
.booking-priority-card {
    background-color: rgba(10, 28, 48, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-priority-card .priority-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-priority-card .priority-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.booking-priority-card .priority-text h4 span {
    color: var(--accent-gold);
}

.booking-priority-card .priority-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

/* Responsive Booking Section */




/* 10. Main Footer Styling */
.main-footer {
    background-color: var(--primary-navy);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Luxury circular background highlights */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    border-radius: 0 0 0 100%;
    /* Creates a perfect quarter circle facing bottom-left */
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.main-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 0 100% 0 0;
    /* Creates a perfect quarter circle facing top-right */
    background-color: rgba(255, 255, 255, 0.01);
    border-right: 1.5px solid rgba(255, 255, 255, 0.02);
    border-top: 1.5px solid rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 42px;
    width: auto;
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.65);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-btn:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Links & Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* Contact Column */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-info .contact-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-info .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Footer */




/* 11. Services Page Banner Styling */
.services-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/services_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.services-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    border-radius: 0 0 0 100%;
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.services-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.services-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.services-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}



/* 12. Contact Page Styling */
.contact-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/contact_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    border-radius: 0 0 0 100%;
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.contact-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.contact-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.contact-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Grid Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-panel-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-panel-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.contact-panel-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Detail Cards */
.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(10, 28, 48, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.contact-detail-card:hover {
    border-color: rgba(195, 147, 60, 0.15);
    box-shadow: 0 10px 30px rgba(10, 28, 48, 0.04);
    transform: translateY(-2px);
}

.contact-detail-card .detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(195, 147, 60, 0.15);
}

.contact-detail-card .detail-icon svg {
    stroke: var(--accent-gold);
}

.detail-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.detail-text .detail-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
}

.detail-text .detail-sub {
    font-size: 12.5px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Right Column Contact Form Card */
.contact-form-panel {
    position: relative;
    margin-top: 50px;
}

.contact-form-card {
    background-color: var(--white);
    border: 1px solid rgba(195, 147, 60, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.form-card-desc {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Inquiry Form Fields */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(10, 28, 48, 0.1);
    font-size: 14.5px;
    font-family: inherit;
    color: var(--primary-navy);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(195, 147, 60, 0.08);
}

.btn-book-ride.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    border-radius: 12px;
    color: var(--white);
    margin-top: 10px;
    border-bottom: 3.5px solid var(--accent-gold-hover);
}

.btn-book-ride.form-submit-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Responsive Contact Page */




/* 13. About Page Styling */
.about-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/about_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    border-radius: 0 0 0 100%;
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.about-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.about-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.about-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About Detail Info Grid (For who we are page blocks) */
.about-features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-feature-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(10, 28, 48, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(195, 147, 60, 0.2);
    background-color: var(--white);
}

.about-feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(195, 147, 60, 0.15);
}

.about-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 14px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats Section */
.about-stats-section {
    padding: 80px 0;
    background-color: var(--primary-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1.5px solid rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}





/* 14. Travel & Tourism Page Redesign Styling */
.travel-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/tourism_dubai_marina.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.travel-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    border-radius: 0 0 0 100%;
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.travel-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.travel-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.travel-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.travel-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.tourism-places-section {
    padding: 80px 0;
    background-color: transparent;
}

.tourism-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.tourism-places-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.tourism-place-card {
    position: relative;
    height: 280px;
    /* Taller card height as requested */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border: none;
    /* Removed border */
    transform: scale(0.96);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    flex: 0 0 calc(33.333% - 20px);
    /* Show 3 cards at a time on desktop */
}

.tourism-place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 28, 48, 0.85) 0%, rgba(10, 28, 48, 0.5) 50%, rgba(10, 28, 48, 0.25) 100%);
    z-index: 2;
    transition: var(--transition);
}

.tourism-place-card.active {
    transform: scale(1.02);
    border-top: 5px solid var(--accent-gold);
    /* Top accent highlight only */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.tourism-place-card:hover {
    transform: translateY(-6px);
}

.tourism-place-card.active:hover {
    transform: translateY(-6px);
}

.tourism-card-content {
    padding: 24px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    align-items: flex-start;
}

.tourism-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tourism-card-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.tourism-card-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-left: 12px;
}

.tourism-place-card.active .tourism-card-line {
    background-color: var(--accent-gold);
}

.tourism-card-title-small {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.tourism-card-desc-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    transition: var(--transition);
}

.tourism-card-explore {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.tourism-place-card.active .tourism-card-explore {
    color: var(--accent-gold);
}

.tourism-card-explore svg {
    transition: var(--transition);
}

.tourism-place-card:hover .tourism-card-explore svg {
    transform: translateX(4px);
}

.tourism-card-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    margin-top: 15px;
    align-self: flex-start;
    transition: var(--transition);
}

.tourism-card-explore-btn:hover {
    background-color: var(--white);
    color: var(--primary-navy);
}





/* 15. Travel & Tourism Page About Section - Minimalist Design */
.travel-about-section {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.travel-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.travel-about-left {
    padding-right: 20px;
}

.travel-about-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.travel-about-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 24px;
}

.travel-about-title span {
    color: var(--accent-gold);
    display: block;
}

.travel-about-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.travel-minimal-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(10, 28, 48, 0.08);
    border-bottom: 1px solid rgba(10, 28, 48, 0.08);
    padding: 24px 0;
}

.travel-stat-item {
    display: flex;
    flex-direction: column;
}

.travel-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.travel-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.travel-about-right {
    width: 100%;
}

.travel-minimal-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.travel-minimal-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.travel-minimal-image-wrapper:hover .travel-minimal-img {
    transform: scale(1.04);
}





/* 16. Tour Packages Section Styling */
.tour-packages-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 28, 48, 0.04);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10, 28, 48, 0.08);
}

.package-img-wrapper {
    position: relative;
    width: 100%;
    height: 170px;
    /* Reduced height from 220px */
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.package-card:hover .package-img {
    transform: scale(1.06);
}

.package-price-tag {
    position: absolute;
    top: 15px;
    /* Reduced offset */
    right: 15px;
    /* Reduced offset */
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 6px 14px;
    /* Reduced padding */
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    /* Reduced font size */
    box-shadow: 0 4px 10px rgba(195, 147, 60, 0.25);
    z-index: 2;
}

.package-card-body {
    padding: 18px;
    /* Reduced padding from 24px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    /* Reduced margin */
}

.package-duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-rating {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.package-rating .star-icon {
    color: #ffc107;
    font-size: 13px;
}

.package-card-title {
    font-size: 18px;
    /* Slightly reduced font size */
    font-weight: 750;
    color: var(--primary-navy);
    margin-bottom: 6px;
    /* Reduced margin */
    transition: var(--transition);
}

.package-card:hover .package-card-title {
    color: var(--accent-gold);
}

.package-card-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.45;
    margin-bottom: 12px;
    /* Reduced margin */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.package-features-list {
    list-style: none;
    margin-bottom: 16px;
    /* Reduced margin */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-features-list li {
    font-size: 12.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features-list .check-icon {
    color: var(--accent-gold);
    font-weight: 700;
}

.package-divider {
    height: 1px;
    background-color: rgba(10, 28, 48, 0.06);
    margin-bottom: 16px;
    /* Reduced margin */
    margin-top: auto;
}

.package-card-footer {
    width: 100%;
}

.package-book-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px;
    font-size: 14px;
}



/* 17. Redesigned Testimonials Section (Trustpilot Slider style) */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.testimonials-header-minimal {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header-minimal h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.trustpilot-stars-inline {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    font-size: 14px;
    gap: 4px;
}

.trustpilot-star-green {
    color: #00b67a;
    font-size: 20px;
    line-height: 1;
}

.testimonials-slider-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.testimonials-left-panel {
    position: relative;
    padding-top: 10px;
}

.testimonials-left-panel .large-quote {
    font-size: 90px;
    font-family: serif;
    color: #e5e7eb;
    line-height: 1;
    display: block;
    margin-bottom: 0px;
    margin-left: -5px;
    user-select: none;
    font-weight: 800;
}

.testimonials-left-panel h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 30px;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}

.slider-arrow:hover {
    color: var(--primary-navy);
    background-color: rgba(10, 28, 48, 0.04);
}

.slider-line {
    width: 80px;
    height: 2px;
    background-color: #e5e7eb;
    position: relative;
}

.slider-line-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-navy);
    transition: left 0.3s ease;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide-card {
    min-width: calc(50% - 15px);
    width: calc(50% - 15px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-bubble {
    background-color: var(--white);
    border: 1px solid rgba(10, 28, 48, 0.05);
    box-shadow: 0 10px 30px rgba(10, 28, 48, 0.04);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    margin-bottom: 24px;
    transition: var(--transition);
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transform: rotate(45deg);
    border-right: 1px solid rgba(10, 28, 48, 0.05);
    border-bottom: 1px solid rgba(10, 28, 48, 0.05);
}

.testimonial-slide-card:hover .testimonial-bubble {
    box-shadow: 0 15px 35px rgba(10, 28, 48, 0.08);
}

.testimonial-bubble-text {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 90px;
}

.trustpilot-stars-green-row {
    display: flex;
    gap: 4px;
}

.trustpilot-stars-green-row svg {
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

.testimonial-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 8px;
}

.user-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name-time {
    display: flex;
    flex-direction: column;
}

.user-name-time h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.user-name-time span {
    font-size: 11px;
    color: var(--text-gray);
}



/* 18. Gallery Section Bento Grid Styling */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 28, 48, 0.85) 0%, rgba(10, 28, 48, 0.3) 60%, rgba(10, 28, 48, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.4s ease;
    letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Custom Spans & Row Heights based on Mockup Layout */
/* Row 1 */
.item-1 {
    grid-column: span 3;
    height: 240px;
}

.item-2 {
    grid-column: span 6;
    height: 240px;
}

.item-3 {
    grid-column: span 3;
    height: 240px;
}

/* Row 2 */
.item-4 {
    grid-column: span 4;
    height: 260px;
}

.item-5 {
    grid-column: span 5;
    height: 260px;
}

.item-6 {
    grid-column: span 3;
    height: 260px;
}

/* Row 3 */
.item-7 {
    grid-column: span 7;
    height: 280px;
}

.item-8 {
    grid-column: span 5;
    height: 280px;
}





/* 19. Travel Page CTA Section Styling */
.travel-cta-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(10, 28, 48, 0.9), rgba(10, 28, 48, 0.9)), url('../images/cta_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.travel-cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.travel-cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 20. Service Areas Page Styling */
.service-areas-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/service_areas_banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.service-areas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    border-radius: 0 0 0 100%;
    background-color: rgba(255, 255, 255, 0.015);
    border-left: 1.5px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

.service-areas-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.service-areas-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.service-areas-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-areas-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 21. Service Coverage Section Styling */
.service-coverage-section {
    padding: 100px 0;
    background-color: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Column */
.coverage-content-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.coverage-content-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.coverage-content-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.coverage-content-title span {
    color: var(--accent-gold);
}

.coverage-content-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.coverage-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.coverage-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--primary-navy);
    font-weight: 600;
}

.coverage-feature-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
}

/* Right Cards Grid Column */
.coverage-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.coverage-card {
    background-color: var(--white);
    border: 1px solid rgba(10, 28, 48, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.coverage-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(10, 28, 48, 0.1);
}

.coverage-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f7ebd3;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.coverage-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.coverage-card-routes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-card-routes li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.coverage-card-routes li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* 22. Driven by Excellence Section Styling */
.story-excellence-section {
    padding: 100px 0;
    background-color: #fcfbfa;
    /* Soft warm light off-white background matching the mock */
    position: relative;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Left Column */
.excellence-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.excellence-badge-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.excellence-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.excellence-badge-line {
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.excellence-main-img-wrapper {
    width: 100%;
    height: 467px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.excellence-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.excellence-feature-bar {
    background-color: var(--primary-navy);
    border-radius: 24px;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.excellence-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    color: var(--white);
}

.excellence-feature-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.excellence-feature-icon {
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excellence-feature-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.excellence-feature-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Right Column */
.excellence-right {
    display: flex;
    flex-direction: column;
}

.excellence-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

.excellence-title span {
    color: var(--accent-gold);
}

.excellence-title-line {
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 30px;
    border-radius: 10px;
}

.excellence-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.excellence-mission-card {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(10, 28, 48, 0.06);
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid rgba(10, 28, 48, 0.03);
}

.mission-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-quote-icon {
    font-size: 48px;
    font-family: serif;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: bold;
}

.mission-card-text {
    font-size: 14px;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-card-divider {
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 16px;
}

.mission-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card-author-info {
    display: flex;
    flex-direction: column;
}

.mission-card-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
}

.mission-card-author-tag {
    font-size: 11px;
    color: var(--text-gray);
}

.mission-card-img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mission-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-card-curve {
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 45px;
    fill: var(--white);
    pointer-events: none;
    z-index: 2;
}

/* 21. Post a Review Page Styling */
.review-banner {
    background-image: linear-gradient(rgba(10, 28, 48, 0.85), rgba(10, 28, 48, 0.85)), url('../images/services_banner_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.review-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.review-banner-badge {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.review-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.review-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.review-section {
    padding: 80px 0;
    background-color: var(--white);
}

.review-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: stretch;
    /* Stretch columns to match heights */
    margin-top: -80px;
    /* Shift panels up to overlap banner */
    position: relative;
    z-index: 3;
}

/* Left Rating Panel */
.review-info-panel {
    background-color: #fcfbfa;
    border-radius: 24px;
    padding: 40px 40px 12px;
    /* Reduced bottom padding */
    border: 1px solid rgba(10, 28, 48, 0.05);
    height: 100%;
    /* Fill column height */
    margin-top: 50px;
    /* Shift panel down slightly on desktop */
}

.review-info-badge {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.review-info-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.review-info-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    /* Reduced margin */
}

.rating-score-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(10, 28, 48, 0.05);
}

.rating-score-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.rating-score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-score-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
}

.rating-score-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Form Row Items */
.form-row-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Equal Height Matches */
.review-container .contact-form-panel,
.review-container .contact-form-card {
    height: 100%;
}

.review-container .contact-form-card {
    padding: 40px 40px 12px;
    /* Reduced bottom padding */
}

.review-container .form-card-desc {
    margin-bottom: 20px;
    /* Reduced margin */
}

.review-container .inquiry-form {
    gap: 16px;
    /* Reduced spacing between fields */
}