/* ===== RESET & BASE ===== */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0d4a3a;
    --primary-light: #1a7a5a;
    --primary-lighter: #2a9d7a;
    --gold: #d4a84b;
    --gold-light: #f0d080;
    --gold-dark: #b89030;
    --cream: #f5efe0;
    --cream-light: #fffefc;
    --bg: #faf8f5;
    --bg-dark: #0a1f18;
    --text: #1a1a2e;
    --text-light: #f5f0e8;
    --muted: #6b6b6b;
    --muted-light: #959595;
    --border: #c8c0b0;
    --border-light: #e4ded0;
    --error: #e74c3c;
    --success: #2ecc71;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 2px 8px rgba(10, 46, 42, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 46, 42, 0.10);
    --shadow-lg: 0 20px 60px rgba(10, 46, 42, 0.15);
    --shadow-gold: 0 8px 30px rgba(200, 164, 92, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}
body.nav-open { overflow: hidden; }
body.loaded { opacity: 1; }
::selection { background: var(--gold); color: var(--primary); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; text-decoration: none; transition: color var(--transition); touch-action: manipulation; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
ul { list-style: none; }

.gold { color: var(--gold); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== LOADER ===== */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    animation: hideLoader 3s ease forwards;
    pointer-events: none;
}
@keyframes hideLoader {
    0%, 80% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}
.loader-content { text-align: center; }
.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem; font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212,168,75,0.3);
}
.loader-bar {
    width: 200px; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px; overflow: hidden;
}
.loader-bar span {
    display: block; height: 100%;
    background: var(--gold);
    border-radius: 10px;
    animation: loaderAnim 1.2s ease-in-out forwards;
}
@keyframes loaderAnim {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] { transition: opacity 0.8s ease, transform 0.8s ease; }
html.js [data-reveal]:not(.revealed) { opacity: 0; transform: translateY(40px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: transparent;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(13,74,58,0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212,168,75,0.15);
}
.site-header.hidden { transform: translateY(-100%); }

.navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; transition: height var(--transition);
}
.scrolled .navbar { height: 64px; }

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 700;
    color: var(--text-light);
    display: flex; align-items: center; gap: 0.5rem;
}
.logo-icon {
    width: 36px; height: 36px;
    background: var(--gold); color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: rotate(-45deg); }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link, .nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(245,240,232,0.8);
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
}
.nav-link::before {
    content: ''; position: absolute; bottom: 4px; left: 1.25rem; right: 1.25rem;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover::before { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-light); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary); font-weight: 700;
    margin-left: 1rem;
    box-shadow: 0 2px 10px rgba(212,168,75,0.3);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,168,75,0.45); }

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.5rem; z-index: 100;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-light);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: 100dvh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-slides {
    position: absolute; inset: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-color: #0a2e2a;
    opacity: 0; transition: opacity 1.5s ease;
    transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide.active ~ .hero-slide { opacity: 0; }
@media (max-width: 768px) {
    .hero-slide { background-position: center 30%; }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,74,58,0.92) 0%, rgba(10,31,24,0.65) 50%, rgba(13,74,58,0.3) 100%);
    z-index: 1;
}
.hero-particles {
    position: absolute; inset: 0; z-index: 1;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 4rem 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); background: rgba(212,168,75,0.15);
    border: 1px solid rgba(212,168,75,0.35);
    padding: 0.5rem 1.25rem; border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(212,168,75,0.1);
}
.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700; color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.05;
}
.hero-accent {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(200,164,92,0.2);
    position: relative;
    display: inline-block;
}
.hero-accent::after {
    content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
    height: 4px; background: var(--gold); border-radius: 2px;
    opacity: 0.4;
}
.hero-content p {
    font-size: 1.1rem; color: rgba(245,240,232,0.75);
    margin-bottom: 2.5rem; max-width: 540px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3.5rem; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 2px solid transparent; border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212,168,75,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,168,75,0.5);
}
.btn-outline {
    background: transparent; color: var(--text-light);
    border-color: rgba(245,240,232,0.3);
}
.btn-outline:hover {
    border-color: var(--gold); color: var(--gold-light);
    transform: translateY(-3px);
}
.btn-large { padding: 1.125rem 3rem; font-size: 0.9rem; }

.hero-stats { display: flex; gap: 3rem; }
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem; font-weight: 700;
    color: var(--gold); line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.75rem; color: rgba(245,240,232,0.6);
    letter-spacing: 1px; text-transform: uppercase;
}
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; color: rgba(245,240,232,0.5);
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; position: relative; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-dark .section-header h2 { color: var(--text-light); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary);
}
.section-header p {
    max-width: 580px; margin: 0 auto;
    color: var(--muted); font-size: 1.05rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--bounce), box-shadow var(--transition);
    cursor: pointer;
    display: flex; flex-direction: column;
}
.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(13,74,58,0.18);
}
.card-media {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
}
.card-media .responsive-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity var(--transition);
}
.destination-card:hover .responsive-img {
    transform: scale(1.08);
}
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,46,42,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity var(--transition);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1.5rem;
}
.destination-card:hover .card-overlay { opacity: 1; }
.card-cta {
    color: var(--text-light); font-size: 0.8rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid var(--gold);
    transition: all var(--transition);
}
.card-cta:hover { color: var(--gold-light); gap: 0.75rem; }
.destination-card figcaption {
    padding: 1.5rem;
    background: var(--cream);
    flex: 1;
    display: flex; flex-direction: column;
    transition: background-color var(--transition);
}
.destination-card:hover figcaption { background: var(--primary); }
.card-category {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #7a5510;
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.35rem;
}
.destination-card figcaption h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}
.destination-card:hover figcaption h3 { color: var(--gold-light); }
.destination-card figcaption p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    transition: color var(--transition);
}
.destination-card:hover figcaption p { color: rgba(245,240,232,0.8); }
.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    transition: border-color var(--transition);
}
.destination-card:hover .card-footer { border-color: rgba(200,164,92,0.2); }
.card-rating { color: #b89030; font-size: 0.75rem; letter-spacing: 2px; }
.card-price {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700;
    color: var(--primary);
    transition: color var(--transition);
}
.destination-card:hover .card-price { color: var(--gold); }

/* ===== TESTIMONIAL ===== */
.section-testimonial {
    background: linear-gradient(135deg, #0d4a3a 0%, #0a1f18 40%, #1a7a5a 100%);
    padding: 5rem 0;
}
.testimonial-content {
    max-width: 720px; margin: 0 auto; text-align: center;
    color: var(--text-light);
}
.testimonial-quote {
    font-size: 4rem; color: var(--gold-light); opacity: 0.6;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212,168,75,0.2);
}
.testimonial-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-style: italic;
    line-height: 1.6; color: var(--text-light);
    margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-author img {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--gold); }
.testimonial-author span { font-size: 0.8rem; color: rgba(245,240,232,0.5); }

/* ===== TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.packages-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.92rem; background: var(--cream-light);
    color: var(--text);
}
.packages-table caption {
    font-size: 0.8rem; color: var(--muted);
    text-align: left; margin-bottom: 0.75rem;
    padding: 0 0.25rem;
    caption-side: bottom;
}
.packages-table thead { background: var(--primary); }
.packages-table th {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-light);
    padding: 1.25rem 1rem;
    text-align: left; white-space: nowrap;
}
.packages-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.packages-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.packages-table td {
    padding: 1.125rem 1rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
.packages-table tbody tr { transition: background-color 0.3s ease; }
.packages-table tbody tr:nth-child(even) { background: rgba(200,164,92,0.04); }
.packages-table tbody tr:hover {
    background: rgba(200,164,92,0.10);
    cursor: pointer;
}
.packages-table td[scope="row"] {
    font-family: var(--font-heading);
    font-weight: 600; color: var(--primary);
    font-size: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.package-icon {
    width: 36px; height: 36px;
    background: rgba(200,164,92,0.1);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.package-badge {
    font-family: var(--font-body);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    flex-shrink: 0;
}
.package-badge.popular { background: rgba(200,164,92,0.2); color: #5a3d08; font-weight: 800; }
.package-badge.new { background: rgba(39,174,96,0.2); color: #1a6b3a; font-weight: 800; }
.package-badge.vip { background: var(--gold); color: #0a1f18; font-weight: 800; }
.stars { color: #b89030; font-size: 0.85rem; letter-spacing: 2px; white-space: nowrap; }
.packages-table .price {
    font-family: var(--font-heading);
    font-weight: 700; color: #5a3d08;
    font-size: 1.15rem;
}
.packages-table tfoot td {
    font-size: 0.78rem; color: var(--muted);
    font-style: italic;
    padding: 0.75rem 1rem;
    border-bottom: none;
    background: var(--cream);
}

/* ===== FORM ===== */
.form-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2.5rem;
    align-items: start;
}
.form-sidebar {
    background: linear-gradient(135deg, #0d4a3a 0%, #0a1f18 40%, #1a7a5a 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: var(--text-light);
    position: sticky; top: 100px;
    box-shadow: 0 8px 35px rgba(13,74,58,0.3);
}
.form-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}
.form-sidebar ul { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.form-sidebar ul li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem;
}
.form-sidebar ul li i { color: var(--gold); font-size: 1rem; }
.sidebar-contact p { font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-bottom: 0.25rem; }
.sidebar-contact i { color: var(--gold); width: 1.2rem; }

.booking-form {
    background: var(--cream-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
    width: 1rem;
}

.input-wrapper {
    position: relative;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    font-family: var(--font-body);
    font-size: 0.95rem; color: var(--text);
    padding: 0.875rem 1rem;
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,164,92,0.1);
}
.input-wrapper input:user-invalid { border-color: var(--error); }
.input-wrapper input:user-valid { border-color: var(--success); }

.input-focus {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 0 0 8px 8px;
}
.input-wrapper input:focus ~ .input-focus,
.input-wrapper select:focus ~ .input-focus,
.input-wrapper textarea:focus ~ .input-focus { width: 100%; }

.form-hint {
    font-size: 0.72rem; color: var(--muted);
    margin-top: 0.35rem;
}

/* Range slider */
.range-wrapper {
    padding-top: 0.5rem;
}
.form-group input[type="range"] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px;
    padding: 0;
    border: none;
    background: linear-gradient(to right, var(--gold) var(--range-pct, 50%), var(--border) var(--range-pct, 50%));
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}
.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 22px; height: 22px;
    background: var(--gold);
    border: 3px solid var(--cream-light);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200,164,92,0.4);
    transition: transform 0.2s ease;
}
.form-group input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.form-group input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px;
    background: var(--gold);
    border: 3px solid var(--cream-light);
    border-radius: 50%;
    cursor: pointer;
}
.range-labels {
    display: flex; justify-content: space-between;
    font-size: 0.72rem; color: var(--muted);
    margin-top: 0.5rem;
}

/* Checkbox */
.checkbox-label {
    display: flex !important;
    align-items: center; gap: 0.75rem;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    color: var(--text) !important;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkbox-custom {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.checkbox-label input:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}
.checkbox-label input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--primary);
}
.link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
.link:hover { color: var(--gold); }

.form-footer { margin-top: 2rem; text-align: center; }
.form-footer .btn i { transition: transform var(--transition); }
.form-footer .btn:hover i { transform: translateX(4px); }

/* ===== CTA SECTION ===== */
.section-cta { padding: 0; margin-top: 4rem; }
.cta-box {
    background: linear-gradient(135deg, #0d4a3a 0%, #0a1f18 40%, #1a7a5a 100%);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,168,75,0.1) 0%, transparent 50%);
}
.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.cta-box p {
    max-width: 560px; margin: 0 auto 2rem;
    color: rgba(245,240,232,0.7);
    font-size: 1.05rem;
    position: relative;
}
.cta-box .btn { position: relative; }

/* ===== FOOTER ===== */
.site-footer {
    background: #0a1f18;
    color: rgba(245,240,232,0.7);
    padding: 5rem 0 0;
    margin-top: 4rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(200,164,92,0.08);
}
.footer-brand .logo { display: inline-flex; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(200,164,92,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,240,232,0.5);
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(245,240,232,0.5); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact address { font-style: normal; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-contact i { color: var(--gold); width: 1rem; }
.footer-contact a { color: rgba(245,240,232,0.5); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: rgba(245,240,232,0.3);
}
.footer-note { font-style: italic; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(212,168,75,0.4);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 35px rgba(212,168,75,0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .form-container { grid-template-columns: 1fr; }
    .form-sidebar { position: static; }
    .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .section-header h2 { font-size: 1.7rem; }
    .section-header { margin-bottom: 2.5rem; }

    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        flex-direction: column; justify-content: center; gap: 1rem;
        background: rgba(10,46,42,0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 99;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-link, .nav-cta { font-size: 1rem; padding: 0.75rem 1.5rem; }
    .nav-cta { margin-left: 0; text-align: center; }
    .nav-link::before { display: none; }
    .nav-toggle { display: block; }

    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .stat-number { font-size: 1.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .destination-card figcaption { padding: 1.25rem; }

    .table-wrapper { margin: 0 -1.5rem; border-radius: 0; }
    .packages-table th,
    .packages-table td { padding: 0.875rem 0.75rem; font-size: 0.8rem; }
    .packages-table td[scope="row"] { font-size: 0.88rem; flex-wrap: wrap; }
    .packages-table .price { font-size: 1rem; }
    .packages-table th:first-child { border-radius: 0; }
    .packages-table th:last-child { border-radius: 0; }

    .form-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .booking-form { padding: 1.5rem; }
    .form-sidebar { padding: 1.5rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 1.5rem; }

    .testimonial-content blockquote { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn { padding: 0.875rem 1.75rem; font-size: 0.8rem; }
    .btn-large { padding: 0.875rem 2rem; }
    .card-media { aspect-ratio: 3/2; }
    .packages-table { font-size: 0.75rem; }
    .packages-table th,
    .packages-table td { padding: 0.65rem 0.5rem; }
    .section-header h2 { font-size: 1.4rem; }
    .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; }
}

/* ===== TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
    .destination-card:hover, .card-cta:hover,
    .btn-primary:hover, .btn-outline:hover,
    .btn:hover { transform: none !important; }
    .card-overlay { display: none; }
    .destination-card:hover figcaption { background: var(--cream); }
    .destination-card:hover figcaption h3 { color: var(--primary); }
    .destination-card:hover figcaption p { color: var(--muted); }
    .destination-card:hover .card-footer { border-color: var(--border-light); }
    .destination-card:hover .card-price { color: var(--primary); }
}

/* ===== HOSTING ADS FALLBACK ===== */
/* Somee free hosting injects ads; prevent them from breaking the layout */
body > iframe, body > div:not([class]):not([id]):empty { display: none !important; }

/* ===== PRINT ===== */
@media print {
    .site-header { position: static; background: var(--bg); }
    .hero { min-height: auto; padding: 4rem 0; }
    .hero-overlay, .hero-slides, .hero-scroll, .back-to-top, .nav-menu .nav-cta { display: none; }
    .destination-card:hover { transform: none; }
    .card-overlay { display: none; }
    .destination-card:hover figcaption { background: var(--cream); }
    .destination-card:hover figcaption h3 { color: var(--primary); }
    .destination-card:hover figcaption p { color: var(--muted); }
    .destination-card:hover .card-price { color: var(--primary); }
    .destination-card:hover .card-footer { border-color: var(--border-light); }
}
