:root {
    --snow: #f8f5f0;
    --deep: #0d1f2d;
    --pine: #1a3a2a;
    --gold: #c9a84c;
    --ice: #ddeeff;
    --mist: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--deep);
    color: var(--snow);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* Fix iOS blue phone numbers */
a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(13, 31, 45, 0.95);
    backdrop-filter: blur(14px);
    padding: 15px 40px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 700;
}

.logo span {
    color: var(--snow);
}

.nav-cta {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--snow);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger-btn:hover span {
    background: var(--gold);
}

/* ── SIDEBAR ── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--deep);
    z-index: 2001;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

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

.close-btn {
    background: transparent;
    border: none;
    color: var(--snow);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: var(--gold);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-links a {
    color: var(--snow);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.sidebar-cta {
    margin-top: 20px;
    background: var(--gold) !important;
    color: var(--deep) !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 4px;
    font-weight: 700 !important;
}

.sidebar-cta:hover {
    padding-left: 0 !important;
    opacity: 0.9;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(to bottom, rgba(13, 31, 45, 0.75) 0%, rgba(13, 31, 45, 0.85) 100%),
        url('images/banner-image.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--deep));
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.star-icon {
    color: var(--gold);
    font-size: 1rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 900;
    animation: fadeUp 0.9s 0.15s ease both;
}

h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    max-width: 560px;
    margin: 22px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(248, 245, 240, 0.75);
    animation: fadeUp 0.9s 0.3s ease both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    animation: fadeUp 0.9s 0.45s ease both;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn-outline {
    border: 2px solid rgba(248, 245, 240, 0.4);
    color: var(--snow);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.trust-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeUp 0.9s 0.6s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(248, 245, 240, 0.65);
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ── SECTION WRAPPER ── */
section {
    padding: 40px 24px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-title em {
    color: var(--gold);
    font-style: normal;
}

.section-sub {
    margin-top: 14px;
    color: rgba(248, 245, 240, 0.65);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

/* ── BOOKING BANNER ── */
.booking-banner {
    background: var(--pine);
    color: var(--snow);
    text-align: center;
    padding: 80px 24px;
}

.banner-sub {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--gold);
}

.banner-title {
    font-family: 'DM Sans', sans-serif;
    font-size: min(2.5rem, 6vw);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(248, 245, 240, 0.75);
}

.booking-widget {
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
}

.widget-tab {
    display: inline-block;
    background: var(--deep);
    color: var(--snow);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px 8px 0 0;
}

.widget-tab span {
    color: var(--gold);
}

.widget-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.widget-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    justify-content: space-between;
}

.widget-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--snow);
    font-weight: 500;
    flex: 1;
    min-width: 120px;
}

.widget-field input,
.widget-field select {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--snow);
    outline: none;
    width: 100%;
}

.widget-field select option {
    background: var(--deep);
}

.widget-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    height: 42px;
}

.widget-field input:focus,
.widget-field select:focus {
    border-color: var(--gold);
}

.widget-form button {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    height: 42px;
    /* match input height */
    flex-shrink: 0;
}

.widget-form button:hover {
    opacity: 0.85;
}

@media(max-width: 900px) {
    .widget-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: end;
    }

    .widget-field {
        width: 100%;
        min-width: unset;
        margin-bottom: 0;
    }

    .widget-form button {
        grid-column: span 2;
        margin-top: 4px;
        width: 100%;
    }
}

/* ── SWIPER STRUCTURE ── */
.services-swiper,
.fleet-swiper,
.reviews-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px !important;
    /* space for pagination */
}

.swiper-slide {
    height: auto !important;
    /* allow cards to stretch slide */
}

/* ── SERVICES ── */
.service-card {
    background: var(--mist);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 26px 22px;
    transition: border-color 0.3s, transform 0.3s;
    height: 100%;
    /* Stretch to swiper slide height */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* ── TAXI PRICES ── */
.prices {
    background: var(--pine);
    padding: 40px 24px;
}

.prices .section-title {
    color: var(--snow);
    font-weight: 700;
}

.prices .section-title em {
    color: var(--gold);
    font-style: normal;
}

.prices .section-sub {
    color: rgba(248, 245, 240, 0.75) !important;
    font-size: 1.05rem;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 12px;
    background: var(--deep);
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
}

.prices-table th {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.m-text {
    display: none;
}


.prices-table td {
    padding: 10px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--snow);
    font-weight: 500;
}

.prices-table td:nth-child(2) {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.table-book-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.table-book-btn:hover {
    opacity: 0.85;
}

.prices-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-icon i {
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(248, 245, 240, 0.6);
    line-height: 1.7;
}

/* ── WHY US ── */
.why {
    background: rgba(255, 255, 255, 0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-list .check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 2px;
}

.why-list h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-list p {
    font-size: 0.88rem;
    color: rgba(248, 245, 240, 0.6);
    line-height: 1.6;
}

.stat-box {
    background: var(--pine);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.stat .label {
    font-size: 0.82rem;
    color: rgba(248, 245, 240, 0.55);
    margin-top: 4px;
}

/* ── TAXI FLEET ── */
.fleet-section {
    background: #0a1721;
}

.fleet-card {
    background: var(--mist);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.4);
}

.fleet-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 2px solid var(--gold);
}

.fleet-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-info h3 {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.fleet-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.7);
}

.fleet-meta span i {
    color: var(--gold);
    margin-right: 4px;
}

.fleet-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: auto;
}

.fleet-price span {
    font-size: 0.9rem;
    color: rgba(248, 245, 240, 0.5);
    font-weight: 400;
}

.fleet-btn {
    text-align: center;
    width: 100%;
    display: block;
    padding: 12px 0;
}

/* ── FAQ SECTION ── */
.faq-section {
    background: var(--pine);
    padding: 80px 24px;
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--mist);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--snow);
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: rgba(248, 245, 240, 0.8);
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--gold);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0;
}

/* ── REVIEWS ── */
.reviews-section {
    background: var(--deep);
}

.review-card {
    background: var(--mist);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(248, 245, 240, 0.8);
    margin-bottom: 18px;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.rev-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.rev-loc {
    font-size: 0.78rem;
    color: rgba(248, 245, 240, 0.45);
}

/* ── CTA FORM ── */
.cta-section {
    background: linear-gradient(135deg, var(--pine) 0%, #0d1f2d 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 18px;
    padding: 40px;
}

.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--snow);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    height: 48px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--gold);
}

.form-row select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-row select option {
    background: var(--deep);
}

.form-row textarea {
    height: 120px !important;
    resize: vertical;
    padding-top: 15px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--deep);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.submit-btn:hover {
    opacity: 0.88;
}

/* ── CONTACT INFO ── */
.contact-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.5);
    margin-bottom: 3px;
}

.contact-value {
    font-weight: 600;
}

/* ── FOOTER ── */
footer {
    padding: 80px 24px 40px;
    background: #060e14;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 32px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snow);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(248, 245, 240, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-credit {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(248, 245, 240, 0.5);
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.4);
    letter-spacing: 0.5px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.wa-float i {
    font-size: 32px;
    color: white;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65);
    }
}

/* ── RESPONSIVE ── */
@media(max-width:750px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    nav {
        padding: 14px 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 260px;
        text-align: center;
    }

    .stat-box {
        padding: 28px 20px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .widget-field input,
    .widget-field select {
        height: 48px !important;
    }

    /* Fleet Mobile Adjustments */
    .fleet-info {
        padding: 16px;
    }

    .fleet-info h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .fleet-price {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }

    .fleet-meta {
        gap: 12px;
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .fleet-btn {
        padding: 14px 20px !important;
        /* Ensure content is padded correctly */
        font-size: 1rem;
        margin-top: 10px;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Table Responsiveness Fix */
    .prices {
        padding: 60px 15px;
    }

    .table-responsive {
        overflow-x: hidden;
        border-radius: 8px;
    }

    .prices-table th,
    .prices-table td {
        padding: 14px 10px;
        font-size: 0.88rem;
    }

    .prices-table td:nth-child(2) {
        font-size: 1rem;
    }

    .d-text {
        display: none;
    }

    .m-text {
        display: inline;
    }

    .table-book-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* ── MODAL STYLES ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--mist);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--snow);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
    color: var(--gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(248, 245, 240, 0.6);
    font-size: 0.9rem;
}

/* Modal Form Specifics */
.modal-content .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--snow);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    height: 48px;
}

.modal-content select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.modal-content textarea {
    height: 90px;
    resize: none;
}

.modal-content .submit-btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 1rem;
    background: var(--gold);
    color: var(--deep);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.3s;
}

@media(max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
}