@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --primary: #57B7DE;
    --secondary: #05527E;
}

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

body {
    font-family: 'Outfit', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.glass,
.btn-talk.glass {
    color: white;
}

.nav-link {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link.glass:hover {
    background: white;
    color: black !important;
}

.nav-link:not(.glass):hover {
    background: black !important;
    color: white !important;
}

.btn-talk.glass:hover {
    background: white;
    color: black !important;
}

.btn-talk.glass:hover .status-dot {
    background: black;
}

.btn-talk:not(.glass):hover {
    background: var(--primary) !important;
    color: black !important;
}

.btn-talk:not(.glass):hover .status-dot {
    background: black;
}

.status-box {
    @apply w-3 h-3 bg-white rounded-sm transition-colors duration-300;
}

.mobile-nav-link {
    @apply font-display tracking-tighter transition-all hover:text-primary;
}

/* Custom Cursor Placeholder or other premium effects */
::-webkit-scrollbar {
    width: 0px;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Services Cell Grid */
#services-grid {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Services Cell Grid */
.service-card {
    cursor: pointer;
    transition: all 0.5s ease;
}

.service-card:hover {
    background-color: var(--primary) !important;
}

.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover .text-black\/20 {
    color: black !important;
}

.service-card:hover .text-black\/20 {
    color: rgba(0,0,0,0.6) !important;
}

.service-card:hover span[class*="border-black"] {
    border-color: rgba(0,0,0,0.2) !important;
}

#services-target {
    border: 0.5px solid rgba(0,0,0,0.05);
}




/* FAQ Hover Animation */
.faq-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


/* Animation helpers */
.reveal-word {
    display: inline-block;
    color: #E5E5E5;
    transition: color 0.1s linear;
}

.video-bg {
    filter: brightness(0.6);
}