/* GLOBAL SETTINGS */
:root {
    --navy: #0a192f;
    --gold: #d4af37;
    --white: #ffffff;
    --light: #f8fafc;
    --whatsapp: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: var(--white); 
    color: var(--navy); 
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVIGATION - LARGE LOGO */
nav { 
    background: var(--navy); 
    padding: 20px 6%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 5px solid var(--gold);
}

.logo { 
    font-family: 'Cinzel', serif; 
    color: var(--gold); 
    font-size: clamp(24px, 5vw, 42px); 
    text-decoration: none; 
    font-weight: 900; 
    letter-spacing: 2px;
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
}

.nav-links a { 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.nav-links a:hover { color: var(--gold); }

.wa-btn { 
    background: var(--whatsapp); 
    color: white !important; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
}

/* JURISDICTION BAR */
.j-bar { 
    background: var(--gold); 
    color: var(--navy); 
    padding: 12px; 
    text-align: center; 
    font-weight: 900; 
    font-size: 20px; 
    letter-spacing: 1px;
}

/* HERO SECTION */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: center; 
    align-items: center; text-align: center; color: white; padding: 0 8%;
}

.hero h1 { font-family: 'Cinzel', serif; font-size: clamp(32px, 6vw, 60px); margin-bottom: 20px; }
.hero span { color: var(--gold); }
.hero p { font-size: 20px; max-width: 800px; margin-bottom: 30px; color: #cbd5e1; }

.btn-call { 
    background: var(--gold); color: var(--navy); 
    padding: 18px 40px; text-decoration: none; 
    font-weight: 800; border-radius: 4px; font-size: 18px; 
}

/* SERVICES GRID */
.services { padding: 80px 8%; background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Cinzel', serif; font-size: 38px; }

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
}

.card { 
    background: white; padding: 30px; border-radius: 8px; 
    border-left: 5px solid transparent; text-decoration: none; 
    color: inherit; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card:hover { border-left: 5px solid var(--gold); transform: translateY(-5px); }
.card h3 { margin-bottom: 10px; font-size: 20px; color: var(--navy); }
.card p { font-size: 14px; color: #64748b; }

/* PAYMENT STRIP */
.payment-strip { 
    padding: 50px 8%; background: var(--navy); color: white; 
    display: flex; align-items: center; justify-content: center; 
    flex-wrap: wrap; gap: 40px; border-top: 5px solid var(--gold); 
}

.pay-details { 
    text-align: center; background: rgba(255,255,255,0.05); 
    padding: 25px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.3); 
}

.upi-id { font-size: 24px; font-weight: 800; color: #ff6b6b; display: block; }

/* FOOTER */
footer { background: #020617; color: #94a3b8; padding: 60px 8%; text-align: center; }

/* WHATSAPP FLOAT */
.wa-float { 
    position: fixed; bottom: 30px; right: 30px; 
    background: var(--whatsapp); color: white; width: 60px; 
    height: 60px; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; font-size: 30px; z-index: 1000; 
}

/* MOBILE MENU RESPONSIVE */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; right: -100%; top: 90px;
        background: var(--navy); width: 80%; height: 100vh;
        flex-direction: column; padding: 40px; transition: 0.5s;
        box-shadow: -10px 0 20px rgba(0,0,0,0.2);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 18px; margin-bottom: 25px; }
}