@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ═══════════════════════════════════════════
   CURVA — Premium Tourism Website
   Color Palette: #daa520 (goldenrod) + #556b2f (olive) + white
   ═══════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    --amber: #daa520;
    --amber-light: #e6c04a;
    --amber-dark: #b8941a;
    --amber-50: #faf6eb;
    --amber-100: #f0e6c8;
    --amber-900: #8a6f14;

    --olive: #556b2f;
    --olive-light: #6b8a3e;
    --olive-dark: #3d4f22;
    --olive-50: #f3f6ed;
    --olive-100: #e2ead4;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Outfit', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── RESET ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}


/* ─── UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.text-accent {
    color: var(--amber);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--olive);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--olive-50);
    border: 1px solid var(--olive-100);
    border-radius: var(--radius-full);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
    box-shadow: 0 4px 14px rgba(85, 107, 47, 0.35);
}

.btn-primary:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: var(--white);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 0;
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--olive);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--olive);
    background: transparent;
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--olive);
    background: transparent;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: -16px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 440px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -1px -1px 2px rgba(0,0,0,0.03);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: var(--olive-50);
    border-color: var(--olive-100);
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gray-50);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.dropdown-item:hover .dropdown-icon {
    background: var(--olive);
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
}

.dd-lucide {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
    transition: color var(--transition);
}

.dropdown-item:hover .dd-lucide {
    color: var(--white);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* Nav CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(85, 107, 47, 0.3);
}

.nav-cta:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(85, 107, 47, 0.4);
}

.nav-cta .cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.nav-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Language Selector */
.lang-selector {
    position: relative;
    z-index: 102;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    color: var(--gray-700);
}

.lang-toggle:hover {
    background: var(--gray-100);
}

.navbar.scrolled .lang-toggle {
    background: var(--gray-50);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

.navbar.scrolled .lang-toggle:hover {
    background: var(--gray-100);
}

.lang-icon {
    width: 16px;
    height: 16px;
}

.lang-current {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: all var(--transition);
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    font-family: inherit;
}

.lang-option:hover {
    background: var(--olive-50);
}

.lang-option.active {
    background: var(--olive-50);
}

.lang-code {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--olive);
    letter-spacing: 0.5px;
    width: 24px;
}

.lang-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    flex: 1;
    text-align: left;
}

.lang-check {
    width: 16px;
    height: 16px;
    color: var(--olive);
    opacity: 0;
    transition: opacity var(--transition);
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger-line {
    background: var(--gray-800);
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════
   HERO SECTION — Premium Cinematic Motion
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gray-950);
}

/* ─── Cinematic Video Background ─── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video.active {
    opacity: 1;
}

/* ─── Overlay Layers ─── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(3,7,18,0.5) 0%, rgba(3,7,18,0.2) 50%, rgba(3,7,18,0.4) 100%),
        linear-gradient(to top, rgba(3,7,18,0.65) 0%, transparent 40%);
}

/* Film grain texture */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.015;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
    animation: grainShift 0.5s steps(3) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(-2px, 1px); }
    66%      { transform: translate(1px, -2px); }
}

/* ─── Floating Particles ─── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 18s; animation-delay: 2s; width: 2px; height: 2px; }
.particle:nth-child(3) { left: 40%; animation-duration: 12s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 1s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 70%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-duration: 13s; animation-delay: 5s; width: 2px; height: 2px; }
.particle:nth-child(7) { left: 35%; animation-duration: 17s; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; animation-duration: 15s; animation-delay: 7s; width: 2px; height: 2px; }

@keyframes floatParticle {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ─── Side Accent Lines ─── */
.hero-accent-left,
.hero-accent-right {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-accent-left {
    left: 40px;
    top: 20%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--amber), transparent);
    opacity: 0.2;
    animation: accentPulse 4s ease-in-out infinite;
}

.hero-accent-right {
    right: 40px;
    bottom: 20%;
    width: 1px;
    height: 160px;
    background: linear-gradient(to top, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0.15;
    animation: accentPulse 4s ease-in-out 2s infinite;
}

@keyframes accentPulse {
    0%, 100% { opacity: 0.1; transform: scaleY(0.8); }
    50%      { opacity: 0.3; transform: scaleY(1); }
}

/* ─── Bottom Fade ─── */
.hero-bottom-fade {
    display: none;
}

/* ─── Hero Content ─── */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
}

/* Staggered Reveal Animation */
.hero-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-reveal[data-delay="0"] { transition-delay: 0.3s; }
.hero-reveal[data-delay="1"] { transition-delay: 0.55s; }
.hero-reveal[data-delay="2"] { transition-delay: 0.8s; }
.hero-reveal[data-delay="3"] { transition-delay: 1.05s; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--amber-light);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(16px);
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--amber);
    animation: badgePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badgePing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

.badge-icon {
    width: 14px;
    height: 14px;
}

/* Title */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.hero-highlight {
    color: var(--amber);
    font-style: italic;
    position: relative;
}

.hero-highlight::after {
    content: none !important;
    display: none !important;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hide-mobile { display: inline; }

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Glowing CTA */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, var(--amber), var(--amber-light), var(--amber));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
    filter: blur(12px);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

/* Shimmer Button */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { left: -100%; }
    50%  { left: 120%; }
    100% { left: 120%; }
}

/* ─── Slide Progress ─── */
.hero-progress {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-dot {
    width: 56px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
    border: none;
    position: relative;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.25);
}

.progress-dot.active {
    width: 72px;
}

.progress-fill {
    display: block;
    width: 0;
    height: 100%;
    background: var(--amber);
    border-radius: 3px;
}

.progress-dot.active .progress-fill {
    animation: fillProgress 12s linear forwards;
}

.progress-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    transition: color var(--transition);
}

.progress-dot.active .progress-label {
    color: var(--amber);
}

.progress-divider {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
}

@keyframes fillProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ─── Scroll Indicator ─── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
    50%      { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--olive-100);
}

.service-card-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(218,165,32,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--olive-50);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--olive);
    transition: color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--olive);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--amber);
    transition: all var(--transition);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-link:hover {
    color: var(--amber-dark);
}

.service-link:hover svg {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════
   CURATED EXPERIENCES / TOURS
   ═══════════════════════════════════════════ */
.tours-section {
    background: var(--gray-50);
}

.tours-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 32px;
}

.tours-header-left {
    flex: 1;
}

.tours-header-left .section-tag {
    margin-bottom: 20px;
}

.tours-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.tours-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    flex-shrink: 0;
}

.tours-view-all svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.tours-view-all:hover {
    color: var(--amber);
    border-bottom-color: var(--amber);
}

.tours-view-all:hover svg {
    transform: translateX(4px);
}

/* Tour Cards Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Tour Card */
.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
}

/* Card Image */
.tour-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

/* Badge */
.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

.tour-badge-new {
    background: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.tour-badge-premium {
    background: var(--gray-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hover Overlay */
.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-card-quick {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--white);
    color: var(--gray-900);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.tour-card-quick svg {
    width: 15px;
    height: 15px;
}

.tour-card:hover .tour-card-quick {
    transform: translateY(0);
    opacity: 1;
}

.tour-card-quick:hover {
    background: var(--olive);
    color: var(--white);
}

/* Card Body */
.tour-card-body {
    padding: 24px;
}

.tour-card-tags {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.tour-card-tags span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
}

.tour-card-tags svg {
    width: 13px;
    height: 13px;
    color: var(--amber);
}

.tour-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Card Footer */
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}

.tour-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 400;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.tour-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    transition: all var(--transition);
}

.tour-card-link svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.tour-card-link:hover {
    color: var(--amber-dark);
}

.tour-card-link:hover svg {
    transform: translateX(4px);
}

/* Tours Stagger */
.tours-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.tours-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.tours-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }


/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-section {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--olive);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(85, 107, 47, 0.35);
}

.about-badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content .section-tag {
    display: inline-flex;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--olive);
}


/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */
.stats-section {
    background: var(--olive-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 32px;
    text-align: center;
    justify-content: center;
    justify-items: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ═══════════════════════════════════════════
   FLEET SECTION — v2 Premium
   ═══════════════════════════════════════════ */
.fleet-section {
    background: var(--gray-50);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Header */
.fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.fleet-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fleet-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-950);
    line-height: 1.15;
}

.fleet-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.fleet-view-all:hover {
    color: var(--amber);
    border-bottom-color: var(--amber);
}
.fleet-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}
.fleet-view-all:hover svg {
    transform: translateX(4px);
}

/* Category Dividers */
.fleet-category {
    margin-bottom: 32px;
    margin-top: 56px;
}
.fleet-category:first-of-type {
    margin-top: 0;
}
.fleet-category-label {
    display: flex;
    align-items: center;
    gap: 20px;
}
.fleet-category-label span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amber-dark);
    white-space: nowrap;
}
.fleet-cat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--amber-light), transparent);
    opacity: 0.4;
}

/* 2-Column Grid */
.fleet-grid-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

/* Card v2 */
.fleet-card-v2 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}
.fleet-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.2);
}

/* Card Image */
.fleet-card-v2-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gray-100);
}
.fleet-card-v2-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.fleet-card-v2:hover .fleet-card-v2-visual img {
    transform: scale(1.08);
}
.fleet-card-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fleet-card-v2:hover .fleet-card-v2-overlay {
    opacity: 1;
}

/* Badge */
.fleet-card-v2-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.35);
    z-index: 2;
}
.fleet-card-v2-badge svg {
    width: 12px;
    height: 12px;
}
.fleet-badge-premium {
    background: var(--gray-900);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.fleet-badge-group {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.fleet-badge-electric {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hover Action Buttons */
.fleet-card-v2-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.fleet-card-v2:hover .fleet-card-v2-actions {
    opacity: 1;
    transform: translateX(0);
}
.fleet-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.fleet-action-btn:hover {
    background: var(--olive);
    color: var(--white);
    transform: scale(1.1);
}
.fleet-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Card Info */
.fleet-card-v2-info {
    padding: 28px;
}

.fleet-card-v2-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fleet-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fleet-type-badge.sedan {
    background: var(--amber-50);
    color: var(--amber-dark);
    border: 1px solid var(--amber-100);
}
.fleet-type-badge.van {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}
.fleet-type-badge.electric {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.fleet-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}
.fleet-rating svg {
    width: 14px;
    height: 14px;
    color: var(--amber);
    fill: var(--amber);
}

.fleet-card-v2-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 8px;
    line-height: 1.3;
}

.fleet-card-v2-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Specs Grid */
.fleet-card-v2-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}
.fleet-spec {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--gray-600);
    font-weight: 500;
}
.fleet-spec svg {
    width: 15px;
    height: 15px;
    color: var(--amber);
    flex-shrink: 0;
}

/* Footer: Price + Book */
.fleet-card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.fleet-price-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
}
.fleet-price-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-950);
}
.fleet-price-unit {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
}

.fleet-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(85, 107, 47, 0.25);
}
.fleet-book-btn:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.35);
}
.fleet-book-btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}
.fleet-book-btn:hover svg {
    transform: translateX(3px);
}

/* Bottom CTA */
.fleet-bottom-cta {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 40px;
    background: var(--white);
    border-radius: 16px;
    border: 1px dashed var(--gray-200);
}
.fleet-bottom-cta p {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Stagger animations */
.fleet-grid-duo .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.fleet-grid-duo .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }


/* ═══════════════════════════════════════════
   SPECIAL OCCASIONS SECTION
   ═══════════════════════════════════════════ */
.occasions-section {
    background: var(--gray-950);
    padding: 110px 0;
    overflow: hidden;
    position: relative;
}

/* Subtle ambient glow behind section */
.occasions-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.occasions-section .section-tag {
    color: var(--amber);
    border-color: rgba(218, 165, 32, 0.25);
    background: rgba(218, 165, 32, 0.08);
}

.occasions-header {
    text-align: center;
    margin-bottom: 64px;
}

.occasions-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-top: 16px;
}

/* ─── Grid: 1 tall left + 2 stacked right ─── */
.occasions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.occasion-card-tall {
    grid-row: span 2;
}

/* ─── Card ─── */
.occasion-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.occasion-card:hover {
    transform: translateY(-6px);
}

.occasion-card-tall {
    min-height: 100%;
}

/* Background image */
.occasion-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.occasion-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.occasion-card:hover .occasion-card-bg img {
    transform: scale(1.06);
}

/* Dark gradient overlay */
.occasion-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.15) 0%,
        rgba(3, 7, 18, 0.55) 40%,
        rgba(3, 7, 18, 0.92) 100%
    );
    z-index: 1;
}

/* Amber glow on hover */
.occasion-card-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}
.occasion-card:hover .occasion-card-glow {
    opacity: 1;
}

/* Content */
.occasion-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

/* Icon Ring */
.occasion-icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(218, 165, 32, 0.08);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.occasion-card:hover .occasion-icon-ring {
    border-color: var(--amber);
    background: rgba(218, 165, 32, 0.15);
    box-shadow: 0 0 24px rgba(218, 165, 32, 0.2);
}
.occasion-icon-ring svg {
    width: 22px;
    height: 22px;
    color: var(--amber);
}

.occasion-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.occasion-card-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Checkmarks (wedding card) */
.occasion-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.occasion-card-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}
.occasion-card-features svg {
    width: 14px;
    height: 14px;
    color: var(--amber);
    flex-shrink: 0;
}

/* CTA Button */
.occasion-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    width: fit-content;
    backdrop-filter: blur(4px);
}
.occasion-card-btn:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.3);
}
.occasion-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}
.occasion-card-btn:hover svg {
    transform: translateX(3px);
}

/* Stagger */
.occasions-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.occasions-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.occasions-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }


/* ═══════════════════════════════════════════
   PRIVATE TRANSPORTATION SECTION
   ═══════════════════════════════════════════ */
.transfers-section {
    background: var(--white);
    padding: 110px 0;
}

.transfers-header {
    margin-bottom: 56px;
}

.transfers-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transfers-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-950);
    line-height: 1.2;
}

/* Two-column grid */
.transfers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Card */
.transfer-card {
    background: var(--gray-50);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.transfer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(218, 165, 32, 0.12);
    border-color: rgba(218, 165, 32, 0.2);
}

/* Animated Route Visual */
.transfer-card-icon-area {
    padding: 40px 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transfer-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.transfer-icon-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.transfer-dot-start {
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.15);
}
.transfer-dot-end {
    background: var(--gray-900);
    box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.1);
}

.transfer-icon-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--gray-300));
    position: relative;
    border-radius: 2px;
}

.transfer-line-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
    transition: all var(--transition);
}
.transfer-card:hover .transfer-line-car {
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.35);
    transform: translate(-50%, -50%) scale(1.1);
}
.transfer-line-car svg {
    width: 18px;
    height: 18px;
    color: var(--amber);
}

.transfer-route-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}
.transfer-route-labels span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
}

/* Body */
.transfer-card-body {
    padding: 8px 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transfer-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 10px;
}

.transfer-card-text {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Highlights 2x2 Grid */
.transfer-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.transfer-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.transfer-card:hover .transfer-highlight {
    border-color: rgba(218, 165, 32, 0.15);
}
.transfer-highlight svg {
    width: 16px;
    height: 16px;
    color: var(--amber);
    flex-shrink: 0;
}
.transfer-highlight span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Footer */
.transfer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.transfer-price-hint {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.transfer-from {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
}
.transfer-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-950);
}

.transfer-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    background: var(--olive);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(85, 107, 47, 0.25);
}
.transfer-card-btn:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.35);
}
.transfer-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}
.transfer-card-btn:hover svg {
    transform: translateX(3px);
}

/* Stagger */
.transfers-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.transfers-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }


/* ═══════════════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════════════ */
.blog-section {
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--white);
    color: var(--amber);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.blog-meta svg {
    width: 13px;
    height: 13px;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--amber);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
}

.blog-read-more svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════
   CLIENT STORIES / TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
    background: var(--gray-950);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section .section-tag {
    color: var(--amber);
    border-color: rgba(218, 165, 32, 0.25);
    background: rgba(218, 165, 32, 0.08);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-top: 16px;
}

/* Grid: 2x2 with featured card */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

/* Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(8px);
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(218, 165, 32, 0.15);
    transform: translateY(-4px);
}

/* Featured card - subtle amber accent */
.testimonial-card-featured {
    background: rgba(218, 165, 32, 0.05);
    border-color: rgba(218, 165, 32, 0.12);
}
.testimonial-card-featured:hover {
    border-color: rgba(218, 165, 32, 0.25);
    box-shadow: 0 16px 40px -12px rgba(218, 165, 32, 0.1);
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--amber);
    fill: var(--amber);
}

/* Quote */
.testimonial-quote {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 24px;
}

/* Divider */
.testimonial-divider {
    width: 32px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    margin-bottom: 20px;
    opacity: 0.5;
    transition: all var(--transition);
}
.testimonial-card:hover .testimonial-divider {
    width: 48px;
    opacity: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    border: 1.5px solid rgba(218, 165, 32, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
    transition: all var(--transition);
}
.testimonial-card:hover .testimonial-author-initial {
    background: rgba(218, 165, 32, 0.15);
    border-color: var(--amber);
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.15);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-detail {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Trust Bar */
.testimonials-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.trust-stars {
    display: flex;
    gap: 2px;
}
.trust-stars svg {
    width: 14px;
    height: 14px;
    color: var(--amber);
    fill: var(--amber);
}

.trust-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Stagger */
.testimonials-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--olive-50);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--olive);
}

.contact-detail-label {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 2px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    transition: color var(--transition);
}

.social-link:hover {
    background: var(--olive);
}

.social-link:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--gray-800);
    outline: none;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}


/* ═══════════════════════════════════════════
   JOURNEY CTA SECTION
   ═══════════════════════════════════════════ */
.journey-cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.journey-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.journey-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 7, 18, 0.82) 0%,
        rgba(3, 7, 18, 0.55) 60%,
        rgba(3, 7, 18, 0.35) 100%
    );
}

.journey-cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.journey-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(218, 165, 32, 0.12);
    border: 1px solid rgba(218, 165, 32, 0.2);
    margin-bottom: 28px;
}
.journey-cta-badge svg {
    width: 16px;
    height: 16px;
    color: var(--amber);
}
.journey-cta-badge span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber);
}

.journey-cta-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.journey-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.journey-cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.journey-btn-primary {
    padding: 16px 32px;
    font-size: 0.95rem;
}
.journey-btn-primary svg {
    width: 16px;
    height: 16px;
}

.journey-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.journey-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--olive-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: all var(--transition);
}

.footer-col a:hover {
    color: var(--amber);
    padding-left: 4px;
}

.footer-address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 6px 0 0;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart-icon {
    width: 14px;
    height: 14px;
    color: var(--amber);
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.blog-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.blog-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.blog-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }

/* Blog cards are always visible — they may be injected dynamically after
   IntersectionObserver has already run, so we force opacity here as a
   safe fallback. The animate-on-scroll + visible combo still works for
   cards that ARE observed. */
.blog-grid .blog-card {
    opacity: 1 !important;
    transform: none !important;
}

.stats-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stats-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid .tour-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .tours-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid .blog-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .occasion-card-tall {
        grid-row: span 1;
        min-height: 360px;
    }

    .transfers-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-trust {
        gap: 32px;
        padding: 24px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 80px 24px 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--transition);
        z-index: 100;
        overflow-y: auto;
    }

    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links .nav-link {
        color: var(--gray-700);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 14px 32px;
        text-align: center;
        width: 100%;
        border-radius: 12px;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--amber);
        background: var(--amber-50);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open .hamburger-line {
        background: var(--gray-800);
    }

    .nav-cta {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: calc(100% - 48px);
        margin-left: 24px;
        margin-right: 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: var(--radius-md);
        padding: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        margin-top: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
        transform: none;
    }

    .dropdown-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dropdown-item {
        padding: 12px 8px;
        flex-direction: column;
        gap: 8px;
    }

    .dropdown-icon {
        width: 40px;
        height: 40px;
    }

    .dropdown-item-title {
        font-size: 0.9rem;
    }

    .dropdown-item-desc {
        font-size: 0.75rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid .tour-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .section {
        padding: 80px 0;
    }

    /* Mobile hero adjustments */
    .hero-accent-left,
    .hero-accent-right {
        display: none;
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .fleet-grid-duo {
        grid-template-columns: 1fr;
    }

    .fleet-card-v2-visual {
        height: 220px;
    }

    .fleet-bottom-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid .blog-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-img-secondary {
        right: 0;
        bottom: -20px;
        width: 140px;
    }

    .about-badge-float {
        top: -10px;
        right: 10px;
        padding: 12px 16px;
    }

    .about-badge-number {
        font-size: 1.5rem;
    }

    .hero-progress {
        bottom: 28px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-bottom-fade {
        height: 120px;
    }

    .hero-particles .particle:nth-child(n+5) {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
