/* Global Styles */
:root {
  --brand:#0d47a1;
  --brand-2:#1976d2;
  --accent:#ffb300;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f8fafc;
  --white:#ffffff;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text); background:var(--bg); }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }

/* Layout */
.container { width:min(1120px, 92%); margin:0 auto; }
.section { padding:64px 0; }
.grid { display:grid; gap:24px; }

/* Navbar */
.navbar { position:sticky; top:0; z-index:50; background:var(--white); border-bottom:1px solid #e5e7eb; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand { display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; }
.brand .logo { width:36px; height:36px; background:linear-gradient(135deg,var(--brand),var(--brand-2)); border-radius:8px; display:grid; place-items:center; color:#fff; font-weight:900; }
.brand .title { line-height:1; }
.brand .title .small { font-size:11px; color:var(--muted); font-weight:600; }
.brand .title .big { font-size:16px; color:var(--brand); font-weight:900; text-transform:uppercase; }

.nav { display:flex; gap:18px; align-items:center; }
.nav a { padding:8px 10px; border-radius:8px; color:#334155; font-weight:600; }
.nav a:hover { background:#eef2ff; color:var(--brand); }

.menu-btn { display:none; background:none; border:0; font-size:24px; }

/* Hero */
.hero { display:grid; grid-template-columns: 1.2fr 1fr; align-items:center; gap:40px; padding:56px 0 24px; }
.hero h1 { font-size:44px; margin:0 0 12px; line-height:1.1; }
.hero h1 .accent { color:var(--brand); }
.hero p { color:#475569; font-size:18px; margin:0 0 20px; }
.cta { display:flex; gap:12px; align-items:center; }
.btn { padding:12px 16px; border-radius:10px; font-weight:700; border:2px solid transparent; cursor:pointer; }
.btn-primary { background:linear-gradient(135deg,var(--brand),var(--brand-2)); color:#fff; }
.btn-primary:hover { filter:brightness(.97); }
.btn-outline { background:#fff; color:var(--brand); border-color:var(--brand-2); }
.btn-outline:hover { background:#f1f5f9; }

.hero-badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.badge { background:#eef2ff; color:var(--brand); padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px; border:1px solid #c7d2fe; }

.hero-image { position:relative; }
.hero-image .card { position:absolute; right:8%; bottom:-18px; background:#fff; border-radius:14px; box-shadow:0 10px 30px rgba(2,6,23,.15); padding:14px 16px; font-weight:700; color:#1f2937; }

/* Gallery */
.gallery { padding:20px 0 60px; }
.gallery .grid { grid-template-columns: repeat(12, 1fr); }
.gallery .grid img { border-radius:12px; height:100%; object-fit:cover; }
.gallery .item-1 { grid-column: span 7; height:420px; }
.gallery .item-2 { grid-column: span 5; height:420px; }
.gallery .item { grid-column: span 3; height:220px; }

/* Sections */
.section h2 { font-size:30px; margin:0 0 8px; }
.muted { color:var(--muted); margin-bottom:16px; }

.cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:18px; }
.card h3 { margin:0 0 8px; font-size:18px; }
.card p { margin:0; color:#475569; }

/* Forms */
form { background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:20px; }
.field { margin-bottom:14px; }
.field label { display:block; font-weight:700; margin-bottom:6px; }
.field input, .field textarea, .field select { width:100%; padding:12px; border:1px solid #cbd5e1; border-radius:10px; font-size:14px; }
.field textarea { min-height:120px; resize:vertical; }
.field .help { color:#64748b; font-size:12px; margin-top:6px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.checkbox { display:flex; gap:10px; align-items:flex-start; }
.checkbox input { margin-top:4px; }

.contact-details { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; }
.contact-details .item { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:14px; }

/* Footer */
footer { background:#0b1220; color:#cbd5e1; padding:28px 0; margin-top:48px; }
footer a { color:#e2e8f0; }
footer .brand-footer { font-weight:800; color:#fff; }

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns:1fr; }
  .gallery .grid { grid-template-columns: repeat(6, 1fr); }
  .gallery .item-1 { grid-column:span 6; height:320px; }
  .gallery .item-2 { grid-column:span 6; height:320px; }
  .gallery .item { grid-column:span 3; height:200px; }
}
@media (max-width: 720px) {
  .nav { display:none; }
  .menu-btn { display:block; }
}

