.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Navbar */
.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

.hero-pattern {
    background-image: radial-gradient(circle at 2px 2px,
            rgba(0, 89, 187, 0.05) 1px,
            transparent 0);
    background-size: 32px 32px;
}

/* Card Effects */
.card-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px -10px rgba(0, 89, 187, 0.25);
}

/* Pulse Animation */
@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 89, 187, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(0, 89, 187, 0.1);
    }
}

.animate-pulse-soft {
    animation: pulse-soft 3s infinite ease-in-out;
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.animate-float {
    animation: float 6s infinite ease-in-out;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out,
        transform 0.8s ease-out;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonial Slider */
#testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Logo */
.zlogo {
    width: 180px;
    height: auto;
    max-width: 100%;
    position: static;
    display: block;
}

/* Footer Logo */
.z-logo {
    width: 150px;
    height: auto;
    max-width: 100%;
}

/* Find Us Button */
.find-us {
    background-color: #1e4f9c;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 4px solid #f4c430;
    display: inline-block;
    transition: 0.2s;
    white-space: nowrap;
}

.find-us:hover {
    background-color: #173e7a;
}

.find-us:active {
    transform: translateY(2px);
    border-bottom: 2px solid #f4c430;
}

/* Book Button */
#book-btn {
    background-color: #1e4f9c;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border-bottom: 4px solid #f4c430;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#book-btn:active {
    transform: translateY(2px);
    border-bottom: 2px solid #f4c430;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .card-lift,
    .animate-float,
    .animate-pulse-soft,
    .glass-nav {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ==========================
   Tablet Responsive
========================== */

@media (max-width: 1024px) {

    .zlogo {
        width: 150px;
    }

    .z-logo {
        width: 130px;
    }

    .find-us {
        padding: 8px 16px;
        font-size: 14px;
    }

    #book-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* ==========================
   Mobile Responsive
========================== */

@media (max-width: 768px) {

    .zlogo {
        width: 120px;
    }

    .z-logo {
        width: 110px;
    }

    .find-us {
        display: none;
    }

    #book-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .card-lift:hover {
        transform: none;
    }

    .animate-float {
        animation: none;
    }

    .animate-pulse-soft {
        animation-duration: 5s;
    }
}

/* ==========================
   Small Phones
========================== */

@media (max-width: 480px) {

    .zlogo {
        width: 100px;
    }

    .z-logo {
        width: 90px;
    }

    #book-btn {
        padding: 8px 12px;
        font-size: 12px;
        max-width: 160px;
    }
}