/* Landing Page - Minimal Custom Styles */
/* Relies on existing Bootstrap and backend.css */

/* ==========================================
   WhatsApp Floating Widget (Essential)
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button.pulse {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 10px;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 200px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-tooltip-content strong {
    color: #25D366;
    display: block;
    margin-bottom: 4px;
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none !important;
    }
}

/* ==========================================
   Stats Counter Styling (Minimal)
   ========================================== */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================
   Testimonial Card Adjustments
   ========================================== */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #ffc107;
}

/* ==========================================
   Hero Section Minor Adjustments
   ========================================== */
.hero-content {
    position: relative;
    z-index: 1;
}
