/* ============================================
   UrExcellency — Luxury Travel Website
   Premium CSS Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-gold: #C9A84C;
    --color-gold-light: #E0C97F;
    --color-gold-dark: #A68932;
    --color-black: #0A0A0A;
    --color-dark: #1A1A1A;
    --color-charcoal: #2D2D2D;
    --color-gray: #6B6B6B;
    --color-light-gray: #B0B0B0;
    --color-off-white: #F5F0E8;
    --color-cream: #FAF7F0;
    --color-white: #FFFFFF;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 80px;
    --section-padding: 120px;
    --container-max: 1280px;
    --container-padding: 24px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ---------- Typography ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 24px;
}

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

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-gray);
    max-width: 640px;
    line-height: 1.8;
}

.section-header.center {
    text-align: center;
    margin-bottom: 72px;
}

.section-header.center .section-label {
    padding-left: 0;
}

.section-header.center .section-label::before {
    display: none;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: var(--color-charcoal);
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -120px;
    top: 0;
    width: 120px;
    height: 100%;
    background: var(--color-gold);
    animation: preloaderSlide 1.4s ease infinite;
}

@keyframes preloaderSlide {
    0% { left: -120px; }
    100% { left: 120px; }
}

.preloader-text {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--color-light-gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
    height: 68px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.03em;
}

.logo-accent {
    color: var(--color-gold);
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--transition-smooth);
    transform-origin: right;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-black) !important;
    border-radius: 100px;
    padding: 10px 24px !important;
    font-weight: 600;
    margin-left: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 16px 36px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: 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 ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 32px;
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.1;
}

.title-italic {
    font-style: italic;
    color: var(--color-gold-light);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 44px;
}

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

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 3px;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.2; }
}

.hero-slide-indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slide-indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slide-indicator.active {
    background: var(--color-gold);
    width: 48px;
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
    background: var(--color-dark);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 20px;
}

.marquee-dot {
    width: 4px !important;
    height: 4px;
    background: var(--color-gold) !important;
    border-radius: 50%;
    display: inline-block;
    padding: 0 !important;
    flex-shrink: 0;
    min-width: 4px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- About Section ---------- */
.about {
    background: var(--color-cream);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    height: 60%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--color-cream);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    background: var(--color-gold);
    color: var(--color-black);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stat-icon {
    color: var(--color-gold);
    margin-bottom: 4px;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--color-gray);
    letter-spacing: 0.03em;
}

/* ---------- Experiences Section ---------- */
.experiences {
    background: var(--color-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.experience-card {
    background: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.exp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.exp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

.exp-card-content {
    padding: 28px;
}

.exp-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    margin-bottom: 16px;
}

.exp-card-icon svg {
    width: 22px;
    height: 22px;
}

.exp-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.exp-card-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ---------- Services / Tier Section ---------- */
.services {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.services .section-label {
    color: var(--color-gold-light);
}

.services .section-title {
    color: var(--color-white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tier-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 36px;
    position: relative;
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.tier-luxury {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
    border-color: rgba(201, 168, 76, 0.25);
}

.tier-signature {
    background: linear-gradient(135deg, rgba(180, 140, 255, 0.08) 0%, rgba(201, 168, 76, 0.05) 50%, rgba(180, 140, 255, 0.03) 100%);
    border-color: rgba(180, 140, 255, 0.3);
}

.tier-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.luxury-badge {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.signature-badge {
    background: linear-gradient(135deg, #B48CFF, #C9A84C);
    border-color: #B48CFF;
    color: var(--color-white);
}

.signature-popular {
    background: linear-gradient(135deg, #B48CFF, #9B6FE6);
    color: var(--color-white);
}

.tier-popular {
    position: absolute;
    top: -14px;
    right: 32px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.tier-tagline {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.tier-features {
    margin-bottom: 36px;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

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

.feature-icon.diamond {
    color: #B48CFF;
}

.tier-features strong {
    color: var(--color-white);
}

.btn-tier {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

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

.btn-tier-luxury {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 100px;
    color: var(--color-black);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.btn-tier-luxury:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-tier-signature {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #B48CFF, #9B6FE6);
    border: 2px solid #B48CFF;
    border-radius: 100px;
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.btn-tier-signature:hover {
    background: linear-gradient(135deg, #C4A3FF, #B48CFF);
    border-color: #C4A3FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(180, 140, 255, 0.3);
}

/* ---------- Destinations Section ---------- */
.destinations {
    background: var(--color-cream);
}

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

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.dest-card.dest-large {
    grid-column: span 2;
    height: 380px;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.4s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.dest-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 8px;
}

.dest-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.dest-overlay p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.dest-card:hover .dest-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- Process Section ---------- */
.process {
    background: var(--color-white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.process-line {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

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

.testimonial-card {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 20px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
    color: var(--color-gold);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-dark);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--color-gray);
}

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

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    transition: all 0.3s ease;
}

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

.testimonial-btn svg {
    width: 18px;
    height: 18px;
}

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

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 8px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content em {
    font-style: italic;
    color: var(--color-gold-light);
}

.cta-content p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--color-white);
}

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

.contact-lead {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

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

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 0.95rem;
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-cream);
    border-radius: 20px;
    padding: 48px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 14px 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-light-gray);
}

.form-group select {
    cursor: pointer;
    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='%236B6B6B' 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 textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: 8px;
}

.contact-form .btn svg {
    width: 18px;
    height: 18px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-black);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

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

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 6px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

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

/* ---------- Music Toggle ---------- */
.music-toggle {
    position: fixed;
    bottom: 96px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-toggle:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.music-toggle.playing {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
    animation: musicPulse 2s ease infinite;
}

.music-toggle svg {
    width: 20px;
    height: 20px;
}

.music-toggle .music-icon-on {
    display: none;
}

.music-toggle.playing .music-icon-off {
    display: none;
}

.music-toggle.playing .music-icon-on {
    display: flex;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.08); }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 3s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

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

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

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

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Hide on Mobile Helper ---------- */
.hide-mobile {
    display: inline;
}

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

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --nav-height: 72px;
    }

    .about-grid {
        gap: 48px;
    }

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

    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tier-card {
        padding: 32px 24px;
    }

    .tier-name {
        font-size: 1.5rem;
    }

    .dest-grid {
        gap: 16px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 36px;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

/* Large Mobile & Small Tablets */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    /* Nav Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 16px 24px;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-link::after {
        bottom: 10px;
        left: 24px;
        right: 24px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        font-size: 1rem;
        padding: 14px 32px !important;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-slide-indicators {
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }

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

    .about-images {
        height: 400px;
        margin-bottom: 20px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat {
        flex: 1;
        min-width: 120px;
    }

    /* Experiences */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Tiers */
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }

    .music-toggle {
        bottom: 92px;
        left: 20px;
        width: 42px;
        height: 42px;
    }

    /* Destinations */
    .dest-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dest-card,
    .dest-card.dest-large {
        grid-column: span 1;
        height: 280px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta-bg {
        background-attachment: scroll;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid > :last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* iPhone SE & Small Phones */
@media (max-width: 390px) {
    :root {
        --section-padding: 56px;
        --container-padding: 16px;
    }

    .title-line {
        font-size: 2.4rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        gap: 10px;
    }

    .badge-line {
        width: 24px;
    }

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

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

    .tier-name {
        font-size: 1.5rem;
    }

    .about-images {
        height: 320px;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 1.1rem;
    }

    .exp-text {
        font-size: 0.55rem;
    }

    .dest-card,
    .dest-card.dest-large {
        height: 240px;
    }

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

    .music-toggle {
        bottom: 80px;
        left: 16px;
        width: 38px;
        height: 38px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        left: 20px;
    }

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

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
    }
}

/* iPhone Safe Areas */
@supports (padding: env(safe-area-inset-bottom)) {
    .hero {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .footer-bottom {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: calc(28px + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(28px + env(safe-area-inset-bottom));
    }

    .music-toggle {
        bottom: calc(96px + env(safe-area-inset-bottom));
    }
}

/* Hover-capable devices only */
@media (hover: hover) {
    .dest-overlay p {
        transform: translateY(8px);
        opacity: 0;
    }
}

@media (hover: none) {
    .dest-overlay p {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .hero-slide {
        transition: opacity 0.3s ease;
        transform: none !important;
    }

    .hero-slide.active {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .navbar, .whatsapp-float, .back-to-top, #preloader,
    .hero-scroll, .hero-slide-indicators, .marquee-strip {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
    }

    .section {
        padding: 40px 0;
    }
}
