@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --dark: #0f172a; /* Rich Navy Blue */
    --accent: #f59e0b; /* Golden Yellow for Trust */
    --gray-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
}

/* --- Mobile Responsive Navbar --- */
.navbar {
    background: var(--dark) !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-brand { font-weight: 800; font-size: 22px; color: #fff !important; }
.navbar-brand span { color: var(--accent); }

.nav-link { 
    color: rgba(255,255,255,0.9) !important; 
    font-size: 15px; 
    font-weight: 500;
    padding: 10px 15px !important;
}

/* --- Hero Section (The "Wow" Factor) --- */
.hero-box {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6958?q=80&w=2000');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}
.hero-title { font-size: clamp(32px, 5vw, 64px); font-weight: 800; letter-spacing: -1.5px; }

/* --- Premium Service Cards --- */
.service-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card-img-wrap { height: 200px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover img { scale: 1.1; }

.btn-premium {
    background: var(--accent);
    color: var(--dark) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
}

/* --- Mobile Specific Fixes --- */
@media (max-width: 768px) {
    .hero-box { padding: 60px 0; }
    .hero-title { line-height: 1.2; }
}

/* --- Dark Footer --- */
.footer-dark {
    background: var(--dark);
    color: #94a3b8;
    padding: 70px 0 30px;
}
.footer-dark h5 { color: white; margin-bottom: 25px; font-weight: 700; }
.footer-dark a { color: #94a3b8; text-decoration: none; margin-bottom: 10px; display: block; font-size: 14px; }
.footer-dark a:hover { color: var(--accent); }