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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #050509;
    color: #f5f5f7;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #7b5cff 0, #050509 45%, #050509 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
}

.logo-text {
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    font-size: 0.95rem;
}

.nav-links a {
    opacity: 0.9;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: #a855ff;
    transition: width 0.2s ease;
}

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

.nav-cta {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(5,5,9,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.hero h1 span {
    color: #fbbf24;
}

.hero-subtitle {
    max-width: 30rem;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #a855ff, #6366f1);
    box-shadow: 0 12px 30px rgba(88, 28, 135, 0.4);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(88, 28, 135, 0.6);
}

.btn.ghost {
    background: rgba(5,5,9,0.6);
    border-color: rgba(255,255,255,0.15);
}

.btn.ghost:hover {
    background: rgba(255,255,255,0.06);
}

.btn.full {
    width: 100%;
    text-align: center;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    object-fit: cover;
}

/* Sections */
.section {
    padding: 4rem 1.5rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.section-header p {
    max-width: 30rem;
    margin: 0 auto;
    opacity: 0.8;
}

/* About */
.about {
    background: radial-gradient(circle at top, rgba(124,58,237,0.24), transparent 60%);
}

.about .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.about p {
    margin-bottom: 0.9rem;
    opacity: 0.9;
}

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

.highlight {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(15,23,42,0.7);
    border: 1px solid rgba(148,163,184,0.25);
}

.highlight h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.section-media {
    display: flex;
    justify-content: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.6rem;
}

.about-image-grid img {
    border-radius: 1.2rem;
    height: 100%;
    object-fit: cover;
}

/* Trips */
.trips {
    background: #050509;
}

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

.trip-card {
    background: rgba(15,23,42,0.9);
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.32);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.trip-card img {
    height: 190px;
    object-fit: cover;
}

.trip-body {
    padding: 1rem 1.1rem 1.2rem;
}

.trip-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

/* Gallery */
.gallery {
    background: radial-gradient(circle at top, rgba(79,70,229,0.3), #050509 55%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
}

.gallery-item {
    border-radius: 1rem;
    cursor: zoom-in;
    height: 180px;
    object-fit: cover;
    border: 1px solid rgba(148,163,184,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.65);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 40;
    padding: 1rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.lightbox img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

/* Video */
.video-section {
    background: #050509;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.2rem;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social */
.social {
    background: radial-gradient(circle at top, rgba(94,234,212,0.2), #050509 55%);
}

.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
}

.social-card {
    background: rgba(15,23,42,0.9);
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(148,163,184,0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fb-wrapper iframe {
    width: 100%;
    min-height: 340px;
}

/* Contact */
.contact {
    background: #050509;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.map-wrapper {
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.35);
    min-height: 260px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-card {
    background: rgba(15,23,42,0.95);
    border-radius: 1.2rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(148,163,184,0.35);
}

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

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

input,
textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.95);
    color: #f9fafb;
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 2px solid #6366f1;
    outline-offset: 1px;
}

textarea {
    resize: vertical;
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.4rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    z-index: 50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.whatsapp-icon {
    transform: translateY(1px);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(148,163,184,0.4);
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    background: #020617;
}

.footer p + p {
    margin-top: 0.3rem;
}

.footer a {
    color: #a855ff;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .about .section-inner,
    .social-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
