/* public/assets/css/style.css */

:root {
    --primary-color: #0094ff;
    --primary-hover: #007acc;
    --primary-soft: rgba(0, 148, 255, 0.1);
    --secondary-color: #02050a;
    --text-color: #4a5568;
    --heading-color: #1a202c;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-primary-soft { background-color: var(--primary-soft) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.max-w-700 { max-width: 700px; }

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}
.navbar.scrolled {
    padding: 10px 0;
}
.navbar-brand { font-size: 1.5rem; }
.nav-link {
    color: var(--heading-color);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 148, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    min-height: calc(100vh - 80px);
    background: radial-gradient(circle at top right, var(--primary-soft) 0%, transparent 40%);
}
.hero-img {
    transition: transform 0.5s ease;
}
.hero-img:hover {
    transform: translateY(-10px);
}

/* Cards & Services */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-color) !important;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: transparent !important;
}
.service-icon {
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

/* Call To Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
}
.footer a {
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--primary-color) !important;
}

/* WhatsApp Float */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.slide-up {
    transform: translateY(40px);
}
.fade-in {
    transform: scale(0.95);
}
