:root {
    --red: #da251c;
    --gold: #ffc107;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geist Sans', sans-serif;
}

body {
    background: #000;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}

.bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%);
    z-index: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    z-index: 10;
}

.logo { font-size: 32px; font-weight: 800; color: #fff; }
.logo .red { color: var(--red); }
.logo small { font-size: 14px; font-weight: 400; }

.phone-link {
    color: #fff; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; gap: 8px;
}
.phone-link img { width: 20px; filter: invert(1); }

/* Main Hero Body */
.hero-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    z-index: 5;
}

.content-left { max-width: 930px; }

/* Figma Typography */
.f-subheadline {
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
    margin-bottom: 15px;
}
.f-subheadline .gold { color: var(--gold); }

.f-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px;
    min-height: 55px;
}

.f-bodytext {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: rgba(255,255,255,0.9);
    max-width: 672px;
}

/* Content Right - Fixed 283x283 */
.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-container img {
    width: 283px; /* Fixed as per layout image */
    height: 283px;
    object-fit: contain;
}

/* Booking Wrapper (Centered Form + Tabs) */
.booking-wrapper {
    margin-top: auto;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers the tabs and form together */
    z-index: 10;
}

/* Tabs */
.tabs-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 10px; /* Connects with form slightly */
    z-index: 11;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.tab-btn.active { background: var(--red); }

/* Glass Form */
.glass-form {
    width: 100%;
    max-width: 1180px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 32px 36px 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    gap: 24px 28px;
    align-items: end;
    width: 100%;
}

.form-row-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(140px, 0.72fr);
}

.form-group {
    padding: 0;
    min-width: 0;
    width: 100%;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.form-group input,
.searchable-select-trigger,
.mobile-input {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-size: 15px;
    outline: none;
    width: 100%;
    height: 42px;
    padding: 0 2px 8px;
    border-radius: 0;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.mobile-input:focus-within,
.searchable-select.is-open .searchable-select-trigger,
.searchable-select-trigger:focus-visible {
    border-bottom-color: #fff;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.mobile-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
}

.mobile-input input {
    border: none !important;
    height: auto;
    padding: 0;
    flex: 1;
    min-width: 0;
}

.mobile-prefix {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0;
    line-height: 1;
}

.date-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
    height: 42px;
    padding: 0 2px 8px;
    transition: border-color 0.25s ease;
}

.date-input:focus-within {
    border-bottom-color: #fff;
}

.date-input img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    cursor: pointer;
}

.date-input input {
    border: none !important;
    height: auto;
    padding: 0;
    cursor: pointer;
}

/* Searchable select */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.searchable-select-label {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-size: 15px;
}

.searchable-select-label.is-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.searchable-select-chevron {
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.searchable-select.is-open .searchable-select-chevron {
    transform: rotate(180deg);
}

.searchable-select-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 50;
    background: rgba(22, 22, 22, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.searchable-select-search {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.searchable-select-query {
    width: 100%;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    padding: 0 12px !important;
    font-size: 14px !important;
}

.searchable-select-query::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.searchable-select-options {
    list-style: none;
    margin: 0;
    padding: 6px;
    max-height: 220px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.searchable-select-options li {
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.35;
}

.searchable-select-options li:hover,
.searchable-select-options li.is-active {
    background: rgba(218, 37, 28, 0.28);
}

.searchable-select-options li.is-selected {
    color: #fff;
    background: rgba(218, 37, 28, 0.45);
}

.searchable-select-empty {
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
}

.searchable-select-group {
    padding: 10px 12px 4px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
}

.btn-area {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.submit-btn {
    width: 100%;
    min-height: 48px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
    background: #b11d16;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.captcha-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.captcha-note a {
    color: inherit;
    text-decoration: underline;
}

/* Sticky Buttons */
.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.cta-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cta-btn img { width: 32px; }
.call { background: var(--gold); }
.whatsapp { background: #25d366; }

/* Mobile Navbar Adjustment: Stacks phone number under logo */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stacks items vertically */
        gap: 15px;             /* Adds space between logo and phone */
        text-align: center;
        padding: 20px 0 10px 0;
    }

   
    .phone-link {
        justify-content: center; /* Centers icon and text horizontally */
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .glass-form {
        padding: 28px 24px 20px;
        gap: 24px;
    }

    .form-row-1,
    .form-row-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-row-2 .btn-area {
        grid-column: 1 / -1;
    }

    .hero-body { flex-direction: column; text-align: center; }
    .f-bodytext { margin: 0 auto 30px auto; }
}

@media (max-width: 768px) {
    .glass-form {
        padding: 22px 18px 16px;
        gap: 18px;
        border-radius: 14px;
    }

    .form-row-1,
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row-2 .btn-area {
        grid-column: auto;
        margin-top: 4px;
    }

    .form-group label,
    .form-group input,
    .searchable-select-trigger,
    .searchable-select-label {
        text-align: left;
    }

    .searchable-select-dropdown {
        position: fixed;
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
        max-height: min(70vh, 420px);
        z-index: 10000;
        flex-direction: column;
    }

    .searchable-select-dropdown[hidden] {
        display: none !important;
    }

    .searchable-select.is-open .searchable-select-dropdown:not([hidden]) {
        display: flex !important;
    }

    .searchable-select-options {
        max-height: none;
        flex: 1;
    }

    .tabs-container {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        border-radius: 40px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .badge-container img {
        width: min(220px, 70vw);
        height: auto;
        aspect-ratio: 1;
    }

    .booking-wrapper {
        padding-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 4%;
    }

    .glass-form {
        padding: 18px 14px 14px;
    }

    .tab-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .submit-btn {
        min-height: 46px;
        font-size: 15px;
    }

    .logo {
        font-size: 26px;
    }

    .phone-link {
        font-size: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 360px) {
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .f-subheadline {
        font-size: 18px;
    }

    .sticky-cta {
        right: 12px;
        bottom: 18px;
    }

    .cta-btn {
        width: 52px;
        height: 52px;
    }
}


/* Stats Bar Styling */
.stats-bar {
    background-color: #f9f9f9; /* Light grey background as per image */
    padding: 30px 0;
    width: 100%;
    border-top: 1px solid #eee;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Space between items */
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-content {
    font-family: 'Geist Sans', sans-serif;
    font-size: 22px; /* Adjusted based on image */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Colors from the image */
.stat-value.gold { color: #d4af37; }
.stat-value.red { color: #da251c; }
.stat-value.teal { color: #20a39e; }

.stat-separator {
    color: #ccc;
    font-weight: 300;
    font-size: 24px;
}

.stat-text {
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .stat-separator {
        display: none; /* Hide separators on mobile for better stacking */
    }
}


/* Second section */
.fleet-section {
    padding: 100px 5%;
    background-color: #ffffff;
    overflow: hidden;
}

.fleet-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.fleet-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 15px;
}

.fleet-desc {
    font-size: 16px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Flex Grid for 3 + 2 Layout */
.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the bottom 2 cards */
    gap: 30px;
    max-width: 1300px; /* Fits 3 cards (400px each) + gaps */
    margin: 0 auto;
}

.fleet-card {
    width: 400px;
    perspective: 1000px; /* For 3D animation effect */
}

.card-inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.car-img {
    width: 100%;
    max-height: 275px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}



.card-content {
    text-align: left;
}

.car-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 5px;
}

.car-info {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.book-btn {
    width: 100%;
    padding: 15px;
    background-color: #FFB800; /* Yellow from image */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Fleet dual action buttons */
.fleet-btn-row {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: stretch;
}

.fleet-btn-row .book-btn,
.fleet-btn-row .wa-btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, letter-spacing 0.3s ease;
}

.fleet-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.fleet-btn-row .book-btn {
    background-color: #FFB800;
    color: #fff;
}

.fleet-btn-row .wa-btn {
    background-color: #25D366;
    color: #fff;
}

.fleet-btn-row .book-btn:hover {
    background-color: #e5a500;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 14px rgba(255, 184, 0, 0.35);
    transform: translateY(-1px);
}

.fleet-btn-row .wa-btn:hover {
    background-color: #1ebe57;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.fleet-btn-row .book-btn:focus-visible,
.fleet-btn-row .wa-btn:focus-visible {
    outline: 2px solid #1E1E1E;
    outline-offset: 2px;
}

@media (max-width: 360px) {
    .fleet-btn-row {
        flex-direction: column;
        gap: 10px;
    }

    .fleet-btn-row .book-btn,
    .fleet-btn-row .wa-btn {
        width: 100%;
    }
}


/* Premium Hover Effect */
.fleet-card:hover .card-inner {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #FFB800;
}

.book-btn:hover {
    background-color: #e5a500;
    letter-spacing: 1px;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE CODE
   ========================================== */

/* Tablet View (iPad/Tablets) */
@media (max-width: 1024px) {
    .stats-container {
        gap: 30px;
        flex-wrap: wrap; /* Allows stats to wrap if needed */
    }

    .fleet-grid {
        max-width: 900px;
        gap: 20px;
    }

    .fleet-card {
        /* Changes from 3-per-row to 2-per-row */
        width: calc(50% - 20px); 
    }
}

/* Mobile View (Large Phones - 768px and below) */
@media (max-width: 768px) {
    /* Stats Bar Adjustments */
    .stats-bar {
        padding: 40px 20px;
    }

    .stats-container {
        flex-direction: column; /* Stack stats vertically */
        gap: 25px;
    }

    .stat-separator {
        display: none; /* Remove vertical line on mobile */
    }

    .stat-content {
        width: 100%;
        justify-content: center; /* Center align for mobile */
        font-size: 20px;
    }

    /* Fleet Section Adjustments */
    .fleet-section {
        padding: 60px 5%; /* Reduce padding for smaller screens */
    }

    .fleet-title {
        font-size: 30px; /* Smaller heading for mobile */
    }

    .fleet-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .fleet-grid {
        flex-direction: column;
        align-items: center;
    }

    .fleet-card {
        width: 100%; /* Full width cards on mobile */
        max-width: 450px; /* Prevents cards from becoming too wide on large phablets */
    }

    .car-img {
        height: 200px; /* Reduce image height slightly for mobile balance */
    }
}

/* Extra Small Phones (480px and below) */
@media (max-width: 480px) {
    .fleet-title {
        font-size: 26px;
    }

    .card-inner {
        padding: 12px; /* Tighter padding for small screens */
    }

    .car-title {
        font-size: 18px;
    }

    .book-btn,
    .wa-btn {
        padding: 12px;
        font-size: 14px;
    }

    .stats-bar {
        padding: 30px 15px;
    }
    
    .stat-content {
        font-size: 18px;
        gap: 8px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #F8F8F8;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.reviews-title .highlight { color: #FFB800; }

.reviews-slider {
    width: 100%;
    padding: 20px 0 60px 0 !important;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 220px;
    opacity: 1 !important; /* Forces visibility */
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s ease;
}

/* Maintain hover for premium feel */
.review-card:hover {
    transform: translateY(-8px);
    border-color: #FFB800;
}

.reviewer-name {
    font-size: 20px;
    font-weight: 700;
}

.stars { color: #FFB800; font-size: 18px; }

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.view-all-wrapper { text-align: center; margin-top: 30px; }

.view-all-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Pagination Dot Fix */
.swiper-pagination {
    bottom: 10px !important;
}
.swiper-pagination-bullet-active {
    background: #FFB800 !important;
}

/* Services Section */
.services-main-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Geist Sans', sans-serif;
}

.section-intro {
    text-align: center;
    margin-bottom: 70px;
}

.main-services-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-tagline {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.services-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto 80px auto; /* "auto" on left/right centers it */
    max-width: 1170px; /* Calculated: (370px * 3) + (30px * 2) */
    width: 100%;
}

/* Also ensure your grid container is centered just in case */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1170px; 
    margin: 0 auto;
    width: 100%;
}

.service-text-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.icon-circle img { width: 30px; height: 30px; }

.gold-bg { background-color: #FFF9E5; }
.red-bg { background-color: #FFEBEB; }
.teal-bg { background-color: #E6F7F6; }

.text-info h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.text-info p { font-size: 14px; color: #555; line-height: 1.6; }

/* 3x2 Image Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.s-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s-card-img {
    width: 370px; /* Exact Figma Width */
    height: 287px; /* Exact Figma Height */
    border-radius: 10px; /* Exact Figma Radius */
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.s-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Hover Effects */
.s-card:hover .s-card-img img { transform: scale(1.1); }
.service-text-box:hover .icon-circle { transform: rotate(15deg) scale(1.1); }

/* Responsive */
@media (max-width: 1100px) {
    .services-top-row, .services-grid { grid-template-columns: 1fr 1fr; }
    .s-card-img { width: 100%; height: auto; aspect-ratio: 370/287; }
}

@media (max-width: 768px) {
    .services-top-row, .services-grid { grid-template-columns: 1fr; }
    .main-services-title { font-size: 32px; }
}

/* Last section */
.transfers-locations {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Geist Sans', sans-serif;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.transfers-intro {
    text-align: center;
    margin-bottom: 50px;
}

.transfers-intro .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.transfers-intro .main-subtitle {
    font-size: 16px;
    color: #666;
}

/* Category Block */
.location-block {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
}

.location-block:last-child {
    border-bottom: none;
}

.category-title {
    color: #da251c; /* Specific Red from design */
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* List/Grid Styles */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px 30px;
    list-style: none;
}

/* Special Grid for Hotel lists to match the 3-column design */
.hotel-grid {
    grid-template-columns: repeat(3, 1fr);
}

.location-grid li {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    position: relative;
    padding-left: 20px;
    cursor: default;
    transition: color 0.3s ease;
}

/* The Bullet Point (Dots) */
.location-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.location-grid li:hover {
    color: #da251c;
}

/* Responsive */
@media (max-width: 900px) {
    .hotel-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hotel-grid, .location-grid { grid-template-columns: 1fr; }
    .category-title { font-size: 18px; }
}

/* Footer Section */
.footer-copyright {
    background-color: #1a1a1a; /* Dark background from design */
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separation line */
}

.footer-copyright p {
    font-family: 'Geist Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Heart Icon Styling */
.footer-copyright .heart {
    color: #FFB800; /* Gold color from design */
    font-size: 16px;
    margin: 0 3px;
    display: inline-block;
}

/* Credit Link Styling */
.footer-copyright .credit-link {
    color: #FFB800; /* Gold color from design */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-copyright .credit-link:hover {
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-copyright {
        padding: 20px 15px;
    }
    .footer-copyright p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* FINAL OVERRIDE: Applies consistent width to ALL cards on mobile */
@media (max-width: 768px) {
    
    /* 1. Target both Fleet Grid and Services Grid */
    .fleet-grid, 
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* This centers the cards */
        width: 100% !important;
        padding: 0 20px !important;
        gap: 30px !important;
    }

    /* 2. Force BOTH types of cards to the exact same width */
    .fleet-card,
    .s-card {
        width: 100% !important;
        max-width: 340px !important; /* THE MAGIC NUMBER: Matches your 1st image */
        margin: 0 auto !important;
        display: block !important;
    }

    /* 3. Fix the Image containers for the Sightseeing/Transfer cards */
    .s-card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important; /* Matches the vehicle image shape */
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 10px !important;
    }

    .s-card-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    /* 4. Align text to match the vehicle cards */
    .s-card-title {
        font-size: 18px !important;
        text-align: center !important;
        margin-top: 5px !important;
        padding: 0 10px !important;
    }

    /* 5. Clean up the Top row (Pick up & Drop etc) */
    .services-top-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 20px !important;
    }

    .service-text-box {
        max-width: 340px !important;
        margin-bottom: 30px !important;
    }
}

/* STRICT MOBILE HEADLINE FIX: Prevents layout jumping */
@media (max-width: 768px) {
    .f-headline {
        /* 1. Adjust font size so 3 lines fit comfortably on small screens */
        font-size: 32px !important; 
        
        /* 2. Set a comfortable line height */
        line-height: 1.2 !important; 
        
        /* 3. CALCULATED HEIGHT: (Font Size 32px * Line Height 1.2) * 3 Lines = ~115px 
              This reserves the exact space for 3 lines even if only 1 is showing. */
        min-height:100px !important; 
        
        /* 4. Layout fixes */
        display: block !important;
        text-align: center !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .f-subheadline {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .f-bodytext {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-top: 0 !important; /* Ensures it stays put below the reserved headline space */
    }
}

/* Fix for booking form fields on mobile */
@media (max-width: 768px) {
    .form-group input::placeholder,
    .searchable-select-label.is-placeholder {
        color: rgba(255, 255, 255, 0.7);
        opacity: 1;
    }
}

/* Custom Flatpickr Styling */
.flatpickr-calendar {
    background: rgba(20, 20, 20, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
    border-radius: 15px !important;
    font-family: 'Geist Sans', sans-serif !important;
}

/* Change the "Selection" color to your Brand Red */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.selected:hover {
    background: var(--red) !important;
    border-color: var(--red) !important;
}

/* Current Day Highlight - Gold */
.flatpickr-day.today {
    border-color: var(--gold) !important;
}

.flatpickr-day.today:hover {
    background: var(--gold) !important;
    color: #000 !important;
}

/* Time Picker Styling */
.flatpickr-time input:hover, 
.flatpickr-time .flatpickr-am-pm:hover, 
.flatpickr-time input:focus, 
.flatpickr-time .flatpickr-am-pm:focus {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Animation for the popup */
.flatpickr-calendar.open {
    animation: fpFadeInDown 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fpFadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Captcha Container Styling */
.captcha-group {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.85);
    transform-origin: center;
}

/* Ensure the Submit button looks disabled until captcha is solved */
.submit-btn:disabled {
    background: #555 !important;
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Mobile Fix for Captcha */
@media (max-width: 768px) {
    .captcha-group {
        transform: scale(1);
        padding: 20px 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none !important;
    }
}

/* FINAL FIX: Stop Headline Jumping on real mobile devices */
@media (max-width: 768px) {
    .f-headline {
        /* 1. Use a fixed height instead of min-height to lock the layout */
        height: 110px !important; 
        
        /* 2. Use Flexbox to keep text centered within that fixed box */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        
        /* 3. Strict Typography */
        font-size: 28px !important; /* Slightly smaller for better fit */
        line-height: 1.2 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        
        /* 4. Prevent overflow issues */
        overflow: hidden !important;
        width: 100% !important;
    }

    /* Ensure the subheadline and body text don't have stray margins */
    .f-subheadline {
        height: auto !important;
        margin-bottom: 5px !important;
    }

    .f-bodytext {
        margin-top: 0 !important;
    }
}

/* Extra small screens (iPhone SE / older phones) */
@media (max-width: 380px) {
    .f-headline {
        height: 130px !important; /* Give more height because text will wrap more */
        font-size: 24px !important;
    }
}

/* Desktop form stays on the two-row premium layout */
@media (min-width: 1201px) {
    .form-row-1 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .form-row-2 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(140px, 0.72fr);
    }
}

/* Fix potential clash with your WhatsApp/Call buttons */
.grecaptcha-badge { 
    bottom: 100px !important; /* Raises it so it doesn't hide behind your WhatsApp button */
}

/* Hides the floating reCAPTCHA badge */
.grecaptcha-badge { 
    visibility: hidden; 
}

/* Add this near your other .phone-link styles */
.phone-link a {
    color: #fff;            /* Keep the text white */
    text-decoration: none;  /* Remove the underline */
    transition: 0.3s;       /* Smooth transition for hover effect */
}

.phone-link a:hover {
    color: var(--gold);     /* Optional: turns gold when you hover over it */
}

.phone-link .sep {
    color: rgba(255, 255, 255, 0.6); /* Slightly dims the "/" separator */
    margin: 0 5px;
}

/* Form label & date icon polish */
.form-group label {
    color: #ffffff;
    opacity: 1;
}

.date-input img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}


/* ==========================================
   BOOKING FORM + SITE RESPONSIVE HARDENING
   ========================================== */

html {
    -webkit-text-size-adjust: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.booking-wrapper,
.glass-form,
.form-row,
.form-group {
    max-width: 100%;
}

.searchable-select-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
}

.searchable-select-backdrop.is-visible {
    display: block;
}

@media (min-width: 1201px) {
    .searchable-select-backdrop {
        display: none !important;
    }
}

@media (max-width: 1440px) {
    .glass-form {
        max-width: 1080px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 20px;
    }

    .content-right {
        margin: 10px 0 20px;
    }

    .badge-container img {
        width: min(240px, 55vw);
        height: auto;
        aspect-ratio: 1;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .services-main-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .transfers-intro .main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .searchable-select.is-open .searchable-select-dropdown:not([hidden]) {
        z-index: 9999;
    }

    .sticky-cta {
        right: 14px;
        bottom: 20px;
        gap: 12px;
    }

    .cta-btn {
        width: 54px;
        height: 54px;
    }

    .cta-btn img {
        width: 28px;
    }

    .reviews-header h2,
    .fleet-title,
    .main-services-title {
        padding: 0 12px;
    }

    .location-grid li {
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .stats-container {
        gap: 16px;
    }

    .stat-content {
        font-size: 17px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .fleet-section {
        padding: 50px 4%;
    }

    .services-main-section {
        padding: 50px 4%;
    }

    .transfers-locations {
        padding: 50px 0;
    }
}

@media (max-width: 390px) {
    .logo {
        font-size: 24px;
    }

    .phone-link {
        font-size: 14px;
    }

    .f-headline {
        font-size: 24px !important;
        height: auto !important;
        min-height: 96px !important;
    }

    .glass-form {
        padding: 16px 12px 12px;
        border-radius: 12px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .form-group input,
    .searchable-select-trigger,
    .mobile-input,
    .date-input {
        font-size: 14px;
        height: 40px;
    }
}

@media (max-width: 320px) {
    .hero-section {
        padding: 0 3%;
    }

    .tab-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .tabs-container {
        padding: 4px;
        gap: 2px;
    }

    .submit-btn {
        font-size: 14px;
        min-height: 44px;
    }

    .sticky-cta {
        right: 8px;
        bottom: 12px;
    }

    .cta-btn {
        width: 48px;
        height: 48px;
    }
}
