:root {
    --primary-black: #050505;
    --secondary-black: #0a0a0a;
    --card-bg: #0f0f0f;
    --gold: #b0b0b0;
    --gold-light: #d0d0d0;
    --gold-dim: rgba(180, 180, 180, 0.10);
    --gold-border: rgba(180, 180, 180, 0.18);
    --gold-glow: rgba(180, 180, 180, 0.06);
    --white: #f5f5f5;
    --gray: #8a8a8a;
    --gray-light: #b0b0b0;
    --accent: var(--gold);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
}

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

/* ========== NAVIGATION ========== */
.navbar {
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.96) 0%, rgba(8, 8, 8, 0.9) 100%);
    backdrop-filter: blur(30px) saturate(1.3);
    -webkit-backdrop-filter: blur(30px) saturate(1.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(201, 168, 76, 0.25) 30%, rgba(201, 168, 76, 0.5) 50%, rgba(201, 168, 76, 0.25) 70%, transparent 95%);
    pointer-events: none;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(2, 2, 2, 0.99) 0%, rgba(5, 5, 5, 0.97) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 2px 16px rgba(201, 168, 76, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0 1.5rem;
}

.nav-links li a {
    color: rgba(210, 210, 210, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 0.7rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(-50%);
}

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

.nav-links li a:hover::after {
    width: 60%;
}

/* Nav right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    border-radius: 50px;
    transition: opacity 0.4s ease;
}

.nav-cta:hover {
    border-color: var(--gold);
    color: var(--primary-black);
    background: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25), 0 0 40px rgba(201, 168, 76, 0.1);
    transform: translateY(-1px);
}

.nav-cta:hover svg {
    stroke: var(--primary-black);
}

.nav-cta svg {
    transition: all 0.35s ease;
}

.language-dropdown {
    background: transparent;
    color: rgba(200, 200, 200, 0.7);
    border: 1px solid rgba(200, 200, 200, 0.15);
    padding: 0.4rem 1.5rem 0.4rem 0.6rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: 'Inter', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%23999' d='M4 5L0 0h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.45rem center;
    text-transform: uppercase;
}

.language-dropdown:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%23c9a84c' d='M4 5L0 0h8z'/%3E%3C/svg%3E");
}

.language-dropdown option {
    background: #141414;
    color: var(--white);
    padding: 0.4rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0a0a0a;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--primary-black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 70%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 920px;
    width: 90%;
    z-index: 2;
    background: linear-gradient(165deg, rgba(15,15,15,0.92) 0%, rgba(8,8,8,0.96) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* ========== BOOKING WIDGET ========== */
.booking-widget { margin-top: 1.5rem; }

.booking-form {
    display: grid;
    gap: 1.25rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.service-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn svg {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-btn:hover svg {
    opacity: 0.9;
}

.service-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 20px rgba(180, 180, 180, 0.08);
}

.service-btn.active svg {
    opacity: 1;
    color: var(--gold);
}

#transfer-fields,
#excursion-fields {
    animation: fadeSlideIn 0.3s ease forwards;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 0.75rem;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

.form-group input[readonly] {
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.6;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.form-group input[type="date"],
.form-group input[type="time"] {
    color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23b0b0b0' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.form-group select option {
    background: #141414;
    color: var(--white);
    padding: 0.5rem;
}

.booking-submit {
    margin-top: 0.25rem;
}

.booking-submit .cta-button {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 0.75rem;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-bottom-color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

/* ========== SECTION STYLING ========== */
.section-title {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* ========== SERVICES ========== */
.services {
    padding: 6rem 0;
    background: var(--secondary-black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    color: var(--gold);
    margin: 1.25rem 1.25rem 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    padding: 0 1.25rem 1.75rem;
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ========== TRANSFERS ========== */
.transfers {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.transfers-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.transfers-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 0.92rem;
    table-layout: fixed;
    font-family: 'Inter', sans-serif;
}

.transfers-table th,
.transfers-table td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.transfers-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid var(--gold-border);
    font-family: 'Inter', sans-serif;
}

.transfers-table th:first-child {
    text-align: left;
    width: 45%;
}

.transfers-table th:nth-child(2),
.transfers-table th:nth-child(3),
.transfers-table th:nth-child(4) {
    width: 18.33%;
}

.transfers-table tbody tr:nth-child(even):not(.transfer-origin) {
    background: rgba(201, 168, 76, 0.02);
}

.transfers-table tbody tr:not(.transfer-origin):hover {
    background: rgba(201, 168, 76, 0.06);
}

.transfers-table .transfer-origin td {
    background: rgba(201, 168, 76, 0.08);
    font-weight: 700;
    color: var(--gold);
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border-top: 1px solid var(--gold-border);
    font-family: 'Inter', sans-serif;
}

.transfers-table td:first-child {
    color: var(--white);
    text-align: left;
    font-weight: 400;
}

.transfers-table td:nth-child(2),
.transfers-table td:nth-child(3),
.transfers-table td:nth-child(4) {
    color: var(--gold-light);
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    font-size: 0.92rem;
}

.transfers-note {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(201, 168, 76, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.85rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
}

.transfers-note strong {
    color: var(--gold);
}

.transfers-note p { margin-bottom: 0.4rem; }
.transfers-note p:last-child { margin-bottom: 0; }

/* ========== EXCURSIONS ========== */
.excursions {
    padding: 6rem 0;
    background: var(--secondary-black);
    position: relative;
}

.excursions::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 50% 40% at 70% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.excursions .transfers-table th small {
    display: block;
    font-weight: 400;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* ========== DESTINATIONS ========== */
.destinations {
    padding: 6rem 0;
    background: var(--secondary-black);
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 50% 30% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.destination-card {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%) !important;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12) !important;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    z-index: 1;
}

.destination-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border) !important;
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.1);
}

.destination-image {
    height: 220px;
    overflow: hidden;
}

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

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

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.destination-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.destination-content li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: var(--gray-light);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.destination-content li:before {
    content: "✦ ";
    color: var(--gold);
    font-size: 0.7rem;
    margin-right: 0.3rem;
}

/* ========== FLEET ========== */
.fleet {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 30% at 30% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.fleet-card {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
    z-index: 2;
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.1);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

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

.fleet-content {
    padding: 1.5rem;
}

.fleet-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.fleet-content p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.fleet-content ul {
    list-style: none;
    margin-bottom: 1.25rem;
}

.fleet-content li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.fleet-content li:before {
    content: "✦ ";
    color: var(--gold);
    font-size: 0.65rem;
    margin-right: 0.3rem;
}

/* ========== TRUSTPILOT / PARTNERS ========== */
.trustpilot-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

.trustpilot-banner {
    margin: 2rem 0;
    text-align: center;
}

.trustpilot-banner a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.trustpilot-banner img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.trustpilot-banner a:hover img {
    transform: scale(1.01);
    box-shadow: 0 16px 50px rgba(201, 168, 76, 0.1);
    border-color: var(--gold-border);
}

.trustpilot-info { margin-top: 3rem; }

.trustpilot-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
    padding: 2rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.08);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ========== ABOUT ========== */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 50% 40% at 20% 30%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.about-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
}

.feature-item {
    background: rgba(201, 168, 76, 0.04) !important;
    padding: 1.25rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(201, 168, 76, 0.08) !important;
    transition: var(--transition) !important;
}

.feature-item:hover {
    transform: translateY(-3px) !important;
    border-color: var(--gold-border) !important;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.06) !important;
}

.feature-item h3 {
    color: var(--gold) !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.1rem !important;
}

.feature-item p {
    font-size: 0.85rem !important;
    color: var(--gray) !important;
    line-height: 1.5 !important;
    font-family: 'Inter', sans-serif !important;
}

.about-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
}

.about-stats .stat-item {
    background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%) !important;
    padding: 1.5rem 1rem !important;
    border-radius: 14px !important;
    border: 1px solid rgba(201, 168, 76, 0.1) !important;
    text-align: center !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.about-stats .stat-item:hover {
    transform: translateY(-3px) !important;
    border-color: var(--gold-border) !important;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.06) !important;
}

.about-stats .stat-number {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    margin-bottom: 0.3rem !important;
    font-family: 'Playfair Display', serif !important;
}

.about-stats .stat-label {
    font-size: 0.85rem !important;
    color: var(--gray-light) !important;
    font-family: 'Inter', sans-serif !important;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-black);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(201, 168, 76, 0.3) 50%, transparent 90%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 6px;
}

.footer-logo h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.footer-logo p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 250px;
    font-family: 'Inter', sans-serif;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ========== ANIMATIONS ========== */

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes gold-line-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    animation: gold-line-sweep 4s ease-in-out infinite;
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

.stat-number {
    position: relative;
}

.gold-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.hero-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ========== IMAGE PLACEHOLDERS ========== */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    border: 1px dashed var(--gold-border);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 42px;
    }

    .nav-container {
        padding: 0.6rem 1rem;
    }

    /* Mobile menu */
    .nav-right {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(2, 2, 2, 0.99) 0%, rgba(8, 8, 8, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        padding: 1rem 0.75rem;
        width: 100%;
        display: block;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

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

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        width: 100%;
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }

    /* Booking form */
    .booking-widget {
        margin-top: 1rem;
    }

    .booking-form {
        gap: 0.75rem;
    }

    .service-type-toggle {
        gap: 0.5rem;
        margin-bottom: 0.1rem;
    }

    .service-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .service-btn svg {
        width: 16px;
        height: 16px;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .form-group label {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.85rem 0.75rem;
        font-size: 16px;
        border-radius: 8px 8px 0 0;
    }

    .booking-submit {
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.25rem;
        font-size: 0.82rem;
        width: 100%;
        text-align: center;
    }

    /* Section titles */
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    /* Sections padding */
    .services,
    .transfers,
    .excursions,
    .destinations,
    .fleet,
    .about,
    .trustpilot-section {
        padding: 3.5rem 0;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-image {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin: 1rem 1rem 0.5rem;
    }

    .service-card p {
        padding: 0 1rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Transfers table */
    .transfers-table-wrapper {
        margin: 1rem 0;
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .transfers-table {
        min-width: 520px;
        font-size: 0.82rem;
    }

    .transfers-table th,
    .transfers-table td {
        padding: 0.55rem 0.6rem;
        font-size: 0.78rem;
    }

    .transfers-table th:first-child {
        width: 42%;
    }

    .transfers-table th:nth-child(2),
    .transfers-table th:nth-child(3),
    .transfers-table th:nth-child(4) {
        width: 19.33%;
    }

    .transfers-table .transfer-origin td {
        font-size: 0.8rem;
        padding: 0.65rem 0.6rem;
    }

    .transfers-note {
        font-size: 0.8rem;
        padding: 1rem;
    }

    /* Destinations grid */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .destination-image {
        height: 180px;
    }

    .destination-content {
        padding: 1.25rem;
    }

    .destination-content h3 {
        font-size: 1.15rem;
    }

    /* Fleet grid */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .fleet-image {
        height: 180px;
    }

    .fleet-content {
        padding: 1.25rem;
    }

    .fleet-content h3 {
        font-size: 1.1rem;
    }

    .fleet-content p {
        font-size: 0.82rem;
    }

    .fleet-content li {
        font-size: 0.82rem;
    }

    /* Trustpilot */
    .trustpilot-banner img {
        border-radius: 10px;
    }

    .trustpilot-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trustpilot-info {
        margin-top: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text {
        padding: 1.5rem 1.25rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .feature-item {
        padding: 1rem !important;
    }

    .feature-item h3 {
        font-size: 1rem !important;
    }

    .feature-item p {
        font-size: 0.82rem !important;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .about-stats .stat-number {
        font-size: 1.8rem !important;
    }

    .about-stats .stat-label {
        font-size: 0.78rem !important;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center !important;
    }

    .footer-logo-img {
        height: 48px;
    }

    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-section a:hover {
        padding-left: 0;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .hero-content {
        padding: 1.25rem 1rem;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.82rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .transfers-table {
        min-width: 480px;
    }
}
