:root {
    --primary: #FF7A00;
    --primary-dark: #E66E00;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --footer-dark: #1E272E;
    --transition: all 0.3s ease;
    
    color-scheme: light only;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(30, 39, 46, 0.8), rgba(30, 39, 46, 0.8)), url('Jubilados.jpg');
    background-size: cover;
    background-position: center;
    padding: 220px 0 100px; /* Increased padding-top to prevent overlaps */
    text-align: center;
    color: var(--white);
    min-height: 400px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

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

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
    /* Adjust based on navbar height */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    pointer-events: none;
    /* Optional: prevents right-click specifically on images if contextmenu isn't enough */
}

/* Ensure interactive elements are still selectable/clickable */
a,
button,
input,
textarea,
select {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    pointer-events: auto;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar.scrolled .logo a,
.navbar.scrolled .logo span {
    color: var(--text-dark) !important;
}

.navbar.scrolled .logo span {
    color: var(--primary) !important;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

/* Hero */
.hero {
    height: 90vh; /* Reduced from 100vh to avoid feeling oversized */
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 120px 0; /* Increased for better visual balance with titled content */
}

/* Why Us Section */
.why-us {
    background: #f4f6f8;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#por-que {
    padding-top: 20px;
}

#paquetes {
    padding-top: 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

/* Feature Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

.glass-btn {
    background: rgba(255, 122, 0, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 0, 0.4) !important;
    color: var(--white) !important;
    transition: var(--transition);
}

.glass-btn:hover {
    background: rgba(255, 122, 0, 0.3) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

/* Redesigned Student Immersive Section */
.student-immersive {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    background: #1e272e;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.student-immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-immersive.catalog-active .student-immersive-bg img {
    transform: scale(1.1) translateY(-20px);
}

.student-immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    /* Slight overflow to ensure full coverage */
    background: linear-gradient(180deg, rgba(30, 39, 46, 0.8) 0%, rgba(30, 39, 46, 0.95) 100%);
    z-index: -1;
    transition: background 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-immersive.catalog-active .student-immersive-overlay {
    background: rgba(30, 39, 46, 0.7);
    /* Further reduced to guarantee visibility */
}

.student-immersive-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-header-wrapper {
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.student-immersive.catalog-active .student-header-wrapper {
    max-height: 0;
    opacity: 0;
    transform: translateY(-50px);
    margin-bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.student-text-side {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.student-actions {
    margin-top: 1rem;
    z-index: 10;
}

.tagline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 3rem;
    max-width: 600px;
}

/* Stats Cards */
.stats-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    flex: 1;
    max-width: 220px;
    transition: var(--transition);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: inherit;
    border: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Collapsible Destinos Grid */
.student-toggle-wrapper {
    margin-top: 4rem;
    width: 100%;
}

.student-grid-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.5s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.8s ease;
}

.student-grid-collapsed.open {
    max-height: 2000px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    /* Allow to fill space for better centering */
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    /* More balanced padding */
    width: 100%;
}

.student-immersive .student-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.student-immersive .student-card:hover {
    transform: translateY(-10px);
}

.student-immersive .student-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.student-immersive .student-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.student-immersive .student-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95) 70%);
    color: var(--white);
    transform: translateY(100px);
    /* Ocultamos la descripción por defecto */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.student-immersive .student-card:hover .student-info {
    transform: translateY(0);
}

.student-immersive .student-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.student-immersive .student-info p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.student-immersive .student-card:hover .student-info p {
    opacity: 1;
}

.student-immersive .btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.student-immersive .btn-small:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .student-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .student-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-page {
    padding-top: 140px;
    /* Separar más el título de la navbar */
}

.about-page .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-page .section-title::after {
    left: 0;
    transform: none;
}

.location-info {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    /* Slightly softer than pure black */
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.location-info i {
    color: #000;
    font-size: 1.1rem;
}



/* Contact */
.contact {
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item h4 {
    margin-bottom: 0.2rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--footer-dark);
    color: var(--white);
    padding: 100px 0;
}

/* ==========================================================================
   PREMIUM PAGES LAYOUT (Jubilados, XV)
   Hardened styles to prevent layout regressions. 
   ========================================================================== */

.retirees {
    background: var(--bg-light);
    padding: 120px 0;
}

.retirees-container {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 2rem;
}

.retiree-card {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    min-height: 550px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.retiree-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.retiree-card.alternate {
    flex-direction: row-reverse !important;
}

.retiree-img {
    flex: 1.3;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.retiree-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: auto;
}

.retiree-card:hover .retiree-img img {
    transform: scale(1.08);
}

.retiree-info {
    flex: 1;
    padding: 5rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.info-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
    width: 100%; /* Ensure it fills container */
}

.retiree-card.active .info-content {
    opacity: 1;
    transform: translateY(0);
}

.retiree-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.trip-duration {
    display: inline-block;
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
}

.trip-details {
    list-style: none;
    margin-bottom: 2.5rem;
}

.trip-details li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trip-details i {
    color: var(--primary);
    width: 24px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.trip-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Responsiveness for Premium Pages */
@media (max-width: 1200px) {
    .retiree-info {
        padding: 3.5rem;
    }
}

@media (max-width: 992px) {
    .retiree-card, 
    .retiree-card.alternate {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .retiree-img {
        height: 350px;
    }
    
    .retiree-info {
        padding: 3rem 2rem;
    }
    
    .retiree-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .retirees-container {
        gap: 4rem;
    }
    
    .retiree-img {
        height: 280px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.brand-col span {
    color: var(--primary);
}

.brand-col p {
    color: #a4b0be;
    max-width: 350px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-col i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.footer-logos-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-logo {
    max-width: 120px;
    /* Reduced slightly to fit two logos better */
    height: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(0) invert(1);
    /* Ensure they are white/visible on dark bg if needed */
}

.footer-logo.rnav {
    max-width: 140px;
    /* RNAV is wider text, adjusting for visual balance */
}

.footer-logo:hover {
    transform: scale(1.05);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a4b0be;
}

/* Floating WA */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none !important;
    transition: all 0.3s ease;
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1.5s ease;
}

.fade-in-delayed {
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Student Toggle */
.extra-destination {
    display: none;
}

.extra-destination.show {
    display: block;
    animation: fadeIn 0.8s ease;
}

.student-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 4rem;
    border-radius: 30px;
    width: 90%;
    max-width: 1400px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: var(--text-light);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

/* Scroll fix when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile responsive fixes for modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        margin: 10% auto;
    }

    .about-container {
        gap: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem; /* Reduced from 2rem to give more content space */
    }

    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0; /* Slightly tighter vertical spacing for smaller screens */
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem; /* Adjusted for better wrapping */
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
    }

    .footer-logos-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem; /* Even more space for content on very narrow screens */
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .packages-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

/* --- Destination Pages Specific Styles --- */

.destination-hero {
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.destination-hero .container {
    position: relative;
    z-index: 2;
}

.destination-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.destination-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.destination-hero .btn {
    margin-top: 1rem;
}

/* Packages Tabs Section */
.packages-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

.package-details-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.package-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price-badge {
    display: inline-block;
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-section h4 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.detail-list {
    list-style: none;
}





.activities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.activity-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #eee;
}

.activity-tag i {
    color: var(--primary);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
    
    .package-details-card {
        padding: 2rem;
    }
}

/* Premium Transport Section */
.premium-transport {
    position: relative;
    padding: 0;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.carousel-slide.active img {
    transform: scale(1);
}

.slide-blur-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: 1;
    opacity: 0.5;
}

.transport-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #FFD700;
    width: 30px;
    border-radius: 6px;
}

/* Content */
.transport-content-wrapper {
    position: relative;
    z-index: 5;
    padding: 60px 40px;
    max-width: 900px;
    text-align: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    margin: 40px auto;
}

.gold-accent-text {
    color: #FFD700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.premium-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.premium-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.transport-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.premium-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.premium-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

.premium-experience-block {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    text-align: left;
}

.premium-experience-block h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.transport-cta-group {
    margin-top: 20px;
}

.cta-prompt {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

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

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: #000 !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 50px;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 50px;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 2rem;
    }
    
    .transport-content-wrapper {
        padding: 40px 20px;
        margin: 20px;
        backdrop-filter: blur(5px);
    }
    
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none; 
    }
}

/* Quick Info Bar */
.quick-info-bar {
    background: var(--white);
    padding: 2rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.quick-info-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    font-size: 2rem;
    color: var(--primary);
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
}

.quick-info-item strong {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.quick-info-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .quick-info-grid {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
}

/* Quick Info Bar */
.quick-info-bar {
    background: var(--white);
    padding: 2rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.quick-info-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    font-size: 2rem;
    color: var(--primary);
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
}

.quick-info-item strong {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.quick-info-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
@media (max-width: 768px) {
    .quick-info-grid {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
}

/* --- Packages Grid Layout --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}
/* Fixes added */
.modal.show { display: block; }
.fas, .fab, .far { font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important; }

.modal.show { display: flex !important; align-items: center; justify-content: center; }
.fas, .fa-solid { font-weight: 900 !important; font-family:"Font Awesome 6 Free" !important; }
.fab, .fa-brands { font-weight: 400 !important; font-family:"Font Awesome 6 Brands" !important; }
/* --- Premium Transport Modal --- */
#transport-modal .modal-content {
    padding: 0;
    max-width: 900px;
    background: #1a1a1a;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255,122,0,0.3);
}
#transport-modal .close-modal {
    color: #fff;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    top: 15px;
    right: 15px;
}
#transport-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#transport-modal .modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}
#transport-modal .modal-text-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#transport-modal .modal-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}
#transport-modal .modal-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}
#transport-modal .modal-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}
#transport-modal .modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}
#transport-modal .modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #eee;
}
#transport-modal .modal-feature i {
    color: var(--primary);
}
@media (max-width: 768px) {
    #transport-modal .modal-body { grid-template-columns: 1fr; }
    #transport-modal .modal-img-col { height: 250px; }
    #transport-modal .modal-text-col { padding: 25px; }
}

/* --- SVG Icon Fixes --- */
svg { fill: currentColor; }
.info-item svg { color: var(--primary); font-size: 1.5rem; margin-right: 15px; }
.footer-col ul li svg { color: var(--primary); margin-right: 10px; width: 1.2em; height: 1.2em; vertical-align: middle; }
.btn svg { margin-right: 8px; font-size: 1.2rem; vertical-align: -0.125em; }
.whatsapp-float { display: flex !important; align-items: center !important; justify-content: center !important; }
.whatsapp-float svg { width: 35px; height: 35px; color: #fff; }


.info-item { align-items: center !important; }


svg { width: 1em; height: 1em; vertical-align: -0.125em; }


/* --- Indentation and Mobile Modal Fixes --- */
#transport-modal .close-modal { position: absolute !important; }

@media (max-width: 768px) { #transport-modal .modal-img-col { min-height: 200px !important; } }






/* --- Masonry Fix for Itinerary Grid --- */
.itinerary-grid {
    display: block !important;
    column-count: 2;
    column-gap: 2rem;
}
.itinerary-grid > .detail-section {
    break-inside: avoid !important;
    margin-bottom: 2rem;
    display: inline-block;
    width: 100%;
}
@media (max-width: 768px) {
    .itinerary-grid {
        column-count: 1;
    }
}

