/* Global Styles for UltraCam */

/* Custom cursor styles */
.cursor {
    cursor: none;
}

.cursor-pointer {
    cursor: pointer;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Loading animations */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    text-align: center;
}

.loading {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }
}

/* Custom button styles */
.btn-default {
    transition: all 0.3s ease;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Navigation improvements */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/* Icon text styles for emoji icons */
.icon-text {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #d61f2c;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.whatsapp-float__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.whatsapp-float__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-float__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
}

.whatsapp-float__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
}

.whatsapp-float__phone {
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    opacity: 0.95;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 10px 12px;
        gap: 8px;
    }

    .whatsapp-float__content {
        min-width: 0;
    }

    .whatsapp-float__title {
        font-size: 13px;
    }

    .whatsapp-float__phone {
        font-size: 12px;
    }
}
