body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Colors */
.text-primary {
    color: #0A192F !important;
}

.bg-primary {
    background-color: #0A192F !important;
}

.text-warning {
    color: #F97316 !important;
}

.bg-warning {
    background-color: #F97316 !important;
}

.btn-primary {
    background-color: #0A192F;
    border-color: #0A192F;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
}

.btn-warning {
    background-color: #F97316;
    border-color: #F97316;
    color: #fff;
}

.btn-warning:hover {
    background-color: #ea580c;
    border-color: #ea580c;
    color: #fff;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #F97316;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Slider Carousel */
.carousel-item {
    height: 70vh;
    min-height: 400px;
    background: #000;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* overlay effect */
}

.carousel-caption {
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    text-align: left;
}

.slider-box {
    background-color: #222222;
    border-left: 6px solid #F97316;
    max-width: 650px;
    border-radius: 12px;
}

.slider-box .badge,
.slider-box .btn-warning {
    background-color: #F97316 !important;
    color: #000 !important;
    border: none;
}

.slider-box .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.slider-box .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slider-box h1 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .slider-box h1 {
        font-size: 2.2rem;
    }
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #F97316;
    margin-bottom: 20px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-btn span {
    display: none;
}

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

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

.floating-btn.phone {
    background-color: #F97316;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 48%;
    /* Assume text-center */
    width: 60px;
    height: 4px;
    background: #F97316;
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
}

/* Dynamic SEO Layout */
.seo-nav-list {
    max-height: 400px;
    overflow-y: auto;
}

.seo-nav-list a {
    transition: all 0.2s;
}

.seo-nav-list a:hover {
    background-color: #f8f9fa;
    border-left: 3px solid #F97316;
}

/* Mobile Overrides */
@media (max-width: 767.98px) {
    .contact-info-mobile {
        padding-left: 50px !important;
    }
    
    .floating-actions {
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        gap: 0;
        width: 100%;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
    }
    
    .floating-btn {
        width: 50%;
        height: 60px;
        border-radius: 0;
        box-shadow: none;
        font-size: 24px;
        gap: 8px;
    }
    
    .floating-btn:hover {
        transform: none;
    }
    
    .floating-btn span {
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    /* Give some padding to footer so content isn't hidden behind the sticky bar */
    footer {
        padding-bottom: 60px;
    }
}
/* Premium Utility Classes */
.bg-navy { background-color: #0A192F !important; }
.text-navy { color: #0A192F !important; }
.bg-orange { background-color: #F97316 !important; }
.text-orange { color: #F97316 !important; }
.btn-orange { background-color: #F97316; color: #fff; border-color: #F97316; transition: all 0.3s; }
.btn-orange:hover { background-color: #ea580c; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); border-color: #ea580c; }
.premium-card { transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); background: #fff; border-radius: 12px; }
.premium-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(249, 115, 22, 0.3); }
.icon-box { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 12px; background: rgba(249, 115, 22, 0.1); color: #F97316; font-size: 24px; margin-bottom: 20px; transition: all 0.4s; }
.premium-card:hover .icon-box { background: #F97316; color: #fff; transform: scale(1.1); }
.section-title-premium { font-weight: 800; color: #0A192F; margin-bottom: 1rem; position: relative; display: inline-block; font-size: 2.5rem; }
.section-title-premium::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 60px; height: 4px; background: #F97316; border-radius: 2px; }
.text-center .section-title-premium::after { left: 50%; transform: translateX(-50%); }
.trust-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.trust-badge:last-child { border-right: none; }
.step-card { position: relative; z-index: 1; }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: #F97316; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4); z-index: 10; }
