/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    /* Colors */
    --bg-primary: #0D0D0D;
    --bg-secondary: #141414;
    --bg-tertiary: #080808;
    --bg-input: #1a1a1a;
    --gold-primary: #D4AF37;
    --gold-secondary: #C5A028;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #C5A028);
    --gold-glow: rgba(212, 175, 55, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #666666;
    --text-placeholder: #555555;
    --card-bg: rgba(20, 20, 20, 0.8);
    --card-border: rgba(212, 175, 55, 0.2);
    --input-border: rgba(255, 255, 255, 0.08);
    --input-border-hover: rgba(255, 255, 255, 0.15);
    --input-border-focus: rgba(212, 175, 55, 0.6);
    --modal-overlay: rgba(0, 0, 0, 0.9);
    --success-green: #4CAF50;
    --error-red: #E53935;
    --error-bg: rgba(229, 57, 53, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --header-height: 80px;
    --section-padding: 60px;
    --container-padding: 5%;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-input-focus: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* ===========================
   Reset & Base Styles
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Dynamic Viewport Height for Mobile */
@supports (height: 100dvh) {
    html {
        height: 100dvh;
    }
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
    overflow: hidden;
}

/* iOS Safe Area Support */
@supports (padding: env(safe-area-inset-bottom)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 16px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top var(--transition-normal);
}

.skip-link:focus {
    top: 10px;
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* ===========================
   Logo Styles
   =========================== */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Footer logo slightly larger */
.footer .logo-img {
    height: 60px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-title.left {
    text-align: left;
}

.section-intro {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #000;
}

.btn-full {
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-flex;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===========================
   Header
   =========================== */
/* Clean Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 32px;
}
.header-phone i {
    font-size: 20px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    will-change: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 280px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* ===========================
   Value Proposition Banner
   =========================== */
.value-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding: 60px var(--container-padding);
    position: relative;
    overflow: hidden;
}

.value-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%, rgba(212, 175, 55, 0.08) 100%);
    pointer-events: none;
}

.banner-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    font-size: 48px;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner-text {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.8px;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.banner-text::before,
.banner-text::after {
    content: '◆';
    display: inline-block;
    margin: 0 15px;
    color: var(--gold-primary);
    opacity: 0.6;
}

.banner-accent {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin-top: 10px;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    transition: all var(--transition-normal);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: all var(--transition-normal);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    z-index: 1;
}

.service-icon {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.service-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 8px;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-text-section {
    margin-bottom: 20px;
}

.about-subheading {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold-primary);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 10px;
}

/* ===========================
   Destinations Section
   =========================== */
.destinations {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-primary);
}

.destinations-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.destinations-wrapper {
    flex: 0 1 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    width: calc((280px * 3) + (20px * 2));
}

.destinations-wrapper::-webkit-scrollbar {
    display: none;
}

.destinations-grid {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    transition: transform 0.4s ease;
}

.destination-card {
    position: relative;
    min-width: 280px;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.destinations-arrow {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.destinations-arrow:hover {
    background: var(--gold-secondary);
    transform: scale(1.1);
}

.destinations-arrow:active {
    transform: scale(0.95);
}

.destinations-arrow:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.destinations-arrow:disabled:hover {
    transform: scale(1);
}

.destinations-prev {
    order: -1;
}

.destination-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 1;
}

.destination-name {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.destination-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.destination-itinerary {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

.destination-itinerary li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.destination-itinerary li:before {
    content: '✓';
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.destination-card.active {
    background: rgba(212, 175, 55, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.destination-card:hover .destination-bg {
    transform: scale(1.1);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote-icon {
    font-size: 40px;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 18px;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--gold-primary);
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: var(--gold-primary);
    color: #000;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-dot.active {
    background: var(--gold-primary);
}

/* ===========================
   Partners Section
   =========================== */
.partners {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.partners-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

.partners-wrapper {
    flex: 0 1 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    width: calc((200px * 3) + (30px * 2));
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===========================
   Mobile Marquee Animation
   =========================== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-mobile {
    display: none;
}

.partners-desktop {
    display: grid;
}

.partners-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 20px 0;
    position: relative;
    box-sizing: border-box;
}

.partners-marquee {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 20s linear infinite;
    will-change: transform;
    width: 200%;
}

.partners-marquee.paused {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    min-width: 140px !important;
    width: 140px !important;
    height: 90px !important;
    padding: 12px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.partners-arrow {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.partners-arrow:hover {
    background: var(--gold-secondary);
    transform: scale(1.1);
}

.partners-arrow:active {
    transform: scale(0.95);
}

.partners-arrow:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.partners-arrow:disabled:hover {
    transform: scale(1);
}

.partners-prev {
    order: -1;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-support-text {
    font-size: 15px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--gold-primary);
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.business-hours {
    padding-top: 20px;
}

.hours-line {
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
    margin-bottom: 15px;
}

.business-hours p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===========================
   FORMS - COMPLETELY REVISED
   =========================== */

/* Form Container */
.contact-form,
.service-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-direction: column;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-whatsapp-fallback {
    margin: 16px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.form-whatsapp-fallback a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: none;
}

.form-whatsapp-fallback a:hover {
    color: var(--gold-light);
}

/* Labels */
.form-group > label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group > label .required {
    color: var(--error-red);
    margin-left: 2px;
}

/* Base Input Styles */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-input);
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    transition: all var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Input Hover State */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--input-border-hover);
    background: #1e1e1e;
}

/* Input Focus State */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--input-border-focus);
    background: #1e1e1e;
    box-shadow: var(--shadow-input-focus);
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-placeholder);
    font-weight: 300;
}

/* Select Dropdown */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Date & Time Inputs */
.form-group input[type="date"],
.form-group input[type="time"] {
    color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(15deg);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Number Input - Hide Spinners */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

/* Error State */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-red);
    background: var(--error-bg);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.15);
}

/* Error Message */
.error-message {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--error-red);
    margin-top: 8px;
    min-height: 18px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(-5px);
    transition: all var(--transition-fast);
}

.form-group input.error + .error-message,
.form-group select.error + .error-message,
.form-group textarea.error + .error-message,
.error-message:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Checkbox Styles - Revised
   =========================== */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color var(--transition-fast);
    position: relative;
}

.checkbox-label:hover {
    color: var(--text-primary);
}

.checkbox-label.single {
    padding: 12px 0;
}

/* Hide default checkbox */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox */
.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--bg-input);
    border: 2px solid var(--input-border);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--input-border-hover);
    background: #1e1e1e;
}

/* Checked state */
.checkbox-label input:checked + .checkbox-custom {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

/* Focus state */
.checkbox-label input:focus-visible + .checkbox-custom {
    box-shadow: var(--shadow-input-focus);
    border-color: var(--input-border-focus);
}

/* ===========================
   Radio Button Styles - Revised
   =========================== */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 8px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color var(--transition-fast);
    position: relative;
}

.radio-label:hover {
    color: var(--text-primary);
}

/* Hide default radio */
.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom radio */
.radio-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--bg-input);
    border: 2px solid var(--input-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.radio-label:hover .radio-custom {
    border-color: var(--input-border-hover);
    background: #1e1e1e;
}

/* Checked state */
.radio-label input:checked + .radio-custom {
    border-color: var(--gold-primary);
    background: var(--bg-input);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* Focus state */
.radio-label input:focus-visible + .radio-custom {
    box-shadow: var(--shadow-input-focus);
    border-color: var(--input-border-focus);
}

/* ===========================
   Form Submit Button
   =========================== */
.service-form .btn[type="submit"],
.contact-form .btn[type="submit"] {
    margin-top: 16px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-tertiary);
    padding: 60px var(--container-padding) 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column ul li {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* ===========================
   Bottom Action Bar
   =========================== */
.bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    z-index: 999;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-primary);
    font-size: 12px;
    position: relative;
}

.bottom-bar-item i {
    font-size: 20px;
    color: var(--gold-primary);
}

.bottom-bar-item.highlighted .highlight-indicator {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* ===========================
   Modals
   =========================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-overlay);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal.active {
    display: flex;
}

/* ===========================
   Itinerary Modal Styles
   =========================== */
.itinerary-modal {
    max-width: 700px;
}

.itinerary-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.itinerary-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.itinerary-subtitle {
    font-size: 16px;
    color: var(--gold-primary);
    font-style: italic;
}

.itinerary-tabs {
    display: flex;
    gap: 0;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.itinerary-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.itinerary-tab:hover {
    color: var(--gold-primary);
}

.itinerary-tab.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
}

.tab-icon {
    font-size: 18px;
}

.itinerary-content {
    padding: 30px 40px;
    max-height: 500px;
    overflow-y: auto;
}

.itinerary-pane {
    display: none;
}

.itinerary-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.itinerary-header-text {
    margin-bottom: 20px;
}

.itinerary-header-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.itinerary-subtitle-small {
    font-size: 14px;
    color: var(--gold-primary);
    font-style: italic;
}

.itinerary-day {
    margin-bottom: 25px;
}

.itinerary-day h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.itinerary-day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-day li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.itinerary-day li:before {
    content: '▸';
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.itinerary-day li ul {
    margin-top: 8px;
}

.itinerary-day li ul li {
    padding-left: 20px;
    font-size: 13px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
    z-index: 1;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
    z-index: 10;
    border: 1px solid var(--input-border);
}

.modal-close:hover {
    background: var(--gold-primary);
    color: #000;
    transform: rotate(90deg);
    border-color: var(--gold-primary);
}

.modal-header {
    padding: 40px 40px 0;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.modal-title {
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 500;
}

.modal-body {
    padding: 35px 40px 40px;
}

/* Success Modal */
.modal-success-content {
    max-width: 450px;
    text-align: center;
    padding: 50px 40px;
    overflow: visible;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: var(--gold-primary);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--gold-primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.success-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-divider {
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0 auto 25px;
}

.success-cta-text {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.btn-whatsapp {
    margin-bottom: 15px;
}

#success-close {
    width: 100%;
}

/* ===========================
   Responsive Styles
   =========================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    :root {
        --section-padding: 50px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .stats-bar {
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .logo-img {
        height: 45px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    :root {
        --section-padding: 45px;
        --container-padding: 4%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        padding-left: 5%;
    }
    
    .destinations-wrapper {
        width: calc((280px * 3) + (20px * 2)) !important;
    }

    .partners-wrapper {
        width: calc((170px * 3) + (30px * 2)) !important;
    }

    .partner-logo {
        min-width: 170px;
        width: 170px;
        height: 110px;
    }

    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Modal adjustments */
    .modal-header {
        padding: 35px 35px 0;
    }
    
    .modal-body {
        padding: 30px 35px 35px;
    }
    
    .form-row.two-col {
        gap: 16px;
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
        --container-padding: 20px;
        --header-height: 70px;
    }
    
    /* Logo Mobile */
    .logo-img {
        height: 40px;
    }
    
    /* Header Mobile - Enhanced */
    .header {
        padding: 0 var(--container-padding);
        height: 70px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
    
    .header-inner {
        padding: 0;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(13, 13, 13, 0.99);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        transition: right var(--transition-normal);
        z-index: 1000;
        padding: 30px var(--container-padding);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 16px 0;
        display: block;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }
    
    /* Hero Mobile - Enhanced */
    .hero {
        min-height: 70vh;
        margin-top: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .hero-buttons {
        max-width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .hero-buttons .btn i {
        font-size: 18px;
    }
    
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Section Mobile - Enhanced */
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-intro {
        font-size: 14px;
        margin-top: 12px;
    }
    
    /* Value Banner Mobile */
    .value-banner {
        padding: 40px 20px;
    }
    
    .banner-text {
        font-size: 16px;
    }
    
    .banner-text::before,
    .banner-text::after {
        content: '';
        display: none;
    }
    
    .banner-icon {
        font-size: 36px;
    }
    
    /* Services Mobile - Enhanced */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        aspect-ratio: 16 / 10;
        border-radius: 12px;
        min-height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 24px;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    /* About Mobile - Enhanced */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        font-size: 14px;
    }
    
    .about-subheading {
        font-size: 22px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    /* Stats Mobile - Enhanced */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 20px;
        gap: 20px;
        border-radius: 12px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-plus {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
        margin-top: 8px;
    }
    
    /* Destinations Mobile - Enhanced */
    .destinations-carousel {
        justify-content: center;
        gap: 12px;
    }

    .destinations-wrapper {
        width: calc((200px * 1.5) + (16px * 0.5)) !important;
        border-radius: 12px;
    }

    .destinations-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        gap: 16px;
    }
    
    .destination-card {
        width: 200px;
        height: 280px;
        border-radius: 12px;
        min-height: 280px;
    }
    
    .destination-content {
        padding: 18px;
    }
    
    .destination-name {
        font-size: 20px;
    }
    
    .destination-tagline {
        font-size: 13px;
    }

    .destinations-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
        flex-shrink: 0;
        min-height: 44px;
    }

/* Partners Mobile - Enhanced */
    .partners-desktop {
        display: none;
    }

    .partners-mobile {
        display: block;
    }

    .partners-marquee-wrapper {
        padding: 16px 0;
    }

    .partners-marquee {
        animation: marqueeScroll 18s linear infinite;
        gap: 16px;
    }

    .marquee-item {
        min-width: 120px !important;
        width: 120px !important;
        height: 80px !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }
    
    /* Testimonials Mobile - Enhanced */
    .testimonials-slider {
        flex-direction: column;
        gap: 0;
    }
    
    .testimonials-track {
        max-width: 100%;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 28px 20px;
        border-radius: 12px;
    }
    
    .testimonial-quote-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-stars {
        margin-bottom: 16px;
    }
    
    .testimonial-stars i {
        font-size: 16px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-location {
        font-size: 13px;
    }
    
    .testimonial-arrow {
        display: none;
    }
    
    .testimonial-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Contact Mobile - Enhanced */
    .contact {
        padding: 40px 20px;
    }
    
    .contact-info {
        gap: 16px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 12px;
    }
    
    .contact-card {
        padding: 20px;
        border-radius: 10px;
        gap: 16px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-details h4 {
        font-size: 15px;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 13px;
    }
    
    .contact-support-text {
        font-size: 13px;
    }
    
    /* Form Mobile Adjustments - Enhanced */
    .contact-form,
    .service-form {
        gap: 0;
    }
    
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group:last-child {
        margin-bottom: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 14px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 10px;
    }
    
    .form-group > label {
        font-size: 12px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .checkbox-group,
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .checkbox-label,
    .radio-label {
        padding: 12px 0;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .checkbox-custom,
    .radio-custom {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    /* Footer Mobile - Enhanced */
    .footer {
        padding: 40px 20px 120px;
        background: var(--bg-tertiary);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a,
    .footer-column ul li {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 16px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .footer .logo-img {
        height: 44px;
    }
    
    /* Bottom Bar Mobile - Enhanced */
    .bottom-bar {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        padding: 10px 0;
        padding-top: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
    
    .bottom-bar-item {
        flex: 1;
        align-items: center;
        min-height: 44px;
        justify-content: center;
        font-size: 11px;
    }
    
    .bottom-bar-item i {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    /* Modal Mobile - Enhanced */
    .modal {
        padding: 0;
        align-items: flex-end;
        padding-top: 0;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .modal-content {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .itinerary-modal {
        max-width: 100%;
    }
    
    .modal-header {
        padding: 28px 20px 0;
    }
    
    .itinerary-header {
        padding: 28px 20px 16px;
    }
    
    .modal-title,
    .itinerary-title {
        font-size: 24px;
    }
    
    .modal-icon,
    .itinerary-icon {
        font-size: 40px;
    }
    
    .modal-body {
        padding: 24px 20px 28px;
    }
    
    .itinerary-content {
        padding: 24px 20px;
        max-height: 50vh;
    }
    
    .itinerary-tabs {
        padding: 16px 20px;
        gap: 4px;
    }
    
    .itinerary-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* Success Modal Mobile - Enhanced */
    .modal-success-content {
        padding: 36px 24px;
        max-width: 100%;
    }
    
    .success-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .success-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .success-animation {
        margin-bottom: 24px;
    }
    
    .checkmark {
        width: 72px;
        height: 72px;
    }
    
    .success-divider {
        margin: 0 auto 20px;
    }
}

/* Mobile Small - Enhanced */
@media (max-width: 480px) {
    :root {
        --section-padding: 32px;
        --container-padding: 16px;
    }
    
    .header {
        height: 64px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .hero {
        min-height: 65vh;
        margin-top: 64px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-buttons .btn {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .stats-bar {
        padding: 24px 16px;
        gap: 16px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .destination-card {
        width: 180px;
        height: 260px;
    }

    .marquee-item {
        min-width: 100px !important;
        width: 100px !important;
        height: 70px !important;
        padding: 8px !important;
        border-radius: 6px !important;
    }

    .partners-marquee {
        gap: 12px;
        animation: marqueeScroll 16s linear infinite;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .service-form .btn[type="submit"],
    .contact-form .btn[type="submit"] {
        padding: 16px 24px;
        font-size: 14px;
        min-height: 50px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 46px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .modal-content {
        border-radius: 18px 18px 0 0;
    }
    
    .modal-header {
        padding: 24px 16px 0;
    }
    
    .modal-body {
        padding: 20px 16px 24px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
    }
    
    .footer {
        padding: 32px 16px 110px;
    }
    
    .footer-grid {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .bottom-bar {
        padding: 8px 0;
    }
    
    .bottom-bar-item {
        font-size: 10px;
        gap: 4px;
    }
    
    .bottom-bar-item i {
        font-size: 20px;
    }
}

/* Touch Device Optimizations - Enhanced */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch devices */
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .destination-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn:hover {
        transform: none;
        filter: brightness(1);
    }
    
    .partner-logo:hover {
        transform: none;
    }
    
    .testimonial-arrow:hover {
        transform: scale(1);
    }
    
    /* Increase tap targets to 44px minimum */
    .nav-link,
    .footer-column ul li a,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 0;
    }
    
    .checkbox-label,
    .radio-label {
        padding: 14px 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Better touch feedback with active state */
    .btn:active {
        opacity: 0.85;
    }
    
    .service-card:active {
        opacity: 0.9;
    }
    
    .destination-card:active {
        opacity: 0.9;
    }
    
    .modal-close:active {
        opacity: 0.8;
    }
    
    /* Reduce motion on touch */
    * {
        -webkit-user-select: none;
        user-select: none;
    }
    
    input,
    textarea,
    select {
        -webkit-user-select: text;
        user-select: text;
    }
}

/* Print Styles */
@media print {
    .header,
    .bottom-bar,
    .modal,
    .hero-dots,
    .testimonial-arrow,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-slide {
        display: none;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        position: relative;
        padding: 0;
    }
    
    .hero-title,
    .section-title,
    h1, h2, h3, h4 {
        color: black;
    }
    
    .section-subtitle,
    .gold-primary {
        color: #8B7355;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --card-border: rgba(212, 175, 55, 0.5);
        --input-border: rgba(255, 255, 255, 0.3);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 2px;
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Remove outline for inputs that have their own focus state */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: #000;
}

::-moz-selection {
    background: var(--gold-primary);
    color: #000;
}
