/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== VARIABLES ===== */
:root {
    --bg-main: #020617;
    --bg-secondary: #0f172a;
    --neon-blue: #38bdf8;
    --orange: #f97316;
    --white: #ffffff;
    --light-gray: #cbd5f5;
    --glass: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.15);
}

/* ===== BODY ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: var(--white);
    line-height: 1.6;
    padding-top: 80px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(15px);
    background: rgba(2,6,23,0.8);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.4rem;
    color: var(--neon-blue);
    display: flex;
    gap: 8px;
}

.logo i {
    color: var(--orange);
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--orange);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--orange);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-secondary);
        width: 100%;
        padding: 2rem;
        transition: 0.4s;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero span {
    color: var(--neon-blue);
}

.hero p {
    margin: 15px 0;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTON ===== */
.btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--orange);
    color: white;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn.secondary {
    background: #1e293b;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* ===== SECTION ===== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 30px;
}

/* ===== GRID ===== */
.services-full-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== CARD ===== */
.service-card-full,
.destination-card {
    background: var(--glass);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.service-card-full:hover,
.destination-card:hover {
    transform: translateY(-8px);
}

/* ===== IMAGE ===== */
.service-card-full img,
.destination-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 0.4s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

/* ===== CONTENT ===== */
.service-content,
.destination-card .info {
    padding: 15px;
    text-align: center;
}

.service-content h3 {
    color: var(--neon-blue);
}

.destination-card .info {
    font-weight: 600;
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e293b, #020617);
}

/* ===== FORM ===== */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: white;
}

.form-group input:focus {
    border-color: var(--neon-blue);
}

/* ===== POPUP ===== */
.popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
}

.popup-box {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 350px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 25px;
    background: #020617;
    border-top: 1px solid var(--border);
}