/* ====================
   COLOUR SYSTEM
==================== */
:root {
    --blue: #0c47ff;
    --blue-dark: #0736c9;
    --text: #121212;
    --muted: #6b6b6b;
    --light-bg: #f4f7ff;
    --card-bg: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 28px rgba(0,0,0,0.06);
    --shadow-soft: 0 4px 14px rgba(0,0,0,0.05);
    font-family: "Inter", sans-serif;
}
html{
    overflow-x: clip;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: clip;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ================= NAVBAR ================= */
.service-navbar {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
}
.nav-links a {
    margin-left: 22px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--blue);
}

.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
}


/* ================= HERO ================= */

/* =========================================
   FULLSCREEN HERO FOR LEGAL PAGE
========================================= */

.legal-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-image: url('/img/hero2.jpg'); /* <-- replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.legal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay */
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.legal-hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-hero-content p {
    font-size: 1.25rem;
    line-height: 1.65;
    font-weight: 400;
    opacity: 0.95;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .legal-hero {
        height: 75vh; /* Slightly shorter on mobile */
    }

    .legal-hero-content h1 {
        font-size: 2.2rem;
    }

    .legal-hero-content p {
        font-size: 1rem;
    }
}


/* =========================================
   FULLSCREEN HERO — BUSINESS SUPPORT
========================================= */

.business-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('/img/hero3.jpg'); /* Replace with your actual image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-content .lead {
    font-size: 1.25rem;
    line-height: 1.65;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .business-hero {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }
}

.service-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
}

/* ================= INTRO ================= */
.intro-section {
    padding: 32px 0;
}
.intro-section p {
    max-width: 750px;
    color: var(--muted);
    font-size: 18px;
}

/* ================= SERVICE GRID ================= */
.sec-head {
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 28px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 26px;
}
.service-card {
    background: var(--card-bg);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(12, 71, 255, 0.08);
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 12px;
}
.service-card h3 {
    margin: 0 0 6px;
    font-weight: 700;
}
.service-card p { color: var(--muted); }
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px; /* perfect equal size */
}
.learn-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 12px 18px;
    background: #ffffff;
    color: var(--blue);

    border: 2px solid var(--blue);
    border-radius: 10px;

    font-weight: 700;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
    transition: 0.25s ease;

    margin-top: auto; /* pushes button to bottom */
}
.learn-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(12, 71, 255, 0.25);
}

/* Additional text inside cards */
.extra ul {
    padding-left: 20px;
    margin: 10px 0;
    color: var(--muted);
    line-height: 1.5;
}

/* CTA Button */
.consult-btn {
    margin-top: 12px;
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}
.consult-btn:hover {
    background: var(--blue-dark);
}

/* ================= WHY US ================= */
.why-section {
    padding: 60px 0;
}
.why-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 22px;
}
.why-item {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.why-item i {
    font-size: 28px;
    color: var(--blue);
}
.why-item h4 {
    margin: 12px 0 6px;
}

/* ================= CTA ================= */
.cta-section {
    padding: 60px 0;
}
.cta-box {
    background: var(--light-bg);
    padding: 26px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.cta-btn {
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}
.cta-btn:hover { background: var(--blue-dark); }

/* ================= FOOTER ================= */
.footer {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}
.footer-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.footer a {
    display:block;
    color: var(--muted);
    margin-bottom: 6px;
    text-decoration:none;
}
.footer a:hover { color: var(--blue); }

/* MOBILE */
@media (max-width:600px){
    .cta-box { text-align:center; gap:15px; }
}
