/* packages.css - Cinematic Luxury / Streaming Aesthetic */

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #888888;
    --emphasis-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4 {
    font-weight: 300;
    margin: 0;
}



/* --- 2. HERO SECTION (40 / 60) --- */
.cinema-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    overflow: hidden;
}

.hero-left {
    position: relative;
    z-index: 2;
    flex: 0 0 45%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* More subtle gradient */
    background: linear-gradient(90deg, #000000 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0,0,0,0) 100%);
}

.hero-right {
    position: absolute;
    top: 0; right: 0;
    width: 65%; /* Overlap slightly for the fade */
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #000000 0%, rgba(0,0,0,0) 40%);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 7rem;
    font-family: var(--font-serif);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Premium Metallic Blue Effect */
    background: linear-gradient(135deg, #ffffff 0%, #c1d5ee 20%, #7da2d4 50%, #b8d0ef 80%, #ffffff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0px 4px 15px rgba(125, 162, 212, 0.2);
}

.hero-desc {
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #cccccc;
    margin-top: 2rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 90%;
}

/* Hero Bottom Icons */
.hero-icons {
    display: flex;
    flex-wrap: wrap; /* Fix overflow/wrapping issues */
    gap: 2rem;
    margin-top: 5rem;
}
.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 120px;
}
.hero-icon-item i {
    font-size: 1.8rem;
    color: #c1d5ee; /* Metallic blue accent */
    font-weight: 100; /* Thin icons */
    opacity: 0.8;
}
.hero-icon-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- 3. CINEMATIC BENEFITS SECTION --- */
.benefits-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15vh 5%;
    display: flex;
    gap: 10%;
}

.benefits-col {
    flex: 1;
}

.benefits-col h2 {
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--emphasis-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.benefits-col h2 i {
    font-size: 2.5rem;
    opacity: 0.7;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #bbbbbb;
    font-weight: 300;
}

.benefits-list li i {
    color: var(--emphasis-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* --- 4. HUGE INTERSPERSED PHOTOS --- */
.massive-photo {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.massive-photo::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); /* Subtle dimming */
}

/* --- 5. ENTREGA SECTION --- */
.entrega-minimal {
    padding: 15vh 5%;
    text-align: center;
}

.entrega-minimal h2 {
    font-size: 3rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 8rem;
    color: var(--text-muted);
}

.entrega-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.entrega-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entrega-item i {
    font-size: 3.5rem;
    color: var(--emphasis-color);
    margin-bottom: 2rem;
    font-weight: 100;
}

.entrega-item p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dddddd;
    line-height: 1.6;
}

/* --- 6. CTA CINEMATOGRÁFICO --- */
.cta-cinematic {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-bottom: 8vh;
}
.cta-cinematic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); /* Dark overlay */
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--emphasis-color);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.3;
}

.btn-white {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 1.5rem 5rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-white:hover {
    background: #dddddd;
    transform: translateY(-2px);
}

/* EXTRAS PLATINO */
.extras-cinematic {
    padding: 5vh 5%;
}
.extras-cinematic h2 {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 8px;
    text-transform: none;
    margin-bottom: 8vh;
    font-family: 'Product Sans', var(--font-main);
}
.extra-minimal-row {
    display: flex;
    align-items: flex-start;
    gap: 4%;
    max-width: 1600px;
    margin: 0 auto 8vh;
}
.extras-cinematic .extra-minimal-row:last-child {
    margin-bottom: 0;
}
.extra-minimal-row:nth-child(even) {
    flex-direction: row-reverse;
}
.extra-image {
    flex: 1;
    height: 600px;
}
.extra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.extra-text {
    flex: 1;
    padding: 0 2rem;
}
.extra-text h3 {
    font-size: 2.5rem;
    color: var(--emphasis-color);
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
    text-transform: none;
    font-family: 'Product Sans', var(--font-main);
}
.extra-text p {
    font-size: 1.2rem;
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* FAQ & INFO MINIMAL */
.info-minimal {
    padding: 5vh 5% 10vh 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 10%;
}
.info-minimal-col {
    flex: 1;
}
.info-minimal-col h2 {
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--emphasis-color);
    margin-bottom: 1.8rem;
    font-family: 'Product Sans', var(--font-main);
}
.faq-item {
    margin-bottom: 3rem;
}
.faq-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}
.faq-item p {
    font-size: 1.1rem;
    color: #999999;
    line-height: 1.6;
    font-weight: 300;
}
.payment-info {
    font-size: 1.2rem;
    color: #bbbbbb;
    line-height: 1.8;
    font-weight: 300;
}
.payment-info strong {
    color: #ffffff;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 5rem; }
    .benefits-section { flex-direction: column; gap: 6rem; padding: 10vh 5%; }
    .entrega-grid { flex-direction: column; gap: 4rem; }
    .extra-minimal-row, .extra-minimal-row:nth-child(even) { 
        flex-direction: column; 
        gap: 2rem; 
        margin-bottom: 8vh; 
        align-items: stretch; 
    }
    .extra-image { 
        width: 100%; 
        height: auto !important; 
    }
    .extra-text {
        width: 100%;
        padding: 0 1rem;
    }
    .info-minimal { flex-direction: column; gap: 5rem; }
}
@media (max-width: 768px) {
    .hero-left { flex: 0 0 100%; background: transparent; padding-top: 0; padding-bottom: 5vh; text-align: center; align-items: center; justify-content: flex-end; }
    .hero-left::before { background: transparent; }
    .hero-right { width: 100%; }
    .hero-right::after { background: linear-gradient(to top, #000 0%, #000 20%, rgba(0,0,0,0.8) 45%, transparent 80%); }
    .hero-icons { justify-content: center; flex-wrap: wrap; }
    .hero-icon-item { align-items: center; }
    .cta-content h2 { font-size: 2rem; }
}

/* --- EXTRAS FEATURE CARDS (Cabina, Chisperos, etc) --- */
.features-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
    text-align: left;
}
.features-card h2 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    text-transform: none;
    font-family: 'Product Sans', var(--font-main);
}
.features-card .benefits-list {
    margin-top: 0;
}
.features-card .benefits-list li {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

/* Metallic Nav Links */
.nav-links li a {
    filter: drop-shadow(0 1.5px 3px rgba(0, 0, 0, 0.85));
}
.nav-links li a.active-package {
    filter: none !important;
}
.nav-links li a.nav-link-plata {
    background: linear-gradient(135deg, #8a8a8f 0%, #ffffff 25%, #bcbcbf 50%, #f2f2f7 75%, #636366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.nav-links li a.nav-link-oro {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.nav-links li a.nav-link-platino {
    background: linear-gradient(135deg, #2b6cb0 0%, #ebf8ff 25%, #63b3ed 50%, #c3dafe 75%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.nav-links li a.nav-link-plata:hover,
.nav-links li a.nav-link-oro:hover,
.nav-links li a.nav-link-platino:hover {
    filter: brightness(1.25);
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #264673 0%, #4a7bbd 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(74, 123, 189, 0.3);
    border: 1px solid rgba(193, 213, 238, 0.3);
}

.extra-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s ease, border-color 0.5s ease;
    height: 100%;
    min-height: 500px;
}
.extra-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contain-image {
    object-fit: contain !important;
    background-color: rgba(0,0,0,0.2);
}
.extra-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
}

/* --- SEPARATED FOTO / VIDEO CAPSULE SECTIONS --- */
.cinematic-service-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8vh 5%;
}

.service-elegant-title {
    font-size: 3.5rem;
    font-family: 'Product Sans', var(--font-main);
    text-align: left;
    color: var(--emphasis-color);
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 3rem;
    /* Premium Metallic Blue Effect */
    background: linear-gradient(135deg, #ffffff 0%, #c1d5ee 20%, #7da2d4 50%, #b8d0ef 80%, #ffffff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0px 4px 15px rgba(125, 162, 212, 0.15);
}

.white-text-override {
    background: none !important;
    color: #ffffff !important;
    text-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2) !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
}

.capsule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.glass-capsule {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

/* --- SPLIT CARD REDESIGN FOR FOTO AND VIDEO --- */
.service-split-card {
    display: flex;
    background-color: #050505;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    height: 450px;
}

.split-image {
    flex: 0 0 50%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.split-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to right, transparent 0%, transparent 60%, #050505 100%);
}

.split-content {
    flex: 0 0 50%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #050505;
}

.split-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split-content ul li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: 'Product Sans', var(--font-main);
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 1.5rem;
}
.split-content ul li:last-child {
    margin-bottom: 0;
}

.split-content ul li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.glass-capsule:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-capsule i {
    font-size: 2.5rem;
    color: #c1d5ee;
    margin-bottom: 1.5rem;
    font-weight: 100;
}

.glass-capsule p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #dddddd;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .service-elegant-title { font-size: 2.8rem; }
    .capsule-grid { grid-template-columns: 1fr; }
    .glass-capsule { padding: 2rem 1.5rem; }
}

/* Mobile Fixes for Extras Images */
@media (max-width: 1024px) {
    .extra-image {
        height: auto !important;
    }
    .extra-image-wrapper {
        min-height: 300px !important;
        height: 300px !important;
    }
    .service-split-card {
        flex-direction: column;
        height: auto;
    }
    .split-image {
        height: 300px;
        flex: none;
    }
    .split-image::after {
        background: linear-gradient(to bottom, transparent 0%, transparent 60%, #050505 100%);
    }
    .split-content {
        padding: 3rem 2rem;
        flex: none;
    }
}
@media (max-width: 768px) {
    .extra-image-wrapper {
        min-height: 250px !important;
        height: 250px !important;
    }
}

/* Slideshow for Hero Right */
.slideshow-container {
    background: none !important; /* Override inline background */
}
.slideshow-container .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.slideshow-container .slide.active {
    opacity: 1;
}

/* Fix Mobile Nav Capsules & Slideshow Stacking */
@media (max-width: 768px) {
    .site-header .header-bottom {
        display: flex !important;
        position: relative !important;
        top: 0 !important;
        background: transparent !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        overflow: visible !important;
        margin-top: 5px !important;
        backdrop-filter: none !important; /* Removed horizontal blur stripe behind capsules on mobile */
        -webkit-backdrop-filter: none !important;
    }
    .site-header .header-bottom .nav-links {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .site-header .header-bottom .nav-links li {
        flex: 0 1 auto !important;
    }
    .site-header .header-bottom .nav-links li a {
        font-size: 0.68rem !important; /* Extremely small to fit SE and other screen sizes */
        padding: 5px 8px !important;
        white-space: nowrap !important;
    }
}


/* Active Package Capsule Glow */
.nav-links li a.active-package {
    background: #ffffff !important;
    color: #000000 !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: #000000 !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #ffffff !important;
    transform: scale(1.05);
}

/* Page Transition Overlay (Fade to Black) */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 999999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}
.page-transition-overlay.fade-out {
    opacity: 0;
}


/* Cloud Upload Icon Minimal Style */
.cloud-upload-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-height: 280px;
    width: 100%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}
.cloud-upload-container i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 5.5rem;
    animation: cloudFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}
@keyframes cloudFloat {
    0% { transform: translateY(0); opacity: 0.35; }
    50% { transform: translateY(-8px); opacity: 0.6; }
    100% { transform: translateY(0); opacity: 0.35; }
}

/* Hero Action Button for Packages */
.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    background: #ffffff;
    color: #111111;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start; /* Prevent stretching to full width in flex columns on desktop */
}

.hero-action-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    color: #111111;
}

.hero-action-btn.animated-pulse {
    animation: pulse 2s infinite;
}

/* Center button on mobile layout */
@media (max-width: 768px) {
    .hero-action-btn {
        align-self: center !important;
        margin-top: 1.2rem !important;
    }
}



/* Promo Badge style in Hero */
.promo-badge {
    margin: 1.2rem 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.2) 0%, rgba(170, 119, 28, 0.05) 100%);
    border: 1px solid rgba(191, 149, 63, 0.4);
    padding: 8px 16px;
    border-radius: 30px;
    color: #fbf5b7;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-self: flex-start;
    width: max-content;
}

@media (max-width: 768px) {
    .promo-badge {
        align-self: center;
        margin: 1.2rem auto;
    }
}

/* Fix for mobile navigation bar overflow and page shrinking */
@media (max-width: 991px) {
    .nav-links-hide-text {
        display: none !important;
    }
    .nav-links li a.active-package {
        transform: none !important; /* Disable scale scale-up on mobile to prevent overflow */
    }
}

/* --- 7. PACKAGE TESTIMONIALS SECTION --- */
.package-testimonials {
    padding: 8vh 5%;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.section-title-premium {
    font-family: 'Product Sans', var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #b8d0ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.package-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.package-testimonial-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.package-testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.package-testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.package-testimonial-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #b8d0ef;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.see-all-testimonials {
    margin-top: 1rem;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-all-btn:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* --- 8. STICKY RESERVE BAR --- */
body {
    padding-bottom: 95px !important;
}

.sticky-reserve-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 14, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 6%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    animation: stickySlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stickySlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-reserve-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.sticky-reserve-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8d0ef;
    font-weight: 700;
}

.sticky-reserve-package {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}

.sticky-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Plata (Silver) Style --- */
.sticky-reserve-bar.sticky-plata {
    border-top: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 35px rgba(255, 255, 255, 0.05);
}
.sticky-reserve-bar.sticky-plata .sticky-reserve-package {
    background: linear-gradient(135deg, #8a8a8f 0%, #ffffff 25%, #bcbcbf 50%, #f2f2f7 75%, #636366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sticky-reserve-bar.sticky-plata .sticky-reserve-btn {
    background: linear-gradient(135deg, #8a8a8f 0%, #ffffff 25%, #bcbcbf 50%, #f2f2f7 75%, #636366 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}
.sticky-reserve-bar.sticky-plata .sticky-reserve-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* --- Oro (Gold) Style --- */
.sticky-reserve-bar.sticky-oro {
    border-top: 1.5px solid rgba(191, 149, 63, 0.35);
    box-shadow: 0 -8px 35px rgba(170, 119, 28, 0.15);
}
.sticky-reserve-bar.sticky-oro .sticky-reserve-package {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sticky-reserve-bar.sticky-oro .sticky-reserve-btn {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(170, 119, 28, 0.25);
}
.sticky-reserve-bar.sticky-oro .sticky-reserve-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* --- Platino (Platinum Blue) Style --- */
.sticky-reserve-bar.sticky-platino {
    border-top: 1.5px solid rgba(74, 123, 189, 0.35);
    box-shadow: 0 -8px 35px rgba(74, 123, 189, 0.2);
}
.sticky-reserve-bar.sticky-platino .sticky-reserve-package {
    background: linear-gradient(135deg, #2b6cb0 0%, #ebf8ff 25%, #63b3ed 50%, #c3dafe 75%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sticky-reserve-bar.sticky-platino .sticky-reserve-btn {
    background: linear-gradient(135deg, #2b6cb0 0%, #ebf8ff 25%, #63b3ed 50%, #c3dafe 75%, #1a365d 100%);
    color: #000000;
    border: 1px solid rgba(193, 213, 238, 0.3);
    box-shadow: 0 4px 15px rgba(74, 123, 189, 0.25);
}
.sticky-reserve-bar.sticky-platino .sticky-reserve-btn:hover {
    background: linear-gradient(135deg, #5b8ccf 0%, #31588f 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 123, 189, 0.4);
}

@media (max-width: 768px) {
    .package-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title-premium {
        font-size: 1.85rem;
        margin-bottom: 2rem;
    }
    .package-testimonial-card {
        padding: 2rem 1.8rem;
    }
    .package-testimonial-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Sticky bar on mobile */
    body {
        padding-bottom: 85px !important;
    }
    .sticky-reserve-bar {
        padding: 10px 1.5rem;
    }
    .sticky-reserve-package {
        font-size: 0.95rem;
    }
    .sticky-reserve-brand {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .sticky-reserve-btn {
        padding: 10px 20px;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
}

/* Fallback to hide search modal if search-styles.css is missing or disabled */
.search-modal {
    display: none !important;
}
.search-modal.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 15, 15, 0.7) 0%, rgba(5, 5, 5, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

/* Fix for capsule space between 'PAQUETE' and the package name in flex layout */
.nav-links li a .nav-links-hide-text {
    margin-right: 0.28em;
}