/* ==========================================================================
   Rinatu Viajes y Turismo - Core Design System & CSS Styles
   ========================================================================== */

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

/* --- Custom Properties / Design Tokens --- */
:root {
    /* Color Palette */
    --primary-teal: #086972;
    --primary-teal-dark: #014046;
    --primary-teal-light: #17b978;
    --secondary-gold: #cfa15a;
    --secondary-gold-light: #e6c587;
    --coral-accent: #ff6f5e;
    --coral-accent-hover: #e05342;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #128c7e;
    
    /* Neutral Palette */
    --dark-blue: #071e22;
    --dark-blue-light: #122c30;
    --light-bg: #f5f9fa;
    --white: #ffffff;
    --gray-100: #f8fafd;
    --gray-200: #eef3f5;
    --gray-400: #b0c2c6;
    --gray-600: #627b80;
    --gray-800: #2c3e41;

    /* Semantic Colors */
    --text-main: var(--gray-800);
    --text-muted: var(--gray-600);
    --text-light: var(--white);
    
    /* Layout & Spacing */
    --header-height: 80px;
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    /* Shadow & Glass Effects */
    --shadow-sm: 0 4px 6px -1px rgba(7, 30, 34, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(7, 30, 34, 0.08), 0 4px 6px -2px rgba(7, 30, 34, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(7, 30, 34, 0.1), 0 10px 10px -5px rgba(7, 30, 34, 0.04);
    --shadow-glow: 0 0 20px rgba(8, 105, 114, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--secondary-gold));
    border-radius: var(--border-radius-full);
}

h3 {
    font-size: 1.5rem;
}

/* --- Utility Components --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
    background-color: #b38543;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-coral:hover {
    background-color: var(--coral-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 94, 0.3);
}

/* Glassmorphism class */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    height: 70px;
    background: rgba(7, 30, 34, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo Image */
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
    background-color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .logo-img {
    height: 50px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
    color: var(--secondary-gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-gold);
    transition: var(--transition-normal);
}

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

.nav-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: var(--dark-blue);
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 30, 34, 0.7) 0%, rgba(7, 30, 34, 0.4) 60%, rgba(7, 30, 34, 0.9) 100%);
    z-index: 2;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-top: var(--header-height);
}

.hero-tag {
    display: inline-block;
    background-color: rgba(207, 161, 90, 0.2);
    border: 1px solid var(--secondary-gold);
    color: var(--secondary-gold-light);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span {
    color: var(--secondary-gold-light);
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Slide Indicator */
.hero-dots {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.hero-dot.active {
    background-color: var(--secondary-gold);
    transform: scale(1.2);
    border-color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */
.destinations {
    background-color: var(--light-bg);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

/* Destination Card */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(8, 105, 114, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(8, 105, 114, 0.15);
}

/* Banner / Badge */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background-color: var(--coral-accent);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-badge.gold {
    background-color: var(--secondary-gold);
}

.card-badge.blue {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

/* Card Image Area */
.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(7, 30, 34, 0.8) 0%, rgba(7, 30, 34, 0.1) 40%, rgba(7, 30, 34, 0) 100%);
    z-index: 2;
}

.card-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--secondary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    z-index: 10;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.card-price-tag span {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    opacity: 0.9;
}

/* Card Body */
.card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.4rem;
    font-family: 'Outfit', sans-serif;
    color: var(--dark-blue);
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.25rem;
}

.card-spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-800);
}

.card-spec-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-teal);
    flex-shrink: 0;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
}

/* ==========================================================================
   Trust Pillars Section (Why Choose Us)
   ========================================================================== */
.pillars {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    background-color: var(--gray-100);
    border: 1px solid transparent;
}

.pillar-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-gold-light);
}

.pillar-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(8, 105, 114, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon-box {
    background-color: var(--primary-teal);
}

.pillar-icon-box svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-teal);
    transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon-box svg {
    fill: var(--white);
    transform: rotateY(180deg);
}

.pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

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

/* ==========================================================================
   Inquiry Form Section
   ========================================================================== */
.contact {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(8, 105, 114, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    text-align: left;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--gray-400);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-item:hover .contact-icon {
    background-color: var(--secondary-gold);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-gold);
    transition: var(--transition-fast);
}

.contact-item:hover .contact-icon svg {
    fill: var(--white);
}

.contact-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text a, .contact-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-text a:hover {
    color: var(--secondary-gold-light);
}

/* Contact Form */
.contact-form-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-200);
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-select option {
    background-color: var(--dark-blue-light);
    color: var(--white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--secondary-gold);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(207, 161, 90, 0.15);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background-color: #041012;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-size: 0.9rem;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-legal-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.footer-legal-badge strong {
    color: var(--secondary-gold);
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: var(--gray-400);
}

.footer-link:hover {
    color: var(--secondary-gold-light);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-600);
    font-size: 0.8rem;
}

.footer-copy {
    color: var(--gray-400);
}

.footer-meta-links {
    display: flex;
    gap: 1.5rem;
}

.footer-meta-links a:hover {
    color: var(--secondary-gold-light);
}

/* ==========================================================================
   Modals (Package Details Expandable Dialog)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 34, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background-color: var(--white);
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transform: translateY(40px);
    transition: transform var(--transition-normal);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(7, 30, 34, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--coral-accent);
}

.modal-close svg {
    width: 16px;
    height: 16px;
    fill: var(--dark-blue);
    transition: var(--transition-fast);
}

.modal-close:hover svg {
    fill: var(--white);
}

.modal-header-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 2.5rem;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-teal);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-title {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.modal-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.modal-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.modal-section-title svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-teal);
}

/* Feature/Include list */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.modal-list-item svg {
    width: 18px;
    height: 18px;
    fill: #17b978; /* green check */
    margin-top: 2px;
    flex-shrink: 0;
}

.modal-description-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-hotel-card {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-gold);
}

.modal-hotel-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-hotel-stars {
    display: flex;
    gap: 2px;
}

.modal-hotel-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary-gold);
}

.modal-hotel-regime {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-teal);
    background-color: rgba(8, 105, 114, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
}

.modal-hotel-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Fixture list for Mundial pack */
.fixture-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fixture-card {
    background-color: #f0f6f7;
    border: 1px solid rgba(8, 105, 114, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fixture-match {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1rem;
}

.fixture-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fixture-detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fixture-detail-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-teal);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.modal-actions .btn {
    flex: 1;
}

/* ==========================================================================
   Floating Widgets
   ========================================================================== */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-normal);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-bubble:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .contact .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
    }
    .footer-grid > :last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-body {
        padding: 1.75rem;
    }
    .modal-actions {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid > :last-child {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas .btn {
        width: 100%;
    }
    .contact-form-box {
        padding: 1.5rem;
    }
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-bubble svg {
        width: 26px;
        height: 26px;
    }
}
