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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a1628;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav-scrolled {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link {
    position: relative;
}

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

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

.mobile-link {
    position: relative;
}

/* HERO */
.hero-geo {
    position: absolute;
    opacity: 0.6;
}

.hero-geo-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 168, 67, 0.15);
    transform: rotate(45deg);
    animation: float-geo 8s ease-in-out infinite;
}

.hero-geo-2 {
    top: 60%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 67, 0.05);
    border-radius: 50%;
    animation: float-geo 6s ease-in-out infinite reverse;
}

.hero-geo-3 {
    top: 25%;
    right: 55%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(96, 165, 250, 0.1);
    animation: float-geo 10s ease-in-out infinite;
}

@keyframes float-geo {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

.hero-image-container {
    position: relative;
}

.hero-image-main {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-accent-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(212, 168, 67, 0.3);
    border-radius: 16px;
    z-index: -1;
    animation: float-geo 5s ease-in-out infinite;
}

.hero-accent-2 {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 67, 0.08);
    border-radius: 12px;
    z-index: -1;
    animation: float-geo 7s ease-in-out infinite reverse;
}

.floating-card {
    position: absolute;
    animation: float-card 4s ease-in-out infinite;
}

.floating-card-1 {
    bottom: 30px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 30px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* HERO CONTENT ANIMATION */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.7s; }
.hero-content > *:nth-child(5) { animation-delay: 0.9s; }

.hero-image-container {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s ease 0.4s forwards;
}

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

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* SERVICE CARDS */
.service-card {
    position: relative;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.03) 0%, transparent 60%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

/* WHY CARDS */
.why-card {
    perspective: 1000px;
}

/* CTA */
.cta-geo {
    position: absolute;
    opacity: 0.4;
}

.cta-geo-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(212, 168, 67, 0.1);
    transform: rotate(30deg);
    animation: float-geo 9s ease-in-out infinite;
}

.cta-geo-2 {
    bottom: 10%;
    right: 8%;
    width: 100px;
    height: 100px;
    background: rgba(212, 168, 67, 0.04);
    border-radius: 50%;
    animation: float-geo 7s ease-in-out infinite reverse;
}

/* SCROLL REVEAL */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* MOBILE MENU */
.menu-line {
    transition: all 0.3s ease;
}

#menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

#menu-btn.active .menu-line:nth-child(3) {
    width: 24px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-geo-1 {
        width: 60px;
        height: 60px;
        top: 10%;
        left: 2%;
    }
    .hero-geo-2 {
        width: 40px;
        height: 40px;
    }
    .hero-geo-3 {
        display: none;
    }
    .floating-card-1 {
        left: 10px;
        bottom: 10px;
    }
    .floating-card-2 {
        right: 10px;
        top: 10px;
    }
    .hero-accent-1 {
        width: 50px;
        height: 50px;
        top: -10px;
        right: -10px;
    }
    .hero-accent-2 {
        width: 35px;
        height: 35px;
        bottom: -8px;
        left: -8px;
    }
    .about-image-wrapper {
        position: relative;
    }
    .about-image-wrapper .absolute {
        display: none;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a1628;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 168, 67, 0.5);
}
