@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Premium Typography Baseline */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-bold {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Premium Color Overrides (Applying high-quality brand colors to standard Tailwind classes) */
.bg-blue-600 {
    background: linear-gradient(135deg, #1e40af, #2563eb) !important;
}
.hover\:bg-blue-700:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
}
.text-blue-600 {
    color: #2563eb !important;
}
.hover\:text-blue-600:hover {
    color: #1d4ed8 !important;
}
.text-blue-800 {
    color: #1e3a8a !important;
}
.bg-blue-100 {
    background-color: #eff6ff !important;
}

.bg-orange-500 {
    background: linear-gradient(135deg, #ff7e40, #ea580c) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.hover\:bg-orange-600:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4) !important;
}

/* Custom interactive components */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* Card Improvements */
.service-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}

.brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.1);
}

/* Pulse Animation for CTA elements */
.floating-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(251, 146, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 146, 60, 0);
    }
}

/* WhatsApp Icon Animation */
.whatsapp-btn {
    animation: whatsapp-bounce 2s infinite;
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.05);
    }
    60% {
        transform: translateY(-4px) scale(1.02);
    }
}

/* Inputs and Forms Styling */
input, textarea, select {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid #cbd5e1 !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
    transform: translateY(-1px);
    outline: none !important;
}

/* Brand logos visual enhancements */
.brand-logo {
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.85);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo, .brand-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* Customized scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Subtle animations for icons on hover */
.trust-badge:hover i {
    transform: scale(1.15) rotate(5deg);
    transition: all 0.3s ease;
}

.trust-badge i {
    transition: all 0.3s ease;
}

/* Hero Section design details */
.hero-image-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.8)) !important;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 15s linear infinite;
}
