@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary: #6244C5;    /* Vibrant Purple */
    --primary-hover: #5037A3; 
    --secondary: #F89B2B;  /* Sunset Orange */
    --accent: #3AB4B1;     /* Cyan/Aqua */
    --bg-white: #FFFFFF;
    --bg-cream: #F7F5F2;
    --text-main: #333333;
    --text-muted: #666666;
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

h2.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(248, 155, 43, 0.3);
}

.btn-primary:hover {
    background-color: #e5881f; /* slightly darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 155, 43, 0.4);
}

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

/* Base Sections */
.section-full {
    padding: 6rem 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.hero-logo {
    height: 160px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
    .hero-logos { gap: 1.5rem; }
    .hero-logo { height: 110px; }
}

.hero h1 {
    color: white;
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
}

.hero p.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

/* Intro Quote */
.intro-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-quote h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--primary);
}

.intro-quote p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.intro-quote h3 {
    font-size: 2rem;
    color: var(--secondary);
    font-style: italic;
}

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

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bento-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Split Layouts (Text / Image) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.split-section:last-child {
    margin-bottom: 0;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Compact variant — for the tour list */
.split-section.compact {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.split-section.compact .split-image {
    height: 260px;
    min-width: 240px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.split-section.compact .split-content {
    min-width: 240px;
}
.split-section.compact .split-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}
.split-section.compact .split-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Custom Lists */
.custom-list {
    list-style: none;
    margin-top: 1.5rem;
}

.custom-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.custom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.minimal-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Accompanist Section */
.accompanist-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.acc-avatar {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.acc-info h2 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.acc-info h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Hosts grid (Flor + Lucas) */
.hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.host-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.host-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.host-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    overflow: hidden;
}
.host-avatar-zoom {
    position: relative;
}
.host-avatar-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.18);
    transform-origin: center 35%;
}
.host-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.host-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.hosts-invite {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
}
.hosts-invite h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-style: italic;
}
.hosts-invite p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .hosts-grid { grid-template-columns: 1fr; }
}

/* Testimonios */
.testimonials-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(98,68,197,0.92) 0%, rgba(58,180,177,0.88) 100%),
        url('Vishalakshmi_Mantap.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(248,155,43,0.15);
    filter: blur(80px);
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(58,180,177,0.25);
    filter: blur(80px);
}
.testimonials-section .container {
    position: relative;
    z-index: 1;
}
.testimonials-title {
    color: white;
    margin-bottom: 0.5rem;
}
.testimonials-title::after {
    background-color: white;
}
.testimonials-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 5.5rem 2rem 2.25rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.4);
    position: relative;
    transition: var(--transition);
    margin-top: 80px;
    text-align: center;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 75px rgba(0,0,0,0.3);
}
.testimonial-stars {
    color: var(--secondary);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin: 0.5rem 0 1rem;
}
.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.6;
    color: var(--primary);
    opacity: 0.18;
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    font-weight: 700;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1rem;
}
.testimonial-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-cream);
    border: 5px solid white;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
    margin-bottom: 0.25rem;
}
.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}
.testimonial-location {
    color: var(--text-muted);
    font-size: 0.88rem;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 5rem; }
    .testimonial-card { padding: 5rem 1.5rem 1.75rem; margin-top: 70px; }
    .testimonial-avatar { width: 120px; height: 120px; top: -70px; }
    .testimonial-quote-mark { font-size: 4rem; top: 1.5rem; }
}

/* Form section: form + discount badge layout */
.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.form-container .form-wrapper.compact {
    margin: 0;
    flex-shrink: 0;
}
.discount-badge-wrapper {
    text-align: center;
    flex-shrink: 0;
}
.discount-badge {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #ee8520 100%);
    border: 6px solid white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.2);
    transform: rotate(-6deg);
    transition: transform 0.4s ease;
    margin: 0 auto;
}
.discount-badge:hover {
    transform: rotate(0deg) scale(1.04);
}
.discount-currency {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}
.discount-amount {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}
.discount-off {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 3px;
}
.discount-caption {
    font-family: var(--font-body);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 0.75rem;
    text-align: center;
}
@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
        gap: 3rem;
    }
    .discount-badge-wrapper {
        order: -1;
    }
    .discount-badge {
        width: 220px;
        height: 220px;
        transform: rotate(-4deg);
    }
    .discount-currency { font-size: 1.9rem; }
    .discount-amount { font-size: 2.8rem; }
    .discount-off { font-size: 2.4rem; }
}

/* Form section background */
.form-section {
    position: relative;
    background-image: url('Vishalakshmi_Mantap.jpg');
    background-size: cover;
    background-position: center;
}
.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(98,68,197,0.75), rgba(58,180,177,0.65));
}
.form-section .container {
    position: relative;
    z-index: 1;
}

/* Forms */
.form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(98, 68, 197, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* Compact form variant — más chico y con más impacto */
.form-wrapper.compact {
    max-width: 480px;
    padding: 2.5rem 2.25rem;
    border-radius: 24px;
    background: white;
    box-shadow: 0 25px 60px rgba(98,68,197,0.18), 0 0 0 1px rgba(98,68,197,0.06);
    position: relative;
    overflow: hidden;
}
.form-wrapper.compact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.form-wrapper.compact .form-header {
    margin-bottom: 2rem;
}
.form-wrapper.compact .form-header h3 {
    font-size: 1.7rem;
}
.form-wrapper.compact .form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.form-wrapper.compact .input-group {
    margin-bottom: 1.1rem;
}
.form-wrapper.compact .input-group input,
.form-wrapper.compact .input-group select {
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
}
.form-wrapper.compact .btn-primary {
    margin-top: 0.5rem;
    padding: 0.95rem 2rem;
    font-size: 1rem;
}

/* Inline radio (Sí/No) */
.radio-inline {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.radio-pill {
    flex: 1;
    position: relative;
    cursor: pointer;
}
.radio-pill input {
    position: absolute;
    opacity: 0;
}
.radio-pill span {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border: 2px solid var(--bg-cream);
    border-radius: 10px;
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}
.radio-pill input:checked + span {
    border-color: var(--primary);
    background: rgba(98,68,197,0.08);
    color: var(--primary);
}

/* Thank you panel */
.thankyou-panel {
    text-align: center;
    padding: 1rem 0 0.5rem;
}
.thankyou-panel.hidden { display: none; }
.thankyou-panel .check-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #2a9794);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(58,180,177,0.35);
}
.thankyou-panel .check-circle svg {
    width: 32px; height: 32px;
}
.thankyou-panel h3 {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.thankyou-panel p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: #25d366;
    color: white;
    font-weight: 700;
    padding: 0.95rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

/* Radio Group */
.radio-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--bg-cream);
    border-radius: 12px;
    background: white;
    transition: var(--transition);
}

.card-title {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.card-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.radio-card input:checked + .card-content {
    border-color: var(--primary);
    background: rgba(98, 68, 197, 0.05);
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .loader { display: block; }
.submit-btn { width: 100%; display: flex; justify-content: center; align-items: center; }

/* Status Messages */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}
.status-message.hidden { display: none; }
.status-message.success { background: rgba(58, 180, 177, 0.1); color: var(--accent); }
.status-message.error { background: rgba(248, 155, 43, 0.1); color: var(--secondary); }

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Itinerary Note */
.itinerary-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* ── ITINERARY ─────────────────────────────────── */
.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.itinerary-list::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    opacity: 0.25;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.itinerary-badge {
    background: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(248,155,43,0.3);
}

.itinerary-item.itinerary-highlight .itinerary-badge {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(98,68,197,0.3);
}

.itinerary-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.3rem;
}

.itinerary-city {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.itinerary-desc {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* ── DETAILS GRID (Incluye / No incluye / Requisitos) ─── */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.details-right-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.details-card.included { border-top: 5px solid var(--accent); }
.details-card.not-included { border-top: 5px solid var(--secondary); }
.details-card.requirements { border-top: 5px solid var(--primary); }

.details-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.details-title-main { color: var(--text-main); }
.details-title-accent { color: var(--secondary); }

.details-card.not-included .details-title-accent { color: var(--secondary); }
.details-card.requirements .details-title-accent { color: var(--primary); }

/* ── AYURVEDA CARD ─────────────────────────────── */
.ayurveda-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 30px;
    padding: 4rem;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex;
    gap: 3rem;
    align-items: center;
}

.ayurveda-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 120px);
    gap: 8px;
    flex-shrink: 0;
    width: 260px;
    border-radius: 16px;
    overflow: hidden;
}

.ayurveda-images .ayurveda-img:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
}

.ayurveda-img {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.ayurveda-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ayurveda-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.ayurveda-hotel {
    font-size: 1.3rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.ayurveda-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.ayurveda-card .custom-list li {
    color: rgba(255,255,255,0.85);
}

.ayurveda-card .minimal-list li::before {
    color: var(--secondary);
}

/* ── PRICING CARD ──────────────────────────────── */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(98,68,197,0.1);
    text-align: center;
    border-top: 6px solid var(--primary);
}

.pricing-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(248,155,43,0.3);
}

.pricing-option { margin-bottom: 1rem; }

.pricing-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
}

.pricing-divider {
    height: 1px;
    background: var(--bg-cream);
    margin: 1.5rem 0;
}

.pricing-extra {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 768px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .split-image {
        height: 250px;
        min-height: 250px;
        width: 100%;
        flex: none;
    }
    .accompanist-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .custom-list li {
        text-align: left;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .itinerary-list::before {
        display: none;
    }
    .itinerary-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    .itinerary-badge {
        min-width: auto;
        width: fit-content;
    }
    .ayurveda-card {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
    }
    .ayurveda-images {
        width: 100%;
        grid-template-rows: repeat(3, 100px);
    }
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    .pricing-amount {
        font-size: 2.2rem;
    }
    .form-wrapper {
        padding: 2rem;
    }
    .section-full {
        padding: 4rem 0;
    }
    h2.section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .intro-quote h2 { font-size: 1.8rem; }
    .intro-quote h3 { font-size: 1.4rem; }
    .intro-quote p { font-size: 1rem; letter-spacing: 2px; }
    .bento-card { padding: 2rem 1.75rem; }
    .form-wrapper.compact {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    .form-wrapper.compact .form-header h3 { font-size: 1.35rem; }
    .form-container { gap: 2rem; }
    .host-card { padding: 2rem 1.5rem; }
    .host-avatar { width: 140px; height: 140px; }
    .hosts-invite { padding: 1rem; }
    .hosts-invite h3 { font-size: 1.4rem; }
    .hosts-invite p { font-size: 1rem; }
    .container { padding: 0 16px; }
    .split-section.compact { margin-bottom: 1.5rem; gap: 1.5rem; }
    .split-section.compact .split-image { height: 200px; }
    .split-content h3 { font-size: 1.7rem; }
    .split-content p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p.subtitle { font-size: 1.05rem; }
    .btn-primary { padding: 0.85rem 1.75rem; font-size: 1rem; }
    .discount-badge {
        width: 200px;
        height: 200px;
    }
    .discount-currency { font-size: 1.7rem; }
    .discount-amount { font-size: 2.4rem; }
    .discount-off { font-size: 2rem; }
    .discount-caption { font-size: 0.7rem; }
}
