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

:root {
    --primary-color: #8B6F47;
    --primary-dark: #6B5537;
    --primary-light: #A6895F;
    --secondary-color: #f5f5f5;
    --accent-color: #8B6F47;
    --text-dark: #3E2E1F;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #fafafa;
    --border-color: #e5e5e5;
    --brown-light: #D4C4B0;
    --brown-medium: #8B6F47;
    --brown-dark: #6B5537;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Instrument Serif', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

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

.logo {
    text-decoration: none;
    display: block;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
}

.logo-image {
    height: 100px;
    width: auto;
    max-height: 100px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
        padding: 0;
    }
    
    .logo-image {
        height: 80px;
        max-height: 80px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-language-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-language-btn svg,
.nav-language-btn .flag-icon {
    width: 18px;
    height: 13px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.nav-language-btn span {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.navbar.scrolled .nav-language-btn {
    background: rgba(62, 46, 31, 0.1);
    border-color: rgba(62, 46, 31, 0.2);
    color: var(--text-dark);
    text-shadow: none;
}

.navbar.scrolled .nav-language-btn:hover {
    background: rgba(62, 46, 31, 0.15);
    border-color: rgba(62, 46, 31, 0.3);
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover {
    color: var(--text-white);
    opacity: 1;
}

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

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

.btn-primary {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 255, 255, 1);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Navbar over white background */
.navbar.scrolled .btn-primary {
    background: var(--brown-medium);
    color: var(--text-white);
    border: 1px solid var(--brown-medium);
}

.navbar.scrolled .btn-primary:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5537 50%, #A6895F 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 100vh;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

/* Fallback gradient if image doesn't load - using brown tones */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5537 50%, #A6895F 100%);
    z-index: 0;
}

.hero:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
    display: none;
}

.hero-content {
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}


.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 1;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Language Toggle */
.hero-language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

@media (max-width: 768px) {
    .hero-language-toggle {
        top: 15px;
        right: 15px;
    }
    
    .language-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .language-btn svg {
        width: 16px;
        height: 12px;
    }
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.language-btn svg {
    width: 20px;
    height: 15px;
    flex-shrink: 0;
}

.language-btn span {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(139, 111, 71, 1);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover {
    background: rgba(107, 85, 55, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.4);
}

.btn-hero:hover svg {
    transform: translate(4px, -4px);
}

.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    z-index: 10;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}

.hero-location svg {
    opacity: 1;
}

.hero-departure {
    font-size: 14px;
    opacity: 1;
    font-weight: 400;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Labels */
.section-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
}

[data-animate="fade-up"] {
    animation: fadeInUp 0.8s ease forwards;
}

[data-animate="fade-up"][data-delay="0.1"] {
    animation-delay: 0.1s;
}

[data-animate="fade-up"][data-delay="0.2"] {
    animation-delay: 0.2s;
}

[data-animate="fade-up"][data-delay="0.3"] {
    animation-delay: 0.3s;
}

[data-animate="fade-up"][data-delay="0.4"] {
    animation-delay: 0.4s;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Positioning Section */
.positioning-section {
    background: var(--text-white);
    padding: 100px 0;
}

.positioning-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.positioning-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    text-align: center;
}

@media (max-width: 768px) {
    .positioning-section {
        padding: 60px 0;
    }
    
    .positioning-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .positioning-text {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* About Section */
/* Testimonials Section - Luxury Redesign */
.testimonials-section {
    padding: 100px 0;
    background: #f4efe9;
    width: 100%;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-preheader {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(62, 47, 37, 0.6);
    margin: 0 0 24px 0;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    min-height: 400px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-stars {
    font-size: 20px;
    color: #D4AF37;
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    width: 100%;
    max-width: 100%;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.8;
    color: rgba(62, 46, 31, 0.9);
    margin: 0 auto 40px;
    max-width: 100%;
    font-weight: 400;
    font-style: normal;
    padding: 0;
}

.testimonial-author {
    margin-top: 0;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(62, 46, 31, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.testimonial-btn {
    background: transparent;
    border: 1px solid rgba(62, 46, 31, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(62, 46, 31, 0.6);
    padding: 0;
}

.testimonial-btn:hover {
    border-color: rgba(62, 46, 31, 0.4);
    color: rgba(62, 46, 31, 0.8);
    background: rgba(62, 46, 31, 0.03);
}

.testimonial-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(62, 46, 31, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: rgba(62, 46, 31, 0.6);
    width: 10px;
    height: 10px;
}

.testimonial-dot:hover {
    background: rgba(62, 46, 31, 0.4);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-container {
        padding: 0 24px;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonials-carousel-wrapper {
        min-height: 350px;
    }
    
    .testimonial-stars {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .testimonial-text {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 32px;
    }
    
    .testimonial-name {
        font-size: 13px;
    }
    
    .testimonials-controls {
        margin-top: 50px;
        gap: 24px;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-carousel-wrapper {
        min-height: 300px;
    }
    
    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    
    .testimonials-controls {
        margin-top: 40px;
        gap: 20px;
    }
}

.about-section {
    padding: 120px 0;
    background: var(--text-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 60px 0;
    text-align: center;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrapper {
    text-align: center;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 300px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    background: #f5f5f5;
}

.about-image-wrapper:has(img[src=""]) .about-image,
.about-image:not([src]),
.about-image[src=""] {
    display: none;
}

.about-image:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-text {
    text-align: left;
}

.about-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(62, 46, 31, 0.85);
    margin: 0 0 28px 0;
}

.about-link {
    color: var(--brown-medium);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: var(--brown-dark);
}

.about-highlight {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

.about-image-wrapper .about-highlight {
    margin-top: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Instrument Serif', serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Experiences Section - styled like Simple Steps */
.experiences-section {
    background: var(--text-white);
    padding: 100px 0;
}

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

.experience-item {
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.experience-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

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

.experience-content {
    padding: 32px;
}

.experience-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Instrument Serif', serif;
    line-height: 1.3;
}

.experience-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.experience-description.truncated {
    max-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.experience-description.expanded {
    max-height: 1000px;
    display: block;
}

.experience-item {
    cursor: pointer;
}

.experience-item:hover .experience-description.truncated {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .experiences-section {
        padding: 60px 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-image {
        height: 200px;
    }
    
    .experience-content {
        padding: 24px;
    }
    
    .experience-title {
        font-size: 22px;
    }
    
    .experience-description {
        font-size: 15px;
    }
}

/* Steps Section */
.steps-section {
    background: var(--text-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-medium);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Itinerary Section - styled like Simple Steps */
.itinerary-section {
    background: var(--text-white);
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.itinerary-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    overflow: visible;
}

.itinerary-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.itinerary-days {
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-medium);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
}

.itinerary-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    padding: 0;
}

.itinerary-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
    padding: 0;
}

/* Accommodations Section - Sticky Panels Style */
.accommodations-section {
    background: #f4efe9;
    padding: 140px 0 40px;
    position: relative;
}

.accommodations-section .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.accommodations-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.accommodations-preheader {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(62, 47, 37, 0.6);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.accommodations-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #3e2f25;
    margin: 0 0 60px 0;
    text-align: center;
}

.accommodations-divider-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 50px auto;
    width: 40%;
    max-width: 280px;
}

.accommodations-divider-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 50px auto 100px auto;
    width: 40%;
    max-width: 280px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(62, 47, 37, 0.3);
}

.divider-flourish {
    font-size: 12px;
    color: rgba(62, 47, 37, 0.4);
    line-height: 1;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.accommodations-body-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.accommodations-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    color: #3e2f25;
    margin: 0 0 32px 0;
    text-align: center;
}

.accommodations-paragraph:not(:last-child) {
    margin-bottom: 28px;
}

.accommodations-paragraph-first {
    font-style: normal;
}

.accommodations-paragraph:last-of-type {
    margin-bottom: 0;
}

.accommodations-sticky-container {
    position: relative;
    width: 100%;
    padding: 80px 240px 0;
    /* Height will be set by JavaScript: number of panels × viewport height */
    margin-bottom: 0;
}

.accommodation-panel {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    margin: 0 auto;
    max-width: 1400px;
    border-radius: 24px;
}

.accommodation-panel.revealed {
    opacity: 1;
    transform: translateY(0);
}

.accommodation-panel.fading {
    opacity: 1;
}

.accommodation-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1a1a1a;
    overflow: hidden;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    visibility: visible !important;
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 0;
}

.accommodation-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    background: #1a1a1a;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    visibility: visible !important;
}

/* Force solid background for PNG images */
.accommodation-image img[src$=".png"],
.accommodation-image img[src$=".PNG"] {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Force all accommodation images to be fully opaque - NO TRANSPARENCY */
.accommodations-section .accommodation-image,
.accommodations-section .accommodation-image img,
.accommodations-section .accommodation-panel,
.accommodations-section .accommodation-panel * {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    visibility: visible !important;
}

.accommodation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    z-index: 2;
    pointer-events: none;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.accommodation-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 60px;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
    font-family: 'Instrument Serif', serif;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.accommodation-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .accommodations-sticky-container {
        padding: 0 120px;
    }
    
    .accommodation-panel {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .accommodations-section {
        padding: 100px 0 20px;
    }
    
    .accommodations-header {
        margin-bottom: 0;
        padding: 0 24px;
    }
    
    .accommodations-preheader {
        font-size: 10px;
        margin-bottom: 24px;
        letter-spacing: 0.12em;
    }
    
    .accommodations-main-title {
        font-size: clamp(36px, 8vw, 48px);
        margin-bottom: 32px;
    }
    
    .accommodations-divider-top,
    .accommodations-divider-bottom {
        width: 50%;
        margin-bottom: 32px;
    }
    
    .accommodations-divider-bottom {
        margin-top: 40px;
    }
    
    .accommodations-body-text {
        max-width: 100%;
    }
    
    .accommodations-paragraph {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 24px;
    }
    
    .accommodations-sticky-container {
        padding: 0 64px;
    }
    
    .accommodation-panel {
        border-radius: 16px;
    }
    
    .accommodation-content {
        padding: 60px 32px;
    }
    
    .accommodation-title {
        font-size: 32px;
    }
    
    .accommodation-description {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .accommodations-section {
        flex-direction: column;
    }
    
    .accommodations-sticky-wrapper {
        width: 100%;
        height: 50vh;
        position: relative;
    }
    
    .accommodations-content-wrapper {
        width: 100%;
        padding: 60px 40px;
    }
    
    .accommodations-list {
        gap: 60px;
    }
    
    .accommodation-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .accommodations-section {
        padding: 80px 0 10px;
    }
    
    .accommodations-sticky-container {
        padding: 20px 20px 0;
        margin-bottom: 0;
    }
    
    .accommodations-sticky-wrapper {
        height: 40vh;
        margin-bottom: 0;
    }
    
    .accommodation-panel {
        max-width: 90%;
        height: 50vh;
    }
    
    .accommodation-image {
        width: 100%;
        height: 100%;
    }
    
    .accommodation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .accommodations-content-wrapper {
        padding: 40px 20px;
    }
    
    .accommodations-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .accommodations-list {
        gap: 40px;
    }
    
    .accommodation-item {
        padding: 30px 0;
    }
    
    .accommodation-title {
        font-size: 24px;
    }
    
    .accommodation-description {
        font-size: 16px;
    }
}

/* Included Section - Accordion Style */
.included-section {
    background: #F5F1EB;
    padding: 120px 0;
}

.included-header {
    text-align: center;
    margin-bottom: 80px;
}

.included-title-large {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.included-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    opacity: 1;
}

.accordion-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.accordion-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(139, 111, 71, 0.1);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.accordion-item.active .accordion-image {
    width: 320px;
    height: 320px;
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.accordion-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.accordion-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8B6F47;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 30px;
}

.accordion-text {
    flex: 1;
}

.accordion-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.accordion-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
    line-height: 1.6;
}

.accordion-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B6F47;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.accordion-toggle:hover {
    opacity: 1;
}

.accordion-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    opacity: 1;
}

.accordion-item.active .accordion-details {
    max-height: 500px;
    opacity: 1;
}

.accordion-details-content {
    padding: 0 0 32px 124px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.8);
}

@media (max-width: 768px) {
    .included-section {
        padding: 80px 0;
    }
    
    .included-header {
        margin-bottom: 60px;
    }
    
    .accordion-header {
        padding: 24px 0;
    }
    
    .accordion-left {
        gap: 16px;
    }
    
    .accordion-image {
        width: 60px;
        height: 60px;
    }
    
    .accordion-item.active .accordion-image {
        width: 240px;
        height: 240px;
    }
    
    .accordion-content {
        gap: 12px;
    }
    
    .accordion-number {
        min-width: 24px;
        font-size: 12px;
    }
    
    .accordion-title {
        font-size: 18px;
    }
    
    .accordion-description {
        font-size: 15px;
    }
    
    .accordion-details-content {
        padding-left: 92px;
        font-size: 15px;
    }
}

.included-item {
    background: var(--text-white);
    padding: 48px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.included-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.included-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-medium);
    margin-bottom: 15px;
}

.included-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.included-stats {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.included-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Trip Itinerary Style Section */
.itinerary-style-section {
    background: #F5F1EB;
    padding: 120px 0;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 100px;
}

.itinerary-header-after-images {
    text-align: center;
    margin: 20px auto 0 auto;
    max-width: 900px;
    padding: 0 40px;
}

.redesigned-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    background: #F5F1EB;
    padding-top: 40px;
    padding-bottom: 120px;
}

.redesigned-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 64px);
    font-weight: 600;
    color: #3E2F25;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.redesigned-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    color: rgba(62, 47, 37, 0.7);
    text-align: center;
    line-height: 1.5;
    margin: 0 0 80px 0;
}

.redesigned-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.redesigned-left-column {
    max-width: 100%;
}

.redesigned-left-column p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(62, 47, 37, 0.75);
    margin: 0;
    max-width: 600px;
}

.redesigned-right-column {
    max-width: 100%;
    text-align: left;
}

.redesigned-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.redesigned-bullet-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 500;
    line-height: 1.7;
    color: rgba(62, 47, 37, 0.8);
    margin: 0 0 24px 0;
    padding-left: 24px;
    position: relative;
    text-align: left;
}

.redesigned-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(62, 47, 37, 0.6);
    font-size: 18px;
    line-height: 1.7;
}

.redesigned-bullet-list li:last-child {
    margin-bottom: 0;
}

.redesigned-divider {
    width: 60%;
    height: 1px;
    background: rgba(62, 47, 37, 0.15);
    margin: 60px auto;
}

.redesigned-bottom-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(62, 47, 37, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Experience Section */
.premium-experience-section {
    padding: 120px 0;
    background: #faf9f7;
}

.premium-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.premium-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.premium-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.6;
    color: rgba(62, 46, 31, 0.75);
    font-weight: 400;
}

/* Target Cards */
.target-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.target-card {
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62, 46, 31, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(62, 46, 31, 0.12);
}

.target-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.target-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.target-card:hover .target-card-image img {
    transform: scale(1.05);
}

.target-card-content {
    padding: 32px 28px;
}

.target-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.target-card-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.75);
}

/* Concept Description */
.concept-description {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
    text-align: center;
}

.concept-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
    color: rgba(62, 46, 31, 0.85);
    font-style: italic;
}

/* Experience Section Premium */
.experience-section-premium {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.experience-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
}

.experience-essence {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(62, 46, 31, 0.8);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-list-premium {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.experience-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.85);
}

.experience-icon {
    color: #D4AF37;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.experience-additional-premium {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.7vw, 16px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.65);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Investment Section Premium */
.investment-section-premium {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
    text-align: center;
}

.investment-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.investment-intro {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(62, 46, 31, 0.75);
    margin-bottom: 40px;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.investment-card {
    background: var(--text-white);
    border-radius: 12px;
    padding: 40px 28px;
    box-shadow: 0 4px 20px rgba(62, 46, 31, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(62, 46, 31, 0.12);
}

.investment-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.investment-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    color: rgba(62, 46, 31, 0.6);
    font-weight: 400;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}

.investment-card-title span {
    display: block;
}

.investment-card-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: -0.02em;
}

.investment-note-premium {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.7vw, 16px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.65);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Payment Conditions Premium */
.payment-conditions-premium {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 40px;
    text-align: center;
}

.payment-conditions-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.7vw, 16px);
    font-weight: 600;
    color: rgba(62, 46, 31, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-conditions-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.65);
}

/* CTA Premium */
.cta-premium-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cta-premium-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.4;
}

.cta-premium-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-proposal {
    background: var(--text-dark);
    color: var(--text-white);
}

.btn-proposal:hover {
    background: var(--brown-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 46, 31, 0.25);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Experience Section */
.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 60px 0 20px;
}

.experience-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(62, 46, 31, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 700px;
}

.experience-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: rgba(62, 46, 31, 0.85);
    margin-bottom: 12px;
    padding-left: 0;
}

.experience-additional {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.75);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-style: italic;
}

/* Investment Section */
.investment-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(62, 46, 31, 0.1);
    border-bottom: 1px solid rgba(62, 46, 31, 0.1);
}

.investment-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.investment-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(62, 46, 31, 0.8);
    text-align: center;
    margin-bottom: 24px;
}

.investment-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
    text-align: center;
}

.investment-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.investment-note {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 16px;
}

/* CTA Button Section */
.cta-button-wrapper {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(62, 46, 31, 0.1);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(62, 46, 31, 0.8);
    text-align: center;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-check-availability {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-check-availability:hover {
    background: var(--brown-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 46, 31, 0.2);
}

.itinerary-title-large {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.itinerary-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.itinerary-rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.included-list-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.included-list-item:last-child {
    border-bottom: none;
}

.included-list-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8B6F47;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 40px;
}

.included-list-content {
    flex: 1;
}

.included-list-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.included-list-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.7);
    margin: 0;
}

.itinerary-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: start;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.itinerary-row:has(.itinerary-text-block) {
    grid-template-columns: auto 1fr 1fr 1.5fr;
    gap: 30px;
}

.itinerary-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8B6F47;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.itinerary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 500px;
}

.itinerary-images-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 2400px;
    margin: 0 auto 30px auto;
    padding: 0;
}

.itinerary-text-block.sunava-style .itinerary-images-group {
    max-width: 100%;
    margin: 0 0 30px 0;
    gap: 24px;
    width: 100%;
}

.itinerary-image-square {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(139, 111, 71, 0.1);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
    width: 100%;
}

.itinerary-image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.itinerary-image-square:hover img {
    transform: scale(1.05);
}

.itinerary-text-block {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    text-align: center;
    padding: 0 40px;
}

.itinerary-text-block.sunava-style {
    max-width: 1400px;
    margin: 0 auto 100px auto;
    padding: 0 60px;
}

.itinerary-text-block.sunava-style .itinerary-images-group {
    max-width: 100%;
    margin: 0 0 20px 0;
    gap: 20px;
}

.sunava-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 60px 0;
}

.sunava-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.4;
    margin: 0 0 50px 0;
}

.sunava-content {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
    color: rgba(26, 26, 26, 0.65);
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    letter-spacing: 0.01em;
    font-style: italic;
}

.sunava-content p {
    margin: 0 0 20px 0;
    text-align: left;
    font-style: italic;
    color: rgba(26, 26, 26, 0.65);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
}

.sunava-content p:last-of-type:not(.sunava-final-text) {
    margin-bottom: 28px;
}

.sunava-final-text {
    font-style: italic;
    color: rgba(26, 26, 26, 0.65);
    font-size: clamp(14px, 1.5vw, 17px);
    margin-top: 36px !important;
    text-align: left;
    line-height: 1.75;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.itinerary-text-preheader {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(62, 46, 31, 0.6);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.itinerary-text-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.itinerary-text-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.75);
    margin: 0 0 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.itinerary-text-description:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: rgba(26, 26, 26, 0.65);
    font-size: clamp(16px, 1.8vw, 20px);
}

@media (max-width: 1024px) {
    .itinerary-images-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 20px;
    }
    
    .itinerary-text-block {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .included-list {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .included-list-item {
        gap: 24px;
        padding: 32px 0;
    }
}

@media (max-width: 768px) {
    .itinerary-style-section {
        padding: 80px 0;
    }
    
    .itinerary-header {
        margin-bottom: 60px;
    }
    
    .itinerary-rows {
        gap: 0px;
    }
    
    .itinerary-images {
        gap: 12px;
    }
    
    .itinerary-images-group {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .itinerary-image-square {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .itinerary-text-block {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .itinerary-text-block.sunava-style {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .redesigned-section {
        padding: 60px 20px;
        margin: 60px auto;
    }
    
    .redesigned-main-heading {
        font-size: clamp(36px, 7vw, 48px);
        margin-bottom: 20px;
    }
    
    .redesigned-subtitle {
        font-size: clamp(16px, 3.5vw, 20px);
        margin-bottom: 60px;
    }
    
    .redesigned-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .redesigned-left-column p,
    .redesigned-bullet-list li {
        font-size: clamp(15px, 3vw, 17px);
    }
    
    .redesigned-bullet-list li {
        margin-bottom: 20px;
    }
    
    .redesigned-divider {
        width: 80%;
        margin: 40px auto;
    }
    
    .redesigned-bottom-paragraph {
        font-size: clamp(14px, 2.8vw, 16px);
    }
    
    /* New Package Section Responsive */
    .package-types {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .package-types span {
        display: block;
        margin: 8px 0;
    }
    
    .experience-title {
        font-size: clamp(24px, 4vw, 32px);
        margin: 40px 0 16px;
    }
    
    .experience-subtitle {
        font-size: clamp(15px, 2.5vw, 17px);
        margin-bottom: 24px;
    }
    
    .experience-list {
        padding: 0 20px;
    }
    
    .experience-list li {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    
    .experience-additional {
        font-size: clamp(14px, 2.5vw, 16px);
        padding: 0 20px;
    }
    
    .investment-section {
        margin: 40px 0;
        padding: 30px 20px;
    }
    
    .investment-title {
        font-size: clamp(22px, 3.5vw, 28px);
    }
    
    .investment-subtitle {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    
    .investment-list {
        padding: 0 20px;
    }
    
    .investment-list li {
        font-size: clamp(15px, 2.5vw, 17px);
    }
    
    .investment-note {
        font-size: clamp(13px, 2.2vw, 15px);
        padding: 0 20px;
    }
    
    .cta-button-wrapper {
        margin-top: 40px;
        padding-top: 30px;
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: clamp(24px, 4vw, 32px);
    }
    
    .cta-subtitle {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    
    .btn-check-availability {
        padding: 14px 32px;
        font-size: clamp(14px, 2.5vw, 16px);
    }
    
    /* Premium Experience Section Responsive */
    .premium-experience-section {
        padding: 80px 0;
    }
    
    .premium-header {
        margin-bottom: 60px;
        padding: 0 24px;
    }
    
    .target-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0 24px;
    }
    
    .target-card-image {
        height: 240px;
    }
    
    .concept-description {
        margin-bottom: 60px;
        padding: 0 24px;
    }
    
    .experience-section-premium {
        margin-bottom: 60px;
        padding: 0 24px;
    }
    
    .experience-list-premium {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .investment-section-premium {
        margin-bottom: 50px;
        padding: 0 24px;
    }
    
    .investment-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .payment-conditions-premium {
        margin-bottom: 50px;
        padding: 0 24px;
    }
    
    .cta-premium-wrapper {
        padding: 0 24px;
    }
    
    .cta-premium-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-premium {
        width: 100%;
        text-align: center;
    }
    
    .sunava-main-title {
        font-size: clamp(36px, 8vw, 48px);
        margin-bottom: 12px;
    }
    
    .sunava-subtitle {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: 32px;
    }
    
    .sunava-content {
        font-size: clamp(16px, 3.5vw, 18px);
        text-align: left;
    }
    
    .itinerary-text-title {
        font-size: 24px;
    }
    
    .itinerary-text-description {
        font-size: 16px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.proposal-request-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

@media (max-width: 480px) {
    .accommodations-section {
        padding: 60px 0 5px;
    }
    
    .accommodations-sticky-container {
        padding: 15px 20px 0;
        margin-bottom: 0;
    }
    
    .accommodation-panel {
        max-width: 85%;
        height: 40vh;
    }
    
    .accommodation-image {
        width: 100%;
        height: 100%;
    }
    
    .accommodation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .accommodations-sticky-wrapper {
        height: 35vh;
        margin-bottom: 0;
    }
    
    .proposal-request-wrapper {
        padding: 0 20px;
    }
    
    .redesigned-section {
        padding: 50px 15px;
        margin: 50px auto;
    }
    
    .itinerary-text-block.sunava-style {
        padding: 0 15px;
    }
    
    .itinerary-images-group {
        padding: 0 15px;
        gap: 12px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .accommodations-header {
        padding: 0 15px;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .hero-footer {
        padding: 20px 15px;
    }
}

.proposal-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.proposal-subtext {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.8);
    margin: 0 0 16px 0;
    max-width: 100%;
}

.proposal-emphasis {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: var(--brown-medium);
    margin: 0 0 50px 0;
    font-style: italic;
}

.cta-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-cta {
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-cta-primary {
    background: var(--brown-medium);
    color: var(--text-white);
}

.btn-cta-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
}

.btn-cta-secondary {
    background: var(--text-white);
    color: var(--brown-medium);
    border: 2px solid var(--brown-medium);
}

.btn-cta-secondary:hover {
    background: var(--brown-medium);
    color: var(--text-white);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
    border-top: none;
}

.proposal-request-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.proposal-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.proposal-subtext {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.8);
    margin: 0 0 16px 0;
    max-width: 100%;
}

.proposal-emphasis {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: var(--brown-medium);
    margin: 0 0 50px 0;
    font-style: italic;
}

.proposal-form {
    text-align: left;
    margin-bottom: 50px;
}

.payment-conditions-block {
    max-width: 600px;
    margin: 50px auto 40px auto;
    padding: 30px 40px;
    background: rgba(139, 111, 71, 0.05);
    border-radius: 8px;
    text-align: center;
}

.payment-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.payment-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.8);
    margin: 0 0 20px 0;
    text-align: left;
}

.payment-methods-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
    text-align: left;
}

.payment-methods-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.payment-methods-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    color: rgba(62, 46, 31, 0.75);
    line-height: 1.6;
}

.payment-methods-list li::before {
    content: "•";
    color: var(--brown-medium);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

.whatsapp-alternative {
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.9vw, 17px);
    color: rgba(62, 46, 31, 0.7);
}

.whatsapp-link {
    color: var(--brown-medium);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--brown-dark);
}

/* Pricing Section */
.pricing-section {
    background: var(--text-white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--text-dark);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features p {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features p:last-child {
    border-bottom: none;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--text-light);
}

.price {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Instrument Serif', serif;
    letter-spacing: -0.03em;
}

.period {
    font-size: 18px;
    color: var(--text-light);
    margin-left: 5px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--text-dark);
    color: var(--text-white);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-pricing {
    background: var(--brown-medium);
}

.btn-pricing:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-item {
    background: var(--text-white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.btn-submit {
    padding: 16px;
    background: var(--brown-medium);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

.payment-conditions-block {
    max-width: 600px;
    margin: 50px auto 40px auto;
    padding: 30px 40px;
    background: rgba(139, 111, 71, 0.05);
    border-radius: 8px;
    text-align: center;
}

.payment-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.payment-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.7;
    color: rgba(62, 46, 31, 0.8);
    margin: 0;
}

.whatsapp-alternative {
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.9vw, 17px);
    color: rgba(62, 46, 31, 0.7);
}

.whatsapp-link {
    color: var(--brown-medium);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--brown-dark);
}

.form-success-message {
    margin-top: 30px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    text-align: center;
}

.form-success-message p {
    color: #2e7d32;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.form-error-message {
    margin-top: 30px;
    padding: 20px;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    text-align: center;
}

.form-error-message p {
    color: #c62828;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

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

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-phone,
.contact-email {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    mix-blend-mode: normal;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.footer-legal {
    margin: 0 0 20px 0;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px 0;
}

.footer-registration,
.footer-owner,
.footer-contact-info {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-policy {
    margin: 20px 0 0 0;
}

.footer-policy a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-policy a:hover {
    color: var(--text-white);
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    max-width: 300px;
}

.footer-links-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        padding: 0 24px;
    }
    
    .about-title {
        margin-bottom: 40px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-image {
        max-width: 280px;
    }
    
    .about-paragraph {
        margin-bottom: 24px;
    }
    
    .about-highlight {
        margin-top: 32px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .proposal-request-wrapper {
        padding: 0 24px;
    }
    
    .proposal-main-title {
        margin-bottom: 20px;
    }
    
    .proposal-subtext {
        margin-bottom: 12px;
    }
    
    .proposal-emphasis {
        margin-bottom: 40px;
    }
    
    .proposal-form {
        margin-bottom: 40px;
    }
    
    .payment-conditions-block {
        padding: 24px 20px;
        margin: 40px auto 30px auto;
    }
    
    .whatsapp-alternative {
        margin-top: 30px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-image {
        height: 70px;
        max-height: 70px;
    }
    
    .footer-links {
        max-width: 100%;
    }
}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 116px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu a {
        color: var(--text-dark);
        text-shadow: none;
    }
    
    .nav-language-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-language-btn svg,
    .nav-language-btn .flag-icon {
        width: 16px;
        height: 12px;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-footer {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        align-items: center;
    }
    
    .hero-location {
        font-size: 13px;
        justify-content: center;
    }
    
    .hero-departure {
        font-size: 13px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid,
    .steps-grid,
    .accommodations-grid,
    .included-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 48px;
    }
}
