.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    scroll-behavior: smooth;
}

/* Tracking Buttons Styles */
.vertical-number {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(135deg, #003063, #0056b3);
    color: white;
    padding: 18px 10px;
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    box-shadow: -4px 0 20px rgba(0, 48, 99, 0.3);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
}

.vertical-number:hover {
    padding-right: 20px;
    background: #002046;
    color: #ffcb05;
}

.vertical-number i {
    transform: rotate(90deg);
    margin-bottom: 20px;
    font-size: 18px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Mobile Sticky Bar for Call/WA */
@media (max-width: 768px) {
    .vertical-number {
        display: none; /* Hide vertical on mobile */
    }
    
    .whatsapp-float {
        bottom: 90px; /* Move up to clear mobile bar */
        right: 20px;
        left: auto;
        width: 50px;
        height: 50px;
    }

    .mobile-contact-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        display: flex;
        z-index: 10000;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
        padding: 10px;
        gap: 10px;
    }
}

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

h1,
h2,
h3,
.font-headline {
    font-family: 'Manrope', sans-serif;
}

.glass-nav {
    background: rgba(249, 249, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.hero-gradient {
    background: linear-gradient(135deg, #003063 0%, #00468c 100%);
}
