/* =============================================
   DCALIDAD TURISMO — styles.css
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === VARIABLES === */
:root {
    --blue-dark:   #003087;
    --blue-mid:    #0066CC;
    --blue-light:  #4DA6FF;
    --blue-pale:   #EEF4FF;
    --blue-ink:    #001a5e;
    --gold:        #FFD700;
    --gold-dark:   #C9A227;
    --white:       #FFFFFF;
    --off-white:   #F7F9FC;
    --gray:        #6B7280;
    --gray-mid:    #9CA3AF;
    --gray-dark:   #1A2332;
    --green-wa:    #25D366;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --transition:  all 0.35s var(--ease);
    --transition-slow: all 0.55s var(--ease);

    --shadow-sm:   0 2px 12px rgba(0, 48, 135, 0.07);
    --shadow-md:   0 8px 32px rgba(0, 48, 135, 0.12);
    --shadow-lg:   0 20px 60px rgba(0, 48, 135, 0.18);
    --shadow-gold: 0 4px 24px rgba(255, 215, 0, 0.35);

    --radius:      14px;
    --radius-sm:   8px;
    --radius-xs:   6px;
    --max-width:   1200px;
}

/* === CONTAINER === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* === TYPOGRAPHY HELPERS === */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 10px;
}
.section-label.light { color: var(--blue-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-title em   { color: var(--blue-mid); font-style: italic; }
.section-title.light em { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-subtitle {
    margin-top: 16px;
    color: var(--gray);
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.gold-line {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
    margin-top: 6px;
}
.gold-line.centered { margin: 6px auto 0; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-mid);
    color: var(--white);
    border-color: var(--blue-mid);
}
.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 700;
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue-dark);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--blue-dark);
    font-weight: 700;
    border: none;
    font-size: 1rem;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.06);
}

.btn-sm   { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; padding: 15px; }

.required { color: #E53E3E; }


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--blue-dark);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 10px;
    padding: 5px 10px;
    line-height: 0;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}
.nav-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: height 0.35s var(--ease);
}
.navbar.scrolled .nav-logo { background: rgba(255, 255, 255, 0.97); }
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 14px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-link:hover       { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-link.active      { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--blue-dark) !important;
    font-weight: 700;
    padding: 8px 22px;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--white) !important;
    color: var(--blue-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =============================================
   HERO / INICIO
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530521954074-e0a03106c59a?w=1920&q=80');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 26, 94,  0.82) 0%,
        rgba(0, 48, 135, 0.65) 45%,
        rgba(0, 26, 94,  0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 820px;
    width: 100%;
}

/* Hero logo cuadro */
.hero-logo-wrap {
    display: inline-block;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 28px;
    margin-bottom: 20px;
    line-height: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero-logo { height: 90px; width: auto; display: block; max-width: 420px; }

.hero-stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 10px;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.25rem;
    transition: color 0.3s;
    animation: bounce 2.2s ease infinite;
}
.hero-scroll:hover { color: var(--gold); }

/* Hero slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }
.hero-slider-prev:hover,
.hero-slider-next:hover { background: rgba(255, 255, 255, 0.28); }

.hero-slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Hero fade-in animations */
.fade-in { opacity: 0; animation: fadeInUp 0.8s var(--ease) forwards; }
.delay-1  { animation-delay: 0.18s; }
.delay-2  { animation-delay: 0.34s; }
.delay-3  { animation-delay: 0.50s; }
.delay-4  { animation-delay: 0.66s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);  }
    50%       { transform: translateX(-50%) translateY(9px); }
}


/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal.delay-1  { transition-delay: 0.16s; }
.reveal.delay-2  { transition-delay: 0.32s; }


/* =============================================
   QUIÉNES SOMOS
   ============================================= */
.about {
    padding: 110px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title { margin-top: 6px; }

.about-text p {
    color: var(--gray);
    font-size: 1.04rem;
    line-height: 1.82;
    margin-bottom: 14px;
}

.stats-row {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #E5ECF5;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-mid);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 5px;
}

/* Image frame with decorative corner */
.image-frame {
    position: relative;
}
.image-frame::before {
    content: '';
    position: absolute;
    top: -18px; right: -18px;
    width: 55%; height: 55%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue-light) 100%);
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.18;
}
.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    z-index: 2;
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    min-width: 150px;
}
.image-badge i    { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.image-badge span { font-size: 0.82rem; font-weight: 600; line-height: 1.45; }


/* =============================================
   DESTINOS
   ============================================= */
.destinations {
    padding: 110px 0;
    background: var(--off-white);
}

.dest-category-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 0;
}
.destinations-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
/* Centra última fila incompleta en grids de 3 */
.destinations-grid:not(.grid-4) {
    justify-items: stretch;
}
.destinations-grid:not(.grid-4) .dest-card:last-child:nth-child(3n - 1) {
    grid-column: 2;
}

.dest-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.dest-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.dest-card:hover .card-img-wrap img { transform: scale(1.09); }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 26, 94, 0.86) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
    opacity: 0;
    transition: var(--transition);
}
.dest-card:hover .card-overlay { opacity: 1; }

.card-body {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.2;
}
.card-body p {
    font-size: 0.83rem;
    color: var(--gray);
    margin-top: 3px;
}
.card-tag {
    flex-shrink: 0;
    font-size: 0.73rem;
    font-weight: 600;
    background: var(--blue-pale);
    color: var(--blue-mid);
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}


/* =============================================
   GALERÍA
   ============================================= */
.gallery {
    padding: 110px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.gallery-item.tall { grid-row:    span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 135, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }


/* =============================================
   CONTACTO
   ============================================= */
.contact {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-ink) 100%);
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(77, 166, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 70px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}
.contact-info > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    font-size: 1.02rem;
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-icon {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-list a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    transition: color 0.3s;
}
.contact-list a:hover { color: var(--gold); }

.contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
}
.contact-badge i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* Form card */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 42px 40px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gray-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid #E4EAF3;
    border-radius: var(--radius-xs);
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--gray-dark);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

/* Custom select arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 118px; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 14px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer { background: #111827; color: rgba(255, 255, 255, 0.68); }

.footer-top { padding: 72px 0 52px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 52px;
}

.footer-logo-wrap {
    display: inline-block;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 16px;
    line-height: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.footer-logo {
    height: 50px;
    width: auto;
    display: block;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.72;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
}
.footer-stars {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 0.88rem;
}

.footer-links h4,
.footer-destinos h4,
.footer-social-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 600;
}

.footer-links   li,
.footer-destinos li { margin-bottom: 11px; }

.footer-links a,
.footer-destinos a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.28s, padding-left 0.28s;
}
.footer-links a:hover,
.footer-destinos a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    transition: var(--transition);
}
.social-icon:hover                  { transform: translateY(-3px); }
.social-icon.whatsapp:hover         { background: var(--green-wa); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.social-icon.instagram:hover        { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.facebook:hover         { background: #1877F2; }
.social-icon.twitter:hover          { background: #000; }
.social-icon.youtube:hover          { background: #FF0000; }
.social-icon.tiktok:hover           { background: #010101; border: 1px solid #69C9D0; }

.footer-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-hours i { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom i { color: var(--gold); font-size: 0.8rem; }


/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 998;
    width: 62px; height: 62px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    animation: pulse-wa 2.8s ease infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}


/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-image { order: -1; }
    .image-frame img { height: 380px; }
    .image-frame::before { display: none; }

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

    .contact-grid { grid-template-columns: 1fr; gap: 44px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}


/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--blue-dark);
        padding: 84px 28px 36px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        transform: translateY(-110%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-link { padding: 13px 16px; border-radius: var(--radius-sm); }
    .nav-cta  { text-align: center; margin: 8px 0 0; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-bg { background-attachment: scroll; }
    .hero-title { font-size: 2.1rem; }
    .hero-logo  { height: 100px; max-width: 360px; }
    .hero-logo-wrap { padding: 18px 24px; }
    .hero-actions { flex-direction: column; align-items: center; }

    /* Sections */
    .about       { padding: 72px 0; }
    .destinations { padding: 72px 0; }
    .gallery     { padding: 72px 0; }
    .contact     { padding: 72px 0; }

    .stats-row { gap: 20px; flex-wrap: wrap; }
    .stat-number { font-size: 2.1rem; }

    .destinations-grid,
    .destinations-grid.grid-4 { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }

    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top  { padding: 52px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .whatsapp-float { width: 54px; height: 54px; font-size: 1.6rem; bottom: 20px; right: 20px; }
}


/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .section-header { margin-bottom: 40px; }
}


/* =============================================
   DESTINATION CARDS — modal trigger
   ============================================= */
.dest-card { cursor: pointer; }

.card-overlay-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 48, 135, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: background 0.25s;
}
.dest-card:hover .card-overlay-text {
    background: rgba(0, 48, 135, 0.85);
    border-color: var(--gold);
    color: var(--gold);
}


/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 10, 40, 0.78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
    transform: translateY(28px) scale(0.96);
    transition: transform 0.38s var(--ease);
    scrollbar-width: thin;
    scrollbar-color: var(--blue-light) #f1f1f1;
}
.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}
.modal-card::-webkit-scrollbar       { width: 6px; }
.modal-card::-webkit-scrollbar-track { background: #f1f1f1; }
.modal-card::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 10;
    width: 36px; height: 36px;
    background: rgba(0, 0, 0, 0.48);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background 0.25s, transform 0.25s;
}
.modal-close:hover { background: rgba(0, 0, 0, 0.72); transform: rotate(90deg); }

/* Image gallery in modal */
.modal-gallery {
    display: grid;
    grid-template-rows: auto auto;
    gap: 4px;
}
.modal-img-main img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    display: block;
}
.modal-img-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.modal-img-thumbs img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: filter 0.25s;
}
.modal-img-thumbs img:hover { filter: brightness(1.08); }

/* Modal body content */
.modal-body {
    padding: 28px 32px 34px;
}
.modal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--blue-pale);
    color: var(--blue-mid);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 5px;
}
.modal-location {
    font-size: 0.86rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.modal-location::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.modal-desc {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.82;
}
.modal-desc p { margin-bottom: 14px; }
.modal-desc p:last-child { margin-bottom: 0; }

.modal-footer {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #E5ECF5;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive modal */
@media (max-width: 600px) {
    .modal-card { max-height: 95vh; }
    .modal-img-main img { height: 220px; }
    .modal-img-thumbs img { height: 110px; }
    .modal-body { padding: 22px 20px 28px; }
    .modal-body h2 { font-size: 1.6rem; }
    .modal-img-thumbs { grid-template-columns: 1fr 1fr; }
}


/* =============================================
   GALLERY LIGHTBOX
   ============================================= */
.gallery-item { cursor: pointer; }

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }

.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}
#lightboxImg {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.22s var(--ease);
    display: block;
}
#lightboxImg.loading { opacity: 0.2; }

.lightbox-close {
    position: fixed;
    top: 18px; right: 18px;
    z-index: 10;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-prev:hover { background: rgba(255,255,255,0.26); transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { background: rgba(255,255,255,0.26); transform: translateY(-50%) translateX(2px); }

.lightbox-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 0.83rem;
    letter-spacing: 0.1em;
    pointer-events: none;
    background: rgba(0,0,0,0.4);
    padding: 5px 14px;
    border-radius: 50px;
}

@media (max-width: 600px) {
    .lightbox-overlay { padding: 60px 54px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
