/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px; /* Accounts for fixed navbar */
    overflow: hidden;
}
.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, rgba(13,110,253,0.05) 0%, rgba(13,110,253,0.15) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite both alternate;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Cards & Utilities */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.service-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.service-item:hover {
    border-color: #0d6efd;
    transform: translateY(-5px);
}

.success-card {
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.success-card:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-5px);
}

/* Carousel Testimonials */
.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}
.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }

/* Contact Section */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #0d6efd;
}

/* WhatsApp Float Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-bg-shape { width: 100%; top: -10%; left: 0; }
}

/* Z-index Utilities */
.z-index-1 { z-index: 1 !important; }
.z-index-2 { z-index: 2 !important; }
.z-index-3 { z-index: 3 !important; }
.z-index-10 { z-index: 10 !important; }
.pos-relative { position: relative !important; }
