/* =====================
   GLOBAL
===================== */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}
/* =====================
   NAVBAR
===================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f1f;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
}

.nav-logo-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #dc2626;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.25);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: white;
}

.nav-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 4px;
}

/* Button */

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: #dc2626;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}


/* ===============================
   HERO SECTION - FINAL VERSION
================================= */

/* ================================
   HERO SECTION
================================ */

/* Main Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================
   SLIDER
====================== */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* ======================
   OVERLAY
====================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.9) 100%
    );
    z-index: 1;
}

/* ======================
   CONTENT
====================== */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

/* ======================
   MAIN TITLE
====================== */

.hero-main {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* ======================
   EXPERIENCE BLOCK
====================== */

.hero-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

/* EXPERIENCE THE */
.hero-line-small {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ef4444;
    opacity: 0.95;
}

/* EXTRAORDINARY */
.hero-line-big {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ef4444, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(239,68,68,0.3);
}

/* ======================
   TAGLINE
====================== */

.hero-tagline {
    font-size: 16px;
    font-weight: 300;
    color: #e5e7eb;
    margin-bottom: 45px;
    letter-spacing: 1px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* ======================
   BUTTONS
====================== */

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #dc2626;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220,38,38,0.4);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
}

/* ======================
   ANIMATION
====================== */

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

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1024px) {
    .hero-main {
        font-size: 56px;
    }

    .hero-line-big {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .hero-main {
        font-size: 38px;
    }

    .hero-line-small {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-line-big {
        font-size: 26px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}


/* =====================
   PACKAGE CARDS
===================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.package-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

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

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card-content {
    padding: 20px;
}

.package-card h3 {
    margin-bottom: 10px;
}

.package-card p {
    color: #999;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid #111;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-brand h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.footer-brand .dot {
    color: #dc2626;
}

.footer-brand p {
    color: #777;
    line-height: 1.6;
    max-width: 320px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #777;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: #dc2626;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #111;
    color: #555;
    font-size: 13px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-icon {
    width: 55px;
    height: 55px;
    background: #000;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}



/* ======================
   SECTION BASE
====================== */

.section {
    padding: 120px 0;
}

.section-dark {
    background: #0a0a0a;
}

.section-black {
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.section-subtitle {
    margin-top: 15px;
    color: #777;
}

.accent {
    color: #dc2626;
}

/* ======================
   GRID SYSTEM
====================== */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ======================
   CARD
====================== */

.card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

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

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin-bottom: 10px;
}

.muted {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.btn-primary {
    background: #dc2626;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}


.btn-card {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background: white;
    color: black;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-card:hover {
    background: #dc2626;
    color: white;
}

/* ======================
   IMAGE CARD
====================== */

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.image-overlay h3 {
    color: white;
}

/* ======================
   FEATURE CARD
====================== */

.feature-card {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.feature-card:hover {
    border: 1px solid #dc2626;
}

/* ======================
   REVIEW CARD
====================== */

.review-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
}

.stars {
    color: #facc15;
    margin: 10px 0;
}


/* =========================
   BOOKING MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0f0f0f;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalFade 0.4s ease;
    border: 1px solid #1f1f1f;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

/* Close Button */

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-close:hover {
    color: #dc2626;
    transform: rotate(90deg);
}

/* Form */

.modal form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal input {
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.modal input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.2);
}

/* Full Width Button */

.full-width {
    width: 100%;
}
