/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a96e;
    --secondary-color: #8b7355;
    --accent-color: #a67c5a;
    --text-dark: #2d2926;
    --text-medium: #5a5550;
    --text-light: #f8f6f3;
    --background-light: #fdfcfa;
    --background-soft: #f7f5f2;
    --background-dark: #2d2926;
    --luxury-gold: #d4af37;
    --warm-beige: #f0ebe5;
    --soft-brown: #8b7d6b;
    --shadow-light: 0 8px 32px rgba(45, 41, 38, 0.08);
    --shadow-medium: 0 12px 48px rgba(45, 41, 38, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: transform 0.3s ease, var(--transition);
    box-shadow: none;
    border-bottom: none;
}

.header.scrolled {
    background: rgba(248, 246, 243, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    box-shadow: 0 1px 30px rgba(139, 115, 85, 0.12) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15) !important;
    transition: all 0.3s ease !important;
}

.header.header-hidden {
    transform: translateY(-110%) !important;
}

.header.scrolled .logo-esperienza {
    color: var(--text-dark);
}

.header.scrolled .logo-marocco {
    color: var(--primary-color);
}

.header.scrolled .nav-menu a {
    color: #5a5550;
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.35rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1.1;
    position: relative;
    cursor: pointer;
}

.logo-esperienza {
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
    transition: var(--transition);
    font-style: normal;
}

.logo-marocco {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-left: 4px;
    display: block;
    line-height: 1;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-style: italic;
}

.logo:hover .logo-esperienza {
    letter-spacing: 0.25em;
    opacity: 1;
    transform: translateX(1px);
}

.header.scrolled .logo:hover .logo-esperienza {
    color: var(--text-dark);
}

.logo:hover .logo-marocco {
    letter-spacing: 0.08em;
    color: var(--luxury-gold);
    transform: translateX(1px);
    text-shadow: 0 2px 4px rgba(201, 169, 110, 0.3);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

.header.scrolled .nav-menu a:hover {
    color: #c9a96e;
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: var(--transition);
}

.header.scrolled .nav-menu a::after {
    background: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #c9a96e 0%, #8b7355 100%);
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.hero-video video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    z-index: -2;
    pointer-events: none !important;
    /* High quality video rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    /* Absolutely no controls */
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* High-DPI display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-video video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 4K and ultra-high resolution displays */
@media (min-width: 2560px) {
    .hero-video video {
        object-fit: cover;
        object-position: center center;
        transform: scale(1.0);
    }
}

/* Hide all video controls completely */
.hero-video video::-webkit-media-controls {
    display: none !important;
}

.hero-video video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video video::-moz-media-controls {
    display: none !important;
}

.hero-video video::-ms-media-controls {
    display: none !important;
}

/* Additional video control hiding for all browsers */
.hero-video video::-webkit-media-controls-timeline {
    display: none !important;
}

.hero-video video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.hero-video video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.hero-video video::-webkit-media-controls-mute-button {
    display: none !important;
}

.hero-video video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.hero-video video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.hero-video video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/* Force hide controls with additional CSS */
.hero-video video {
    outline: none !important;
}

.hero-video video:focus {
    outline: none !important;
}

/* Hide controls on hover */
.hero-video:hover video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Universal video control hiding - covers all possible control elements */
.hero-video video::-webkit-media-controls,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls-play-button,
.hero-video video::-webkit-media-controls-start-playback-button,
.hero-video video::-webkit-media-controls-timeline,
.hero-video video::-webkit-media-controls-current-time-display,
.hero-video video::-webkit-media-controls-time-remaining-display,
.hero-video video::-webkit-media-controls-mute-button,
.hero-video video::-webkit-media-controls-volume-slider,
.hero-video video::-webkit-media-controls-fullscreen-button,
.hero-video video::-webkit-media-controls-overlay-play-button,
.hero-video video::-moz-media-controls,
.hero-video video::-ms-media-controls {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.4), rgba(139, 115, 85, 0.3));
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(45, 41, 38, 0.3);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(45, 41, 38, 0.2);
    animation: fadeInUp 1s ease 0.3s both;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-light);
}

.btn-primary:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(248, 246, 243, 0.6);
}

.btn-secondary:hover {
    background: var(--background-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Experiences Section */
.experiences {
    padding: 120px 0;
    background: var(--background-light);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.title-line {
    display: none;
}

.experiences-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.experience-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.experience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.experience-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.experience-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-visual img {
    transform: scale(1.03);
}

.experience-details {
    padding: 1.5rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.experience-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2d2926;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.experience-details .title-line {
    width: 60px;
    height: 1px;
    background: #c9a96e;
    margin-bottom: 1rem;
}

.experience-details .tour-category {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.experience-details p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a5550;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experience-details .tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.experience-details .highlight {
    background: #f8f6f3;
    color: #8b7355;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
}

.experience-details .tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8e4dc;
    margin-top: auto;
}

.experience-details .tour-price-section {
    display: flex;
    flex-direction: column;
}

.experience-details .price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #8b7355;
    font-weight: 500;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.experience-details .tour-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.experience-details .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #c9a96e;
}

.experience-details .tour-btn {
    background: #c9a96e;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
}

.experience-details .tour-btn:hover {
    background: #8b7355;
    transform: translateY(-1px);
}

.experience-meta {
    display: flex;
    gap: 1rem;
}

.experience-meta span {
    padding: 0.4rem 1rem;
    background: var(--background-soft);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

.experience-meta .duration {
    background: rgba(201, 169, 110, 0.1);
    color: var(--primary-color);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 300;
}

.features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.btn-explore {
    background: var(--primary-color);
    color: var(--background-light);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    width: 100%;
}

.btn-explore:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Destinations Section */
.destinations {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e4dc 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative circles for destinations section */
.destinations::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.destinations::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite reverse;
}

.destinations-luxury {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.destination-spotlight {
    flex: 2;
    position: relative;
}

.destination-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.destination-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 40px 40px;
}

.destination-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.destination-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.destination-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.destination-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.destination-features .feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Image Navigation Arrows */
.main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(201, 169, 110, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.main-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.4);
}

.main-nav.prev {
    left: 20px;
}

.main-nav.next {
    right: 20px;
}

.main-nav svg {
    width: 28px;
    height: 28px;
}

.destinations-selector {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-start; /* Align to top */
    justify-content: center; /* Center content between buttons */
    height: 500px; /* match .destination-main height */
    padding: 40px 10px; /* Equal padding on both sides */
    margin-top: 0; /* Reset any default margin */
    margin-left: -20px; /* Move closer to main image */
}

/* Decorative circles around city cards */
.destinations-selector::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

.destinations-selector::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -60px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite reverse;
}

.destinations-selector .destination-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 16px 4px 8px; /* Reduced vertical padding to make cards closer */
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 0; /* spacing handled by container */
    height: 80px; /* Increased height a bit more */
    max-height: 80px;
    min-width: 220px; /* Set minimum width to make cards longer */
    width: 240px; /* Fixed width for consistent length */
}

.destination-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.destination-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.12);
}

.destinations-selector .destination-thumb img {
    width: 85px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.destinations-selector .thumb-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--text-dark);
    line-height: 1.3;
    white-space: nowrap; /* Keep text on one line */
}

.destinations-selector .thumb-info span {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.2;
    white-space: nowrap; /* Keep text on one line */
}

/* Destinations Navigation Buttons - Matching Offers Section Style */
.swipe-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid var(--primary-color) !important;
    background: white !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    z-index: 100 !important;
}

.swipe-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-50%) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3) !important;
}

.swipe-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: translateY(-50%) !important;
    box-shadow: none !important;
}

.swipe-left {
    left: -5px !important;
}

.swipe-right {
    right: -5px !important;
}

/* New: container for the 4 city thumbnails */
.destinations-list {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the cards vertically */
    height: 100%;
    padding: 10px 0;
    gap: 8px;
    flex: 0 0 auto;
    margin: 0; /* No margins - centered by parent */
}

/* Move specific cards closer to the middle - NO NEGATIVE MARGINS */
.destination-thumb[data-destination="casablanca"] {
    margin-bottom: 2px !important; /* Casablanca - small positive margin */
    transform: translateY(0px) !important;
}

.destination-thumb[data-destination="fes"] {
    margin-bottom: 1px !important; /* Fès - small positive margin */
    transform: translateY(0px) !important;
}

.destination-thumb[data-destination="chefchaouen"] {
    margin-top: 1px !important; /* Chefchaouen - small positive margin */
    transform: translateY(0px) !important;
}

.destination-thumb[data-destination="sahara"] {
    margin-top: 2px !important; /* Sahara - small positive margin */
    transform: translateY(0px) !important;
}

/* Force immediate visual change - cache buster */
.destinations-list {
    background: transparent !important;
}

.city-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.95);
border: 2px solid rgba(201, 169, 110, 0.3);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
color: var(--primary-color);
z-index: 2;
}

.city-nav:hover {
background: var(--primary-color);
color: white;
transform: scale(1.05);
border-color: var(--primary-color);
box-shadow: 0 12px 35px rgba(201, 169, 110, 0.25);
}

.city-nav.prev {
left: 0;
}

.city-nav.next {
right: 0;
    justify-content: flex-start; /* Align cards to top */
    height: 100%; /* Take full height of parent */
    padding: 20px 0; /* Add some vertical padding */
    gap: 25px; /* Increased gap between cards */
    flex: 0 0 auto;
    margin: 0 56px; /* room for side arrows */
}

.city-nav svg {
    width: 18px;
    height: 18px;
}

/* Discover Tours Button */
.experiences-actions {
    text-align: center;
    margin-top: 30px;
}

.experiences-actions .btn-discover-tours {
    background: #c9a96e !important;
    color: #fdfcfa !important;
    border: 2px solid #c9a96e !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    position: relative !important;
    outline: none !important;
}

.experiences-actions .btn-discover-tours:hover {
    background: transparent !important;
    color: #c9a96e !important;
    border-color: #c9a96e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3) !important;
}

.experiences-actions .btn-discover-tours:active {
    transform: translateY(-1px) !important;
}

.experiences-actions .btn-discover-tours i {
    font-size: 0.8rem !important;
    opacity: 1 !important;
}

/* Experience Navigation - Removed */

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

/* Service Cards - Flip Effect Design */
.services-grid-modern .service-card {
    background: transparent;
    width: 100%;
    height: auto;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 380px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-front {
    background: transparent;
    display: flex;
    align-items: stretch;
}

.service-card-back {
    background: var(--warm-beige);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.service-image-container {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 12px;
}

.service-title-area {
    position: relative;
    background: white;
    color: var(--text-dark);
    padding: 15px 0;
    text-align: center;
    margin-top: 15px;
}

.service-title-area h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
}

/* Services Titles Grid - Below Cards */
.services-titles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding: 0 0 20px 0;
}

.service-title-item {
    text-align: center;
}

.service-title-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
    padding: 15px 0;
}

/* Responsive for titles grid */
@media (max-width: 1200px) {
    .services-titles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-titles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .service-title-item h3 {
        font-size: 1.2rem;
    }
}

.service-description {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--background-light);
}

.service-description h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-description p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-medium);
    padding: 3px 0;
    position: relative;
    padding-left: 15px;
    text-align: left;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
}

.services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section - Luxury Minimalistic Design */
.testimonials {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Horizontal line at top of testimonials */
.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #c9a96e;
    z-index: 10;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 40px rgba(45, 41, 38, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 41, 38, 0.15);
    border-color: var(--primary-color);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    grid-row: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    color: white;
    padding: 50px 45px;
    margin-bottom: 20px;
}

.testimonial-card.featured .testimonial-text p {
    color: white;
    font-size: 1.3rem;
    line-height: 1.7;
}

.testimonial-card.featured .author-details h4 {
    color: white;
}

.testimonial-card.featured .author-details span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card.featured .quote-icon {
    color: rgba(255, 255, 255, 0.3);
}

.quote-icon {
    color: var(--primary-color);
    margin-bottom: 25px;
    opacity: 0.6;
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.author-details span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.rating .stars {
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #bbb;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Contact Section - Clean Design */
.contact {
    height: 90vh;
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr !important;
    gap: 80px;
    align-items: center;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(45, 41, 38, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.1);
    width: 100%;
}

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

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

.number-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.number-field {
    position: relative;
}

.number-field label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: white;
    padding: 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.number-field input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    background: rgba(248, 246, 243, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.number-field input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    background: rgba(248, 246, 243, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

/* Title selector specific styling */
.form-group.title-selector {
    flex: 0 0 auto;
    min-width: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9a96e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
    transform: translateY(-1px);
}

/* Custom Date Input Styling */
.custom-date-input {
    position: relative;
    cursor: pointer;
}

.custom-date-input input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.8), rgba(255, 255, 255, 0.9));
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.custom-date-input input::placeholder {
    color: var(--text-medium);
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

.custom-date-input input:focus {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 243, 0.9));
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2), 0 0 0 4px rgba(201, 169, 110, 0.1);
    transform: translateY(-1px);
}

.custom-date-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Calendar */
.custom-calendar {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
z-index: 1000;
display: none;
overflow: hidden;
border: 1px solid #e5e7eb;
}

.custom-calendar.show {
display: block;
animation: calendarSlideDown 0.3s ease;
    animation: calendarSlideDown 0.3s ease;
}

@keyframes calendarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-header {
    background: white;
    color: #1f2937;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.calendar-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

.calendar-selectors {
    display: flex;
    gap: 5px;
    align-items: center;
}

.month-selector,
.year-selector {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    border-radius: 4px;
    padding: 6px 24px 6px 10px;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231f2937' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 6px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px !important;
    height: 34px;
    line-height: 1.4;
    text-align: left;
    vertical-align: middle;
}

.custom-calendar .calendar-header .calendar-selectors .month-selector,
.custom-calendar .calendar-header .calendar-selectors .year-selector,
.calendar-header .calendar-selectors .month-selector,
.calendar-header .calendar-selectors .year-selector,
.month-selector,
.year-selector {
    width: 65px;
}

.month-selector option,
.year-selector option {
    color: #1f2937 !important;
    background: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    padding: 4px 8px;
}

.month-selector:hover,
.year-selector:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.month-selector:focus,
.year-selector:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

/* Force dropdown text visibility with highest specificity */
.custom-calendar .calendar-header .calendar-selectors select.month-selector,
.custom-calendar .calendar-header .calendar-selectors select.year-selector {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 2px solid #333333 !important;
    padding: 6px 20px 6px 8px !important;
    height: 32px !important;
    line-height: 1.2 !important;
    text-indent: 0 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.custom-calendar .calendar-header .calendar-selectors select.month-selector {
    width: 100px !important;
}

.custom-calendar .calendar-header .calendar-selectors select.year-selector {
    width: 70px !important;
}

/* Make dropdown options big for easy selection */
.custom-calendar .calendar-header .calendar-selectors select.month-selector option,
.custom-calendar .calendar-header .calendar-selectors select.year-selector option {
    font-size: 18px !important;
    font-weight: 400 !important;
    padding: 15px 20px !important;
    color: #000000 !important;
    background: #ffffff !important;
    line-height: 1.5 !important;
    min-height: 40px !important;
}

.calendar-nav {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #f3f4f6;
    color: #374151;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background: white;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.calendar-day-header {
    background: #f9fafb;
    padding: 12px 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-bottom: 1px solid #f3f4f6;
}

.calendar-day {
    background: white;
    padding: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #374151;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    min-height: 44px;
    height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.calendar-day:hover {
    background: #f3f4f6;
    color: #1f2937;
    font-weight: 500;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: 6px;
}

.calendar-day.other-month {
    color: #d1d5db;
    opacity: 1;
}

.calendar-day.today {
    background: #f3f4f6;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 6px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: white;
    padding: 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    z-index: 10;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' 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 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    min-width: 200px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

/* Contact Section Title Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    gap: 40px;
}

.contact-section-title {
    text-align: left;
}

.contact-section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Contact Details in Sidebar */
.contact-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-content .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 2px;
}

.contact-detail-content .value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 250px;
    }

    .experiences h2,
    .services h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card.featured {
        grid-column: 1;
        margin-bottom: 10px;
        padding: 40px 30px;
    }

    .testimonials-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .experiences-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destinations-luxury {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-main {
        height: 400px;
    }
    
    .destinations-selector {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
    }
    
    .destination-thumb {
        min-width: 200px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 20px 0;
        height: auto;
        min-height: 100vh;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 0 20px;
    }

    .quick-contact {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 15px;
    }

    .contact-item {
        justify-content: center;
        font-size: 0.85rem;
    }

    .modern-form-container {
        padding: 25px 20px;
    }

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

    .input-group {
        margin-bottom: 15px;
    }

    .textarea-group textarea {
        min-height: 60px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .experiences,
    .services,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Hide all scrollbars */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Experiences View More Button */
.experiences-actions {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.btn-view-more {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    background: var(--primary-color);
    color: var(--background-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

.btn-view-more i {
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Offers Section - Interactive Layout */
.offers {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Decorative circles for offers section */
.offers::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.offers::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite reverse;
}

/* Pulse animation for decorative circles */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Main Section Header */
.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
}

/* Dynamic Offer Subtitle */
.offer-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
    height: 40px;
    display: flex;
    align-items: center;
}

.offers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.offers-content {
    padding-right: 40px;
    position: relative;
    min-height: 400px;
}

/* Decorative circles around offers content - matching destinations */
.offers-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

.offers-content::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -60px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite reverse;
}

.content-divider {
    height: 1px;
    background: #ddd;
    width: 100%;
    margin: 40px 0;
}

.content-divider.top-line {
    margin-top: 0;
}

.content-divider.bottom-line {
    margin-bottom: 40px;
}

.offers-text {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.offers-text p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 0;
}

.offers-text p:last-child {
    margin-bottom: 0;
}

.offers-text p:first-child {
    margin-top: 0;
}

/* Navigation */
.offers-navigation {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Right Intersecting Images */
.offers-images {
    position: relative;
    height: 400px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.offer-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.offer-images.active {
    opacity: 1;
}

.offer-images .image-container {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ensure crisp image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Intersecting Layout - Like Reference */
.offer-images .top-image {
    width: 60%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 2;
}

.offer-images .bottom-image {
    width: 60%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Color Schemes for Different Offers */
.family-offer .top-image {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.family-offer .bottom-image {
    background: linear-gradient(135deg, #81C784, #A5D6A7);
}

.couple-offer .top-image {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.couple-offer .bottom-image {
    background: linear-gradient(135deg, #F48FB1, #F8BBD9);
}

.friends-offer .top-image {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.friends-offer .bottom-image {
    background: linear-gradient(135deg, #FFCC02, #FFE082);
}

.solo-offer .top-image {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.solo-offer .bottom-image {
    background: linear-gradient(135deg, #90CAF9, #BBDEFB);
}

.image-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    /* Removed backdrop-filter blur to fix blurriness */
}

.image-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Hover Effects */
.image-container:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offers-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .offers-content {
        padding-right: 0;
        text-align: center;
    }
    
    .offers-navigation {
        justify-content: center;
    }
    
    .offers-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .offers {
        padding: 80px 0;
    }
    
    .offers-header h2 {
        font-size: 2rem;
    }
    
    .offers-layout {
        gap: 40px;
    }
    
    .offers-images {
        height: 300px;
    }
    
    .image-placeholder {
        padding: 20px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .image-placeholder span {
        font-size: 1.2rem;
    }
}

.btn-view-more:active {
    transform: translateY(-1px);
}

/* Newsletter styles removed - handled by newsletter-section.css */

/* Responsive adjustments */
@media (max-width: 768px) {
    .experiences-actions {
        margin-top: 40px;
    }
    
    .btn-view-more {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
}
