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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background-color: #050D1A;
    color: #fff;
    overflow-x: hidden;
}

::selection {
    background: rgba(52, 211, 153, 0.3);
    color: #fff;
}

/* === NAVBAR === */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(5, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #34D399;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #34D399;
}

/* === MOBILE MENU === */
.mobile-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    position: relative;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #34D399;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::after {
    width: 60%;
}

.mobile-menu-link:hover {
    color: #34D399;
}

/* === HERO === */
.hero-gradient {
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(52, 211, 153, 0.15) 0%, rgba(10, 22, 40, 0.8) 50%, #050D1A 80%);
}

/* === GEOMETRIC SHAPES === */
.geo-shape {
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.geo-circle-1 {
    background: radial-gradient(circle, rgba(52, 211, 153, 0.4) 0%, transparent 70%);
}

.geo-circle-2 {
    background: rgba(52, 211, 153, 0.3);
}

.geo-square-1 {
    background: rgba(52, 211, 153, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.geo-square-2 {
    background: rgba(52, 211, 153, 0.25);
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.geo-accent-rect {
    background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, transparent 70%);
}

.geo-circle-3 {
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: #34D399;
    color: #0A1628;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.btn-primary:hover {
    background: #68D391;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: rgba(52, 211, 153, 0.5);
    color: #34D399;
    background: rgba(52, 211, 153, 0.05);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pill:hover {
    transform: translateY(-1px);
}

/* === HERO ANIMATIONS === */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroWordIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.1s; }
.hero-word:nth-child(2) { animation-delay: 0.2s; }
.hero-word:nth-child(3) { animation-delay: 0.3s; }
.hero-word:nth-child(4) { animation-delay: 0.4s; }
.hero-word:nth-child(5) { animation-delay: 0.55s; }

@keyframes heroWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    opacity: 0;
    animation: fadeInDown 0.6s 0.05s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: fadeIn 1s 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 0.5; }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #34D399;
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* === FEATURE CARDS === */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.revealed {
    animation: cardReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === VISUAL STRIP SCROLL === */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    display: flex;
    gap: 16px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* === VISIT SECTION GRADIENT === */
.visit-gradient {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(52, 211, 153, 0.12) 0%, rgba(5, 13, 26, 0.95) 60%, #050D1A 90%);
}

/* === PARALLAX-LIKE GENTLE FLOAT === */
.geo-shape {
    animation: gentleFloat 6s ease-in-out infinite;
}

.geo-circle-1 { animation-delay: 0s; }
.geo-circle-2 { animation-delay: 1s; }
.geo-square-1 { animation-delay: 2s; }
.geo-square-2 { animation-delay: 3s; }
.geo-circle-3 { animation-delay: 1.5s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.geo-square-1 {
    animation-name: gentleFloatRotate;
}

@keyframes gentleFloatRotate {
    0%, 100% { transform: translateY(0px) rotate(12deg); }
    50% { transform: translateY(-12px) rotate(18deg); }
}

.geo-square-2 {
    animation-name: gentleFloatRotate2;
}

@keyframes gentleFloatRotate2 {
    0%, 100% { transform: translateY(0px) rotate(-12deg); }
    50% { transform: translateY(-12px) rotate(-6deg); }
}

/* === FORM STYLES === */
input:focus, textarea:focus {
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-word {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }
    
    .hero-word:nth-child(5) {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    }
}

@media (min-width: 768px) {
    #navbar {
        padding-top: 0;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .animate-scroll {
        animation: none;
    }
}
