/* =========================================
   VARIABLES Y RESET
   ========================================= */
:root {
    --primary-color: #0f172a;
    /* Navy Dark */
    --secondary-color: #c4a47c;
    /* Gold/Bronze */
    --accent-color: #3b82f6;
    /* Sky Blue */
    --text-main: #334155;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.text-light {
    color: var(--text-light);
}

/* =========================================
   COMPONENTES: BOTONES
   ========================================= */
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ae8f65;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-main {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-outline {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 13px 33px;
    border-radius: 5px;
}

.btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.main-header.scrolled {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary-color);
}

.main-header.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.main-header.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    height: 100vh;
    background: url('https://caracol.com.co/resizer/v2/PBKYS3JBRNHUZJIC6RNJDOFTKU.png?auth=b371eecbc3a44ad3262e9a731f9ba33f73f80a7c1c05d9278ecc91b9d28ac072&width=650&height=488&quality=70&smart=true') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--secondary-color);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================================
   DESTINOS (Tarjetas únicas)
   ========================================= */
.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.section-header.center {
    text-align: center;
}

.subtitle {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    transition: var(--transition);
}

.dest-img {
    height: 100%;
    width: 100%;
}

.dest-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.dest-card:hover .dest-info {
    transform: translateY(0);
}

.dest-card:hover img {
    transform: scale(1.1);
}

/* Variación 1: Bordes Rectos */
.card-style-1 {
    border-radius: 0;
}

/* Variación 2: Bordes Muy Redondeados */
.card-style-2 {
    border-radius: 50px 0 50px 0;
}

/* Variación 3: Borde con sombra interna */
.card-style-3 {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   OFERTAS
   ========================================= */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offer-banner {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
}

.offer-banner.horizontal {
    height: 350px;
}

.offer-img {
    flex: 1;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 4px;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge.gold {
    background: #fef3c7;
    color: #92400e;
}

.pricing {
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 10px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.offer-banner.vertical {
    flex-direction: column;
    text-align: center;
    align-items: center;
    height: 100%;
}

.offer-banner.vertical .offer-img {
    width: 100%;
    height: 250px;
    flex: none;
}

.offer-banner.vertical .offer-content {
    padding: 30px;
}

/* Fix visibility of outline button on light background */
.offer-banner.vertical:not(.bg-dark) .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.offer-banner.vertical:not(.bg-dark) .btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* =========================================
   PAQUETES (Travel Boxes)
   ========================================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-box {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: var(--transition);
}

.package-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-img {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.package-body {
    padding: 25px;
}

.package-icons {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.package-icons i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.pkg-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    text-align: center;
    padding: 40px;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary-color);
    padding: 5px;
}

.client-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #cbd5e1;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--secondary-color);
}

/* =========================================
   CONTACTO
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-form {
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.form-feedback {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    color: #10b981;
}

.form-feedback.error {
    color: #ef4444;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    padding: 80px 0 30px;
    border-top: 1px solid #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* =========================================
   ANIMACIONES SCROLL
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: 1s all ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: 1s all ease;
}

.active-reveal {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.5s;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--primary-color);
    }

    .menu-toggle {
        display: block;
        color: var(--text-light);
    }

    .main-header.scrolled .menu-toggle {
        color: var(--primary-color);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .offer-banner.horizontal {
        flex-direction: column;
        height: auto;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 50px 0;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-img-container {
        height: 200px;
    }
}

/* =========================================
   MODAL STYLES
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
}

.modal-img-container {
    flex: 1;
    min-height: 400px;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.modal-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.modal-desc {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.8;
}

.modal-cta {
    align-self: flex-start;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
}

/* =========================================
   PAGINA DE DESTINOS (DISEÑO ÚNICO)
   ========================================= */
.destinos-page {
    background-color: #0b1121;
    color: white;
}

.destinos-hero {
    padding: 180px 0 100px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), #0b1121),
        url('https://www.lavanguardia.com/files/og_thumbnail/uploads/2018/06/15/5fa43d71a111f.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.destinos-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.destinos-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.destinos-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
}

.premium-dest-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.premium-dest-card.tall {
    grid-row: span 2;
}

.premium-dest-card.wide {
    grid-column: span 2;
}

.p-card-inner {
    width: 100%;
    height: 100%;
}

.p-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent 60%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.dest-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.premium-dest-card h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.premium-dest-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    max-width: 80%;
}

.p-card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.p-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

/* Hover Effects */
.premium-dest-card:hover img {
    transform: scale(1.1);
}

.premium-dest-card:hover .dest-category,
.premium-dest-card:hover h2,
.premium-dest-card:hover p,
.premium-dest-card:hover .p-card-footer {
    opacity: 1;
    transform: translateY(0);
}

.premium-dest-card:hover .dest-category {
    transition-delay: 0.1s;
}

.premium-dest-card:hover h2 {
    transition-delay: 0.2s;
}

.premium-dest-card:hover p {
    transition-delay: 0.3s;
}

.premium-dest-card:hover .p-card-footer {
    transition-delay: 0.4s;
}

.btn-circle:hover {
    background: white;
    color: var(--primary-color);
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .destinos-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinos-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }

    .premium-dest-card.wide,
    .premium-dest-card.tall {
        grid-row: auto;
        grid-column: auto;
    }

    .destinos-hero h1 {
        font-size: 3rem;
    }
}

/* =========================================
   PAGINA DE OFERTAS (DISEÑO ÚNICO)
   ========================================= */
.offers-page {
    background-color: #f8fafc;
}

.offers-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.offer-label {
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.offers-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.offers-hero h1 span {
    color: var(--secondary-color);
}

.offers-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.glass-offer-card {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
}

.glass-img {
    width: 60%;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.glass-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.glass-content {
    width: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin-left: -10%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-offer-card.reverse {
    flex-direction: row-reverse;
}

.glass-offer-card.reverse .glass-content {
    margin-left: 0;
    margin-right: -10%;
}

.glass-badge {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.glass-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.glass-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.glass-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-box small {
    display: block;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-glass {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-glass:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.glass-offer-card:hover .glass-img img {
    transform: scale(1.05);
}

@media (max-width: 992px) {

    .glass-offer-card,
    .glass-offer-card.reverse {
        flex-direction: column;
        align-items: stretch;
    }

    .glass-img,
    .glass-content {
        width: 100%;
    }

    .glass-content {
        margin: -50px 0 0 0 !important;
        padding: 40px;
    }

    .glass-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .offers-hero h1 {
        font-size: 2.5rem;
    }

    .glass-content h2 {
        font-size: 2rem;
    }
}

/* =========================================
   PAGINA DE PAQUETES (DISEÑO ÚNICO)
   ========================================= */
.paquetes-page {
    background-color: #f7f3f0;
    /* Creamy background */
}

.paquetes-hero {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://www.kayak.com.co/rimg/dimg/dynamic/180/2020/11/e12f8343e5e2e4c9c650479992d43b96.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.paquetes-hero h1 {
    font-size: 4.5rem;
}

.paquetes-hero h1 span {
    color: var(--secondary-color);
    font-style: italic;
}

.split-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.split-card {
    display: flex;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.split-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.split-img {
    flex: 1.2;
    height: 500px;
    overflow: hidden;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.split-card:hover .split-img img {
    transform: scale(1.1);
}

.split-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-left: 1px solid #f1f5f9;
}

.p-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.split-info h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.split-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.p-features {
    margin-bottom: 40px;
}

.p-features li {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.p-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.split-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.split-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-split {
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-split:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .split-card {
        flex-direction: column;
    }

    .split-img {
        height: 350px;
    }

    .split-info {
        padding: 40px;
        border-left: none;
        border-top: 1px solid #f1f5f9;
    }
}

@media (max-width: 768px) {
    .paquetes-hero h1 {
        font-size: 3rem;
    }

    .split-info h2 {
        font-size: 2rem;
    }
}

/* =========================================
   PAGINA DE CONTACTO (DISEÑO ÚNICO)
   ========================================= */
.contacto-page {
    background-color: #fcfcfc;
}

.contacto-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    color: white;
    text-align: center;
}

.contacto-grid-unique {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Info Cards */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-premium {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.info-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-card-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card-premium a,
.info-card-premium address {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    font-style: normal;
    font-size: 1.1rem;
}

/* Form Styling */
.form-card-sophisticated {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.form-card-sophisticated h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-card-sophisticated p {
    color: #64748b;
    margin-bottom: 40px;
}

.premium-form .input-group {
    position: relative;
    margin-bottom: 40px;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition);
}

.premium-form label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #94a3b8;
    pointer-events: none;
    transition: 0.3s ease all;
}

.premium-form input:focus~label,
.premium-form input:valid~label,
.premium-form textarea:focus~label,
.premium-form textarea:valid~label,
.premium-form select:focus~label,
.premium-form select:valid~label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.premium-form .bar {
    position: relative;
    display: block;
    width: 100%;
}

.premium-form .bar:before {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: 0.4s ease all;
}

.premium-form input:focus~.bar:before,
.premium-form textarea:focus~.bar:before {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.btn-send {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-send:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Location Section */
.location-view {
    position: relative;
    height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.map-dummy {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(1);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.4);
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contacto-grid-unique {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacto-hero h1 {
        font-size: 2.5rem;
    }

    .form-card-sophisticated {
        padding: 30px;
    }
}