:root { --navy: #1a2a6c; --orange: #f39c12; --light: #f8f9fa; --white: #ffffff; }

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; scroll-behavior: smooth; }
.container { width: 92%; max-width: 1200px; margin: auto; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section { padding: 100px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.text-white { color: white; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* Top Bar */
.top-bar { background: #0e1a4d; color: white; padding: 10px 0; font-size: 13px; }
.top-bar span { margin-right: 20px; }
.social-side a { color: white; text-decoration: none; margin-left: 15px; }

/* Header */
header { background: #fff; padding: 20px 0; border-bottom: 4px solid var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.logo-wrap { text-decoration: none; }
.logo-main { color: var(--navy); font-size: 1.3rem; font-weight: 800; }
.logo-sub { color: #777; font-size: 0.9rem; font-weight: 400; margin-top: -5px; }
nav a { text-decoration: none; color: #333; font-weight: 700; margin-left: 20px; font-size: 14px; text-transform: uppercase; }
nav a:hover { color: var(--orange); }

/* Hero */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200');
    height: 85vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center;
}
.hero-blue-box { background: rgba(26, 42, 108, 0.9); color: white; padding: 60px; border-left: 10px solid #fff; max-width: 600px; }
.hero-blue-box h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }

/* Service Cards */
.pill { padding: 6px 20px; border-radius: 20px; color: white; font-weight: 700; font-size: 11px; display: inline-block; margin-bottom: 10px; text-transform: uppercase; }
.pill.navy { background: var(--navy); }
.pill.orange { background: var(--orange); }
.serv-card h3 { font-size: 2rem; margin-bottom: 10px; }

/* Form */
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
input, textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.btn-orange { background: var(--orange); color: white; padding: 15px 40px; border: none; border-radius: 5px; cursor: pointer; font-weight: 800; text-transform: uppercase; transition: 0.3s; }
.btn-orange:hover { background: #e67e22; transform: translateY(-2px); }

/* Stats */
.stat h2 { font-size: 3rem; color: var(--orange); }

/* FAQ */
.faq-box { background: #fff; padding: 25px; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }

/* WA Float */
.wa-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 999; }

.footer { padding: 40px 0; background: #111; color: #777; font-size: 14px; }

@media (max-width: 768px) {
    header .flex-between { flex-direction: column; text-align: center; }
    nav { margin-top: 20px; }
    .hero-blue-box h1 { font-size: 2.2rem; }
    .form-row { flex-direction: column; }
}