:root {
    --primary-blue: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-accent: #198754;
    --bg-light: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --white: #ffffff;
    --soft-primary: rgba(13, 110, 253, 0.1);
    --soft-success: rgba(25, 135, 84, 0.1);
    --soft-info: rgba(13, 202, 240, 0.1);
    --soft-danger: rgba(220, 53, 69, 0.1);
    --soft-warning: rgba(255, 193, 7, 0.1);
    --soft-secondary: rgba(108, 117, 125, 0.1);
    --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
    --shadow-md: 0 .5rem 1rem rgba(0, 0, 0, .15);
    --transition: all 0.3s ease;
}

html,
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

/* Utils */
.bg-soft-primary {
    background-color: var(--soft-primary) !important;
}

.bg-soft-success {
    background-color: var(--soft-success) !important;
}

.bg-soft-info {
    background-color: var(--soft-info) !important;
}

.bg-soft-danger {
    background-color: var(--soft-danger) !important;
}

.bg-soft-warning {
    background-color: var(--soft-warning) !important;
}

.bg-soft-secondary {
    background-color: var(--soft-secondary) !important;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md) !important;
}

.transition-zoom:hover {
    transform: scale(1.1);
}

/* Navbar */
.main-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    padding: 50px 0 100px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
}

.hero-img-wrapper {
    z-index: 1;
}

.hero-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--soft-primary) 0%, transparent 70%);
    z-index: -1;
}

.hero-img {
    border: 10px solid white;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

@media (max-width: 576px) {
    .stats-banner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem !important;
    }

    .stats-banner .stat-divider {
        display: none;
    }
}

/* About Section */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    text-align: center;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
}

/* Services */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* Why Choose Us */
.check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
}

/* Testimonials */
.avatar-bg {
    width: 50px;
    height: 50px;
    background: var(--soft-primary);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Gallery */
.gallery-item {
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.7);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Location */
.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    z-index: 1;
}

.cta-overlay-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

/* Footer */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.floating-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: #0d6efd;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-top: 1px solid #eee;
}

.mobile-item {
    text-decoration: none;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns,
    .stats-banner {
        justify-content: center;
    }

    .floating-container {
        display: none;
    }

    .back-to-top {
        bottom: 85px;
    }

    .footer {
        padding-bottom: 80px;
    }

    /* Fix Right Margin Gutters */
    .hero-section .row {
        --bs-gutter-x: 1.5rem;
    }

    .container, .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
        overflow-x: hidden;
    }
}