:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --bg-dark: #0f172a;
    --card-bg-dark: #1e293b;
    --text-muted: #64748b;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fafafa;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Header & Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: #475569 !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .nav-link {
        padding: 6px 8px !important;
        font-size: 13.5px;
    }
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-color) !important;
    background: rgba(13, 110, 253, 0.05);
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.dropdown-item {
    font-weight: 500;
    color: #475569;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.05) !important;
    color: var(--primary-color) !important;
}

/* Hover-triggered dropdown for desktop */
@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Hero & Slider styling */
.hero-slider .carousel-item {
    height: 600px;
    background-color: var(--bg-dark);
}

.hero-slider img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px !important;
    max-width: 700px;
    margin: 0 auto;
    bottom: 20% !important;
}

.carousel-caption h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.carousel-caption p {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 25px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Section Styling */
.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Footer Styling */
footer {
    background-color: var(--bg-dark);
    color: #94a3b8;
    font-size: 14px;
}

footer h5 {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

/* Responsive slider */
@media (max-width: 767.98px) {
    .hero-slider .carousel-item {
        height: 350px;
    }
    .carousel-caption h1 {
        font-size: 24px;
    }
    .carousel-caption p {
        font-size: 14px;
    }
    .carousel-caption {
        padding: 20px !important;
        bottom: 10% !important;
    }
}

/* Homepage Enriched Custom Styles */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.stats-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.02);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 22px;
}

.card-product {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 35px 25px;
    transition: all 0.3s ease;
}
.card-product:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.05);
}

.bg-gradient-dark-blue {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.accent-border-left {
    border-left: 4px solid var(--primary-color);
}

.text-gradient-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider-custom {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.bg-light-soft {
    background-color: #f8fafc;
}

/* Fix for FontAwesome icons inside flex containers */
.icon-box i {
    line-height: normal !important;
    height: auto !important;
}

/* Premium Floating CTA Buttons */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-cta-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.floating-cta-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.floating-cta-btn .tooltip-text {
    position: absolute;
    right: 70px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: 500;
}

.floating-cta-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

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

.floating-phone {
    background-color: var(--primary-color);
}

.floating-offer {
    background-color: #f59e0b;
}

/* Timeline/Process Section */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

@media (max-width: 767.98px) {
    .process-timeline::before {
        left: 20px;
    }
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff, 0 4px 10px rgba(0,0,0,0.08);
}

@media (max-width: 767.98px) {
    .timeline-img {
        left: 20px;
        transform: none;
    }
}

.timeline-content {
    width: 45%;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

/* FAQ Styles */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.03) !important;
    color: var(--primary-color) !important;
}

.accordion-button {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 12px !important;
    padding: 18px 24px;
}

.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.accordion-body {
    line-height: 1.7;
    color: #475569;
}