/* ═══════════════════════════════════════════
   LORYS — International Horse Transport
   Premium Website Stylesheet
   Brand: #03233F (navy) · #CBB396 (champagne)
   ═══════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    --navy: #03233F;
    --navy-deep: #011627;
    --navy-light: #0a3a66;
    --champagne: #CBB396;
    --champagne-light: #ddd0be;
    --champagne-dark: #a8926e;
    --champagne-glow: rgba(203, 179, 150, 0.25);
    --white: #ffffff;
    --white-90: rgba(255,255,255,0.9);
    --white-70: rgba(255,255,255,0.7);
    --white-50: rgba(255,255,255,0.5);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
    --white-05: rgba(255,255,255,0.05);
    --bg: #010d18;
    --bg-card: rgba(3, 35, 63, 0.35);
    --bg-card-hover: rgba(3, 35, 63, 0.55);
    --border: rgba(203, 179, 150, 0.12);
    --border-hover: rgba(203, 179, 150, 0.3);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white-90);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}
body.loading { overflow: hidden; }
a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; cursor: none; }
ul { list-style: none; }
::selection { background: var(--champagne); color: var(--navy); }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ─── PRELOADER ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    text-align: center;
    width: 420px;
}
.preloader-line {
    width: 100%;
    height: 1px;
    background: var(--white-10);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.preloader-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--champagne), var(--champagne-light));
    transition: width 0.1s linear;
}
.preloader-text {
    margin-bottom: 30px;
}
.preloader-logo {
    display: block;
    height: 80px;
    width: auto;
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
}
.preloader-sub {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
}
.preloader-counter {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white-50);
    letter-spacing: 0.1em;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--champagne);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-elastic), height 0.3s var(--ease-elastic), background 0.3s;
    mix-blend-mode: difference;
}
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--champagne);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
    opacity: 0.5;
}
.cursor.active {
    width: 50px;
    height: 50px;
    background: rgba(203,179,150,0.15);
}
.cursor-follower.active {
    width: 60px;
    height: 60px;
    opacity: 0.2;
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(1, 22, 39, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(203, 179, 150, 0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    transition: all 0.4s var(--ease-out);
    filter: brightness(0) invert(1);
}
.nav.scrolled .nav-logo-img {
    height: 38px;
}
.nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    opacity: 0.8;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-70);
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
    transform-origin: right;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(1, 22, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.8rem;
    color: var(--white-70);
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
    color: var(--champagne);
    background: var(--white-05);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--champagne);
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}
.nav-cta:hover {
    background: var(--champagne-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(203,179,150,0.25);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white-70);
    background: var(--white-05);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    font-family: var(--font-body);
}
.lang-toggle:hover {
    border-color: var(--border-hover);
    color: var(--white);
    background: var(--white-10);
}
.lang-current {
    color: var(--champagne);
}
.lang-divider {
    color: var(--white-20);
}
.lang-other {
    color: var(--white-50);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s var(--ease-out), transform 8s linear;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 39, 0.88) 0%,
        rgba(3, 35, 63, 0.7) 40%,
        rgba(1, 13, 24, 0.75) 100%
    );
    z-index: 1;
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    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");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    padding-top: 120px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--champagne);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white-05);
    backdrop-filter: blur(10px);
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(203,179,150,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(203,179,150,0); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
}
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title-line span {
    display: inline-block;
}
.hero-title em {
    font-style: italic;
    color: var(--champagne);
}
.hero-desc {
    font-size: 1.125rem;
    color: var(--white-70);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--champagne);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--champagne-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(203,179,150,0.3);
}
.btn-outline {
    border: 1px solid var(--border-hover);
    color: var(--white);
    background: var(--white-05);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: var(--champagne);
    background: rgba(203,179,150,0.1);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--champagne);
}
.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--white-50);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}
.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--white-10);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-50);
}
.hero-scroll-line {
    width: 60px;
    height: 1px;
    background: var(--white-20);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 30px;
    height: 100%;
    background: var(--champagne);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(60px); }
}

/* Hero Slide Indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-indicator {
    width: 32px;
    height: 3px;
    background: var(--white-20);
    border-radius: 2px;
    transition: all 0.5s var(--ease-out);
}
.hero-indicator.active {
    width: 56px;
    background: var(--champagne);
}

/* ─── SECTION COMMON ─── */
.section {
    padding: 140px 0;
    position: relative;
}
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--champagne);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.section-title em {
    font-style: italic;
    color: var(--champagne);
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}
.section-header .section-tag {
    padding-left: 0;
}
.section-header .section-tag::before {
    display: none;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.8;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.about-text {
    font-size: 1rem;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--white-90);
}
.about-feature svg {
    color: var(--champagne);
    flex-shrink: 0;
}
.about-visual { position: relative; }
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.about-image-wrapper:hover img { transform: scale(1.05); }
.about-image-accent {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--border);
    border-radius: 24px;
    z-index: -1;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.about-exp-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1;
}
.about-exp-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-50);
    margin-top: 6px;
    display: block;
    line-height: 1.4;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 50px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white-05);
    backdrop-filter: blur(10px);
}
.trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-50);
    white-space: nowrap;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 44px;
}
.trust-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}
.trust-logo:hover img { opacity: 1; }

/* ─── TRANSPORT CARDS ─── */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.transport-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}
.transport-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px var(--champagne-glow);
}
.transport-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.transport-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.transport-card:hover .transport-card-image img {
    transform: scale(1.08);
}
.transport-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(1,22,39,0.7) 100%);
}
.transport-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--champagne);
    background: rgba(1, 22, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}
.transport-card-content {
    padding: 28px;
}
.transport-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.transport-card-content p {
    font-size: 0.875rem;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 20px;
}
.transport-card-list {
    margin-bottom: 24px;
}
.transport-card-list li {
    font-size: 0.8rem;
    color: var(--white-70);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.transport-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--champagne);
    opacity: 0.6;
}
.transport-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--champagne);
    transition: gap 0.3s var(--ease-out);
}
.transport-card-link:hover { gap: 14px; }

/* Air section alt bg */
.air-section {
    background: linear-gradient(180deg, var(--white-05) 0%, transparent 100%);
}

/* ─── HORSE HOTEL ─── */
.hotel-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 80px;
}
.hotel-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1,13,24,0.3) 0%, rgba(1,13,24,0.85) 100%);
}
.hotel-hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    z-index: 2;
}
.hotel-hero-content p {
    font-size: 1.05rem;
    color: var(--white-70);
    line-height: 1.8;
}
.hotel-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.hotel-feature {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
}
.hotel-feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.hotel-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203,179,150,0.08);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--champagne);
}
.hotel-feature h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.hotel-feature p {
    font-size: 0.875rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* Hotel Gallery */
.hotel-gallery {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.hotel-gallery-track {
    display: flex;
    gap: 16px;
    animation: galleryScroll 40s linear infinite;
    width: max-content;
}
.hotel-gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hotel-gallery-item {
    flex-shrink: 0;
    width: 360px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
}
.hotel-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.hotel-gallery-item:hover img { transform: scale(1.06); }

/* ─── SERVICES GRID ─── */
.services-section {
    background: linear-gradient(180deg, transparent 0%, var(--white-05) 50%, transparent 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-card-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--champagne);
    opacity: 0.4;
    margin-bottom: 20px;
}
.service-card-icon {
    color: var(--champagne);
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* ─── FLEET ─── */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.fleet-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.fleet-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.fleet-image-wrapper:hover img { transform: scale(1.04); }
.fleet-text {
    font-size: 1rem;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 36px;
}
.fleet-specs { display: grid; gap: 20px; }
.fleet-spec {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white-05);
    transition: all 0.3s var(--ease-out);
}
.fleet-spec:hover {
    border-color: var(--border-hover);
    background: rgba(203,179,150,0.05);
}
.fleet-spec-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203,179,150,0.08);
    border-radius: 12px;
    color: var(--champagne);
    flex-shrink: 0;
}
.fleet-spec h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.fleet-spec p {
    font-size: 0.8rem;
    color: var(--white-50);
}

/* ─── DESTINATIONS MAP ─── */
.map-section {
    background: radial-gradient(ellipse at 50% 50%, rgba(3,35,63,0.3) 0%, transparent 70%);
}
.map-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}
.map-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-50);
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white-05);
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.03em;
}
.map-tab:hover {
    color: var(--white);
    border-color: var(--border-hover);
}
.map-tab.active {
    color: var(--navy);
    background: var(--champagne);
    border-color: var(--champagne);
}
.map-tab.active svg { color: var(--navy); }
.map-container {
    position: relative;
}
.map-leaflet {
    width: 100%;
    height: 560px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.map-leaflet .leaflet-control-attribution {
    background: rgba(1,22,39,0.7) !important;
    color: var(--white-20) !important;
    font-size: 9px;
    backdrop-filter: blur(6px);
}
.map-leaflet .leaflet-control-attribution a {
    color: var(--white-20) !important;
}
.map-leaflet .leaflet-control-zoom {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    overflow: hidden;
}
.map-leaflet .leaflet-control-zoom a {
    background: rgba(1,22,39,0.85) !important;
    color: var(--champagne) !important;
    border-color: var(--border) !important;
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 16px !important;
}
.map-leaflet .leaflet-control-zoom a:hover {
    background: rgba(3,35,63,0.95) !important;
}
/* Leaflet popup styling */
.route-popup .leaflet-popup-content-wrapper {
    background: rgba(1,22,39,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(203,179,150,0.2);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.route-popup .leaflet-popup-tip {
    background: rgba(1,22,39,0.92);
    border: 1px solid rgba(203,179,150,0.2);
}
.route-popup .leaflet-popup-content {
    margin: 12px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
}
.popup-city {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--champagne);
    margin-bottom: 2px;
}
.popup-detail {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}
.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
}
.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--white-50);
}
.map-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.map-legend-dot--origin {
    background: var(--champagne);
    box-shadow: 0 0 10px var(--champagne-glow);
}
.map-legend-dot--dest {
    background: var(--white-50);
}
.map-legend-line {
    width: 30px;
    height: 2px;
    background: var(--champagne);
    border-radius: 1px;
    opacity: 0.6;
}

/* Search Bar */
.map-search-wrapper {
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 99999;
}
.map-search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(1, 22, 39, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 0 24px;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.map-search:focus-within {
    border-color: var(--champagne-dark);
    box-shadow: 0 0 0 3px rgba(203, 179, 150, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.map-search-icon {
    flex-shrink: 0;
    color: var(--white-50);
    transition: color 0.3s;
}
.map-search:focus-within .map-search-icon {
    color: var(--champagne);
}
.map-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-90);
    letter-spacing: 0.01em;
}
.map-search input::placeholder {
    color: var(--white-30, rgba(255,255,255,0.3));
    font-size: 0.82rem;
}
.map-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(1, 22, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.map-search-results.active {
    display: block;
}
.map-search-results::-webkit-scrollbar {
    width: 4px;
}
.map-search-results::-webkit-scrollbar-track {
    background: transparent;
}
.map-search-results::-webkit-scrollbar-thumb {
    background: var(--white-10);
    border-radius: 4px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-result-item:first-child {
    border-radius: 16px 16px 0 0;
}
.search-result-item:last-child {
    border-radius: 0 0 16px 16px;
}
.search-result-item:only-child {
    border-radius: 16px;
}
.search-result-item:hover {
    background: rgba(203, 179, 150, 0.08);
}
.search-result-item + .search-result-item {
    border-top: 1px solid var(--white-05);
}
.search-result-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.search-result-dot--active {
    background: var(--champagne);
    box-shadow: 0 0 8px var(--champagne-glow);
}
.search-result-dot--request {
    background: var(--white-30, rgba(255,255,255,0.3));
}
.search-result-info {
    flex: 1;
    min-width: 0;
}
.search-result-city {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white-90);
    line-height: 1.3;
}
.search-result-country {
    font-size: 0.72rem;
    color: var(--white-50);
}
.search-result-badge {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.search-result-badge--active {
    background: rgba(203, 179, 150, 0.15);
    color: var(--champagne);
    border: 1px solid rgba(203, 179, 150, 0.25);
}
.search-result-badge--request {
    background: var(--white-05);
    color: var(--white-50);
    border: 1px solid var(--white-10);
}
.search-no-results {
    padding: 24px 20px;
    text-align: center;
}
.search-no-results-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    opacity: 0.5;
}
.search-no-results-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white-70);
    margin-bottom: 4px;
}
.search-no-results-text {
    font-size: 0.78rem;
    color: var(--white-50);
    line-height: 1.5;
}
.search-no-results-text a {
    color: var(--champagne);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.search-no-results-text a:hover {
    border-bottom-color: var(--champagne);
}

/* ─── CONTACT ─── */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(3,35,63,0.15) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-text {
    font-size: 1rem;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details { display: grid; gap: 24px; }
.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203,179,150,0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--champagne);
    flex-shrink: 0;
}
.contact-detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-50);
    display: block;
    margin-bottom: 4px;
}
.contact-detail a {
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s;
}
.contact-detail a:hover { color: var(--champagne); }
.contact-detail span:not(.contact-detail-label) {
    font-size: 0.95rem;
    color: var(--white-70);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 0;
}
.form-group:not(.form-row .form-group) {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-50);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--white);
    background: var(--white-05);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
    outline: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-20);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 3px var(--champagne-glow);
    background: rgba(203,179,150,0.05);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23CBB396' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--navy);
    color: var(--white);
}
.form-note {
    font-size: 0.75rem;
    color: var(--white-50);
    text-align: center;
    margin-top: 16px;
}
.contact-form .btn { margin-top: 8px; }
.contact-form .btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ─── FOOTER ─── */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    background: rgba(1,13,24,0.5);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
}
.footer-certifications {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-cert-logo {
    width: 60px;
    height: 24px;
    object-fit: contain;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}
.footer-cert-logo:hover { opacity: 0.8; }
.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-70);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--white-50);
    padding: 6px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--champagne); }
.footer-247 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--champagne);
    margin-top: 4px;
    font-weight: 600;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.footer-bottom span {
    font-size: 0.75rem;
    color: var(--white-20);
}
.back-to-top {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white-50);
    transition: all 0.3s var(--ease-out);
}
.back-to-top:hover {
    color: var(--champagne);
    border-color: var(--champagne);
    transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Staggered card reveals */
.transport-card.reveal:nth-child(1) { transition-delay: 0s; }
.transport-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.transport-card.reveal:nth-child(3) { transition-delay: 0.3s; }

.hotel-feature.reveal:nth-child(1) { transition-delay: 0s; }
.hotel-feature.reveal:nth-child(2) { transition-delay: 0.1s; }
.hotel-feature.reveal:nth-child(3) { transition-delay: 0.2s; }
.hotel-feature.reveal:nth-child(4) { transition-delay: 0.3s; }
.hotel-feature.reveal:nth-child(5) { transition-delay: 0.4s; }
.hotel-feature.reveal:nth-child(6) { transition-delay: 0.5s; }

.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.4s; }
.service-card.reveal:nth-child(7) { transition-delay: 0.48s; }
.service-card.reveal:nth-child(8) { transition-delay: 0.56s; }
.service-card.reveal:nth-child(9) { transition-delay: 0.64s; }

/* ─── MOBILE HAMBURGER ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1002;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
    opacity: 1;
}

/* ─── FORM SUCCESS STATE ─── */
.contact-form.submitted {
    position: relative;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(203,179,150,0.1);
    border: 2px solid var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--champagne);
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--white-50);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .nav-inner { padding: 0 40px; }
    .section { padding: 100px 0; }

    .about-grid { gap: 50px; }
    .transport-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hotel-features { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { gap: 50px; }
    .contact-grid { gap: 50px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

    .hero-content { padding: 0 40px; padding-top: 120px; }
    .hero-scroll { left: 40px; }
    .hero-slide-indicators { right: 40px; }
    .hotel-hero-content { left: 40px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE NAV (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hide custom cursor on touch devices */
    .cursor, .cursor-follower { display: none !important; }
    body, a, button, input, textarea, select { cursor: auto !important; }

    /* Prevent horizontal overflow */
    html, body { overflow-x: hidden; max-width: 100vw; }

    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .section { padding: 80px 0; }

    /* Nav */
    .nav { padding: 14px 0; }
    .nav.scrolled { padding: 10px 0; }
    .nav-logo-img { height: 38px; }
    .nav.scrolled .nav-logo-img { height: 32px; }
    .nav-logo-sub { font-size: 0.5rem; letter-spacing: 0.15em; }

    .nav-hamburger { display: flex; }
    .nav-actions { display: none; }
    .nav-mobile-actions { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(1, 13, 24, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 32px 40px;
        gap: 4px;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        border-left: 1px solid var(--border);
        overflow-y: auto;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
        opacity: 0;
    }
    .mobile-menu-overlay.active {
        pointer-events: auto;
        opacity: 1;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 0;
        width: 100%;
    }
    .nav-link::after { display: none; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        padding: 0 0 0 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        min-width: 0;
    }
    .nav-dropdown-menu a {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-content { padding: 0 24px; padding-top: 100px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 20px; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 50px; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat-num { font-size: 1.8rem; }
    .hero-stat-divider { height: 30px; }
    .hero-scroll { display: none; }
    .hero-slide-indicators { right: 24px; bottom: 24px; }
    .hero-indicator { width: 24px; }
    .hero-indicator.active { width: 40px; }
    .hero-badge { font-size: 0.6rem; padding: 6px 14px; gap: 8px; letter-spacing: 0.1em; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual { order: -1; }
    .about-experience-badge {
        bottom: -12px;
        left: -12px;
        padding: 18px 22px;
    }
    .about-exp-num { font-size: 1.5rem; }
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }
    .trust-logos { gap: 20px; }
    .trust-logo { width: 70px; height: 32px; }

    /* Transport Cards */
    .transport-grid { grid-template-columns: 1fr; }
    .transport-card-content { padding: 22px; }
    .section-header { margin-bottom: 48px; }

    /* Air Section */
    .air-section .transport-grid { grid-template-columns: 1fr; }

    /* Horse Hotel */
    .hotel-hero { height: 45vh; min-height: 300px; margin-bottom: 48px; }
    .hotel-hero-content {
        left: 24px;
        right: 24px;
        bottom: 30px;
    }
    .hotel-features { grid-template-columns: 1fr; gap: 16px; }
    .hotel-feature { padding: 24px; }
    .hotel-gallery-item { width: 260px; height: 190px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 24px; }

    /* Fleet */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Map */
    .map-leaflet { height: 400px; border-radius: 14px; }
    .map-tabs { gap: 8px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
    .map-tab { padding: 10px 20px; font-size: 0.72rem; }
    .map-search-wrapper { margin-bottom: 24px; }
    .map-search { padding: 0 18px; }
    .map-search input { padding: 12px 14px; font-size: 0.8rem; }
    .map-legend { flex-wrap: wrap; gap: 16px; margin-top: 16px; }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-wrapper { padding: 28px; border-radius: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-group { margin-bottom: 20px; }
    .contact-form-title { font-size: 1.25rem; margin-bottom: 24px; }

    /* Footer */
    .footer { padding: 60px 0 0; }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    .footer-logo-img { height: 36px; margin-bottom: 16px; }
    .footer-brand p { max-width: 100%; font-size: 0.82rem; }
    .footer-certifications { flex-wrap: wrap; gap: 12px; }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 0;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .section { padding: 60px 0; }

    .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .hero-desc { font-size: 0.88rem; }
    .hero-badge { font-size: 0.55rem; padding: 5px 12px; }
    .hero-stats { gap: 16px; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.65rem; }
    .hero-stat-divider { height: 24px; }

    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-desc { font-size: 0.9rem; }

    .btn { padding: 14px 28px; font-size: 0.82rem; }

    .preloader-logo { height: 50px; }
    .preloader-inner { width: 280px; }

    .trust-logo { width: 56px; height: 28px; }
    .trust-logos { gap: 14px; }

    .map-leaflet { height: 320px; }
    .map-search input::placeholder { font-size: 0.72rem; }

    .hotel-gallery-item { width: 200px; height: 150px; }

    .contact-form-wrapper { padding: 22px; }
    .form-group input, .form-group textarea, .form-group select { padding: 12px 14px; font-size: 0.85rem; }

    .footer-cert-logo { width: 44px; height: 18px; }
}

/* ─── MAP ANIMATED ROUTES ─── */
@keyframes dashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -30; }
}
.animated-route {
    stroke-dasharray: 12 6;
    animation: dashFlow 1.5s linear infinite;
}
@keyframes markerPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}
.origin-pulse {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--champagne);
    border-radius: 50%;
    pointer-events: none;
}
.origin-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--champagne);
    animation: markerPulse 2s ease-out infinite;
}

/* ─── AMBIENT BACKGROUND EFFECTS ─── */
.section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203,179,150,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.about::before { top: -200px; right: -200px; }
.transport-section::before { bottom: -200px; left: -200px; }
.services-section::before { top: -200px; left: 50%; transform: translateX(-50%); }
.contact-section::before { bottom: -200px; right: -200px; }

/* ─── FORM SUCCESS STATE ─── */
.contact-form.submitted {
    position: relative;
}
.contact-form.submitted::after {
    content: 'Thank you! We\'ll be in touch within 2 hours.';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 24px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--champagne);
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s var(--ease-out);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
