@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap);

:root {
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
}

body {
    -webkit-font-smoothing: antialiased;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-mesh {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 1023px) {
    .hero-mesh {
        width: 100%;
        height: 60%;
        top: -5%;
        right: 0;
    }
}

.phone-mockup-wrapper {
    perspective: 1000px;
}

.phone-mockup {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Unique Mobile Menu Animation */
#mobile-nav-drawer {
    clip-path: circle(0% at 90% 5%);
    transition: clip-path 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

#mobile-nav-drawer.open {
    clip-path: circle(150% at 90% 5%);
}

.nav-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.open .nav-stagger {
    opacity: 1;
    transform: translateY(0);
}

.nav-stagger:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-stagger:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-stagger:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-stagger:nth-child(4) {
    transition-delay: 0.25s;
}

.nav-stagger:nth-child(5) {
    transition-delay: 0.3s;
}

.logo img {
    width: auto;
    height: 64px;
}

.footer-logo img {
    width: auto;
    height: 64px;
}

/* Input Styles */
input:focus {
    outline: none;
    border-color: #3b82f6;
    ring: 2px solid rgba(59, 130, 246, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
}

.dark input[type="date"]::-webkit-calendar-picker-indicator,
.dark input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Fix SVG Text Blurry issue */
svg text {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
    .logo img {
        width: auto;
        height: 45px;
    }

    .footer-logo img {
        width: auto;
        height: 45px;
    }

    .text-i{
        font-size: 1.0rem !important;
        border-radius: 1rem !important; 
    }
}