/* ═══════════════════════════════════════════════════════
   RETIMED TURIZM — Premium Tourism Website
   Design System & Complete Styles
   ═══════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────── */
:root {
    /* Primary Palette — warm sunset tones */
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
    --primary-200: #fed7aa;
    --primary-300: #fdba74;
    --primary-400: #fb923c;
    --primary-500: #f97316;
    --primary-600: #ea580c;
    --primary-700: #c2410c;

    /* Accent — Mediterranean deep blue */
    --accent-50: #eff6ff;
    --accent-100: #dbeafe;
    --accent-200: #bfdbfe;
    --accent-300: #93c5fd;
    --accent-400: #60a5fa;
    --accent-500: #3b82f6;
    --accent-600: #2563eb;
    --accent-700: #1d4ed8;

    /* Dark theme surface colors */
    --surface-950: #0a0a0f;
    --surface-900: #0f0f17;
    --surface-850: #12121c;
    --surface-800: #161622;
    --surface-700: #1e1e2e;
    --surface-600: #262638;
    --surface-500: #3a3a52;

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f97316, #fb923c, #fbbf24);
    --gradient-hero: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #a855f7 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

    /* Spacing & Layout */
    --container-max: 1200px;
    --section-py: 120px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}

/* ─── RESET & BASE ──────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface-950);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-400);
    color: var(--primary-400);
    transform: translateY(-3px);
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.btn-glow:hover::after {
    opacity: 0.5;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── NAVIGATION ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 4px 10px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.logo:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.02);
}

.logo-image {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition-fast);
}

.logo:hover .logo-image {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 60px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-400);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: #1a1a2e;
    border-radius: 60px;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 15, 0.4) 0%,
            rgba(10, 10, 15, 0.3) 40%,
            rgba(10, 10, 15, 0.7) 70%,
            rgba(10, 10, 15, 1) 100%),
        linear-gradient(90deg,
            rgba(10, 10, 15, 0.6) 0%,
            rgba(10, 10, 15, 0.1) 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249, 115, 22, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-300);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 560px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
}

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--primary-400);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* ─── SECTION COMMON ───────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── ABOUT SECTION ─────────────────────────────────── */
.about {
    padding: var(--section-py) 0;
    background: var(--surface-900);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.about-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    color: var(--primary-400);
    transition: all var(--transition-base);
}

.about-card:hover .about-card-icon {
    background: rgba(249, 115, 22, 0.15);
    transform: scale(1.1);
}

.about-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── SERVICES SECTION ──────────────────────────────── */
.services {
    padding: var(--section-py) 0;
    background: var(--surface-950);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface-800);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-line {
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    margin-top: 24px;
    transition: width var(--transition-base);
}

.service-card:hover .service-line {
    width: 80px;
}

/* ─── DESTINATIONS SECTION ──────────────────────────── */
.destinations {
    padding: var(--section-py) 0;
    background: var(--surface-900);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    transition: background var(--transition-base);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(249, 115, 22, 0.1) 100%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.dest-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dest-content h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.dest-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.dest-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-400);
}

.dest-card-large {
    grid-row: span 1;
}

/* ─── PARTNERS CAROUSEL ────────────────────────────── */
.partners {
    padding: var(--section-py) 0;
    background: var(--surface-950);
    position: relative;
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 50px;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 32px;
    animation: partnersScroll 80s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 240px;
    padding: 28px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: all var(--transition-base);
    cursor: default;
    min-height: 120px;
}

.partner-logo--img {
    background: transparent;
}

.partner-img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: all var(--transition-base);
}

.partner-logo:hover {
    border-color: rgba(249, 115, 22, 0.25);
    transform: scale(1.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.partner-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 4px;
}

.partner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.partner-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ─── TESTIMONIALS SECTION ──────────────────────────── */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--surface-950);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(249, 115, 22, 0.03);
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 48px;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.4rem;
    color: var(--primary-400);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary-400);
    color: var(--primary-400);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--primary-400);
    width: 30px;
    border-radius: 5px;
}

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--surface-800) 0%, var(--surface-700) 100%);
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ─── CONTACT SECTION ───────────────────────────────── */
.contact {
    padding: var(--section-py) 0;
    background: var(--surface-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--surface-800);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: rgba(249, 115, 22, 0.15);
    transform: translateX(8px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 12px;
    color: var(--primary-400);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-container {
    margin-top: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 200px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
    /* Makes Google Maps blend with dark mode */
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-400);
    border-color: var(--primary-400);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

/* ─── CONTACT FORM ──────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: var(--surface-800);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    position: relative;
    flex: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--surface-700);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 14px;
    font-size: 0.75rem;
    color: var(--primary-400);
    background: var(--surface-800);
    padding: 2px 8px;
    border-radius: 4px;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--surface-700);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
    padding: 80px 0 0;
    background: var(--surface-950);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links-group h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--primary-400);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── BACK TO TOP ───────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #1a1a2e;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

/* ─── ANIMATIONS ────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────── */

/* ── Navigation collapses to hamburger ────────────── */
@media (max-width: 1100px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--transition-base), visibility var(--transition-base);
        z-index: 9;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ── Tablet landscape / small desktop ─────────────── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 80px 16px 0;
    }

    .hero-desc {
        font-size: 1.05rem;
    }
}

/* ── Tablet portrait ──────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .container {
        padding: 0 20px;
    }

    /* ─ Hero ─ */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 100px 8px 0;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-actions {
        margin-bottom: 40px;
        gap: 12px;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-stat-divider {
        height: 30px;
    }

    /* Hide scroll indicator on mobile — overlaps stats */
    .hero-scroll {
        display: none;
    }

    /* Smaller back-to-top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }

    /* ─ Section headers ─ */
    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 6px 16px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* ─ About ─ */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card {
        padding: 28px 24px;
    }

    .about-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .about-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .about-card p {
        font-size: 0.85rem;
    }

    /* ─ Services ─ */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .service-card {
        padding: 28px 24px;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-line {
        margin-top: 16px;
    }

    /* ─ Destinations ─ */
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 16px;
    }

    .dest-content {
        padding: 20px;
    }

    .dest-content h3 {
        font-size: 1.3rem;
    }

    .dest-content p {
        font-size: 0.8rem;
    }

    /* ─ Testimonials ─ */
    .testimonials::before {
        font-size: 10rem;
        top: 40px;
    }

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

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .testimonial-controls {
        margin-top: 28px;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
    }

    /* ─ CTA Band ─ */
    .cta-band {
        padding: 48px 0;
    }

    .cta-band .container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* ─ Contact ─ */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-card {
        padding: 18px;
        gap: 14px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-card h4 {
        font-size: 0.85rem;
    }

    .contact-info-card p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .form-group label {
        left: 16px;
        top: 14px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    /* ─ Footer ─ */
    .footer {
        padding: 48px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links-group h4 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 20px 0;
    }
}

/* ── Small phones ─────────────────────────────────── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 90px 4px 0;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .hero-desc {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 32px;
    }

    .btn {
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.88rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 8px;
        justify-content: space-around;
        width: 100%;
    }

    .hero-stat {
        flex: 1;
        min-width: 0;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    /* Destination cards taller on tiny screens for text */
    .destinations-grid {
        grid-auto-rows: 240px;
    }

    .dest-content {
        padding: 16px;
    }

    .dest-tag {
        font-size: 0.6rem;
        padding: 3px 10px;
        margin-bottom: 6px;
    }

    .dest-content h3 {
        font-size: 1.15rem;
        margin-bottom: 2px;
    }

    .dest-content p {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .dest-price {
        font-size: 0.72rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    /* Contact form */
    .contact-form {
        padding: 20px 14px;
    }

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

    .form-group label {
        left: 14px;
        top: 12px;
        font-size: 0.85rem;
    }

    /* About cards compact */
    .about-card {
        padding: 24px 20px;
    }

    .about-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .about-card-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Service cards compact */
    .service-card {
        padding: 24px 20px;
    }

    /* Section titles */
    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .section-desc {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-links-group a {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }
}

/* ─── HOTEL GALLERY SECTION ─────────────────────── */
.hotel-gallery {
    padding: var(--section-py) 0;
    background: var(--surface-850);
    position: relative;
}

.hotel-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hotel-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.hotel-card {
    flex: 0 1 calc(33.333% - 16px);
}

@media (max-width: 820px) {
    .hotel-card {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 560px) {
    .hotel-card {
        flex: 0 1 100%;
    }

    .hotel-gallery-grid {
        gap: 16px;
    }
}

.hotel-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-700);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.hotel-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hotel-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.hotel-card:hover .hotel-card-img-wrap img {
    transform: scale(1.1);
}

.hotel-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
    transition: background var(--transition-base);
}

.hotel-card:hover .hotel-card-overlay {
    background: linear-gradient(0deg, rgba(249, 115, 22, 0.25) 0%, transparent 60%);
}

.hotel-card-name {
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.hotel-card:hover .hotel-card-name {
    color: var(--primary-300);
    background: rgba(0, 0, 0, 0.52);
}

/* ── Very small screens (320px) ───────────────────── */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

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

    .dest-content h3 {
        font-size: 1.05rem;
    }

    .testimonial-text {
        font-size: 0.82rem;
    }
}