:root {
  --navy: #08265f;
  --navy-2: #0f3c79;
  --orange: #d98a00;
  --orange-2: #ffb51b;
  --ink: #17243a;
  --muted: #5d687a;
  --line: #dce3ec;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 27, 66, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.alt-bg { background: var(--soft); }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 14px;
}
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -.055em; }
h1 span { color: var(--orange); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.08rem; }
p { margin: 0 0 18px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,38,95,.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 168px; height: 58px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; color: var(--navy); }
.main-nav > a, .dropdown-toggle { position: relative; }
.main-nav > a::after, .dropdown-toggle::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--orange); transition: .25s;
}
.main-nav > a:hover::after, .dropdown-toggle:hover::after { width: 100%; }
.dropdown-toggle { border: 0; background: none; cursor: pointer; padding: 0; color: var(--navy); font-weight: 700; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: -24px;
  min-width: 360px;
  padding: 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,38,95,.08);
}
.dropdown-menu a { display: block; padding: 12px 14px; border-radius: 10px; color: var(--ink); font-weight: 600; }
.dropdown-menu a:hover { background: var(--soft); color: var(--orange); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  background:
    radial-gradient(circle at 85% 25%, rgba(255,181,27,.18), transparent 28%),
    linear-gradient(135deg, #f9fbfe 0%, #fff 48%, #f6f8fb 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.hero-copy > p { font-size: 1.12rem; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 13px 22px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 10px 24px rgba(217,138,0,.25); }
.btn-outline { color: var(--navy); border-color: rgba(8,38,95,.2); background: white; }
.btn-light { color: var(--navy); background: white; }
.btn-full { width: 100%; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-row div { padding: 16px 0; border-top: 1px solid var(--line); }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { color: var(--navy); }
.trust-row span { color: var(--muted); font-size: .85rem; }
.hero-card {
  background: white; border: 1px solid rgba(8,38,95,.08); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); position: relative;
}
.hero-card::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(217,138,0,.2); border-radius: 28px; z-index: -1; }
.hero-card img { width: 100%; max-height: 320px; object-fit: contain; margin: 0 auto 20px; }
.hero-card-text { padding: 18px 4px 0; border-top: 1px solid var(--line); }
.hero-card-text h3 { color: var(--navy); }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy p { font-size: 1.03rem; }

.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading > p { font-size: 1.08rem; }
.service-panel {
  display: grid; grid-template-columns: 110px 1fr; gap: 32px; padding: 50px; margin: 28px 0; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 12px 40px rgba(8,38,95,.06);
}
.service-panel-dark { color: white; background: linear-gradient(145deg, var(--navy), #0b356f); border: none; }
.service-panel-dark p, .service-panel-dark .service-number { color: rgba(255,255,255,.75); }
.service-panel-dark h3, .service-panel-dark h4 { color: white; }
.service-number { font-size: 3.2rem; font-weight: 800; color: rgba(8,38,95,.16); line-height: 1; }
.service-content .lead { font-size: 1.06rem; max-width: 850px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.service-grid > div { padding: 22px; border-radius: 14px; background: rgba(8,38,95,.04); }
.service-panel-dark .service-grid > div { background: rgba(255,255,255,.07); }

.cta-strip { background: linear-gradient(135deg, var(--orange), #f4a700); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-strip .eyebrow, .cta-strip h2 { color: white; }
.cta-strip h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-info > p { font-size: 1.04rem; }
.contact-card { margin-top: 18px; padding: 20px; border-radius: 14px; background: white; border: 1px solid var(--line); }
.contact-card span { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-card a { display: inline-block; margin-top: 4px; color: var(--navy); font-size: 1.18rem; font-weight: 800; }
.enquiry-form { background: white; border-radius: 20px; border: 1px solid var(--line); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; margin-top: 7px; border: 1px solid #cbd5e1; border-radius: 9px; padding: 12px 13px; background: #fff; color: var(--ink); outline: none;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(217,138,0,.12); }
.form-note { font-size: .78rem; margin: 12px 0 0; text-align: center; }

.site-footer { background: #071a3b; color: white; padding: 40px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.footer-brand img { width: 150px; background: white; border-radius: 10px; padding: 4px; }
.footer-brand p, .copyright { color: rgba(255,255,255,.65); margin: 10px 0 0; font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-weight: 600; }
.footer-links a:hover { color: var(--orange-2); }
.copyright { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: white; font-weight: 900; box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 82px; left: 20px; right: 20px; padding: 20px; background: white; border-radius: 14px; box-shadow: var(--shadow); align-items: stretch; flex-direction: column; gap: 18px;
  }
  .main-nav.active { display: flex; }
  .dropdown-menu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 10px 0 0 12px; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-card { max-width: 650px; }
  .service-panel { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 68px 0; }
  .brand { width: 135px; }
  .trust-row, .service-grid, .form-row { grid-template-columns: 1fr; }
  .service-panel { padding: 30px 22px; }
  .enquiry-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}


/* Enquiry form validation and submission status */
.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #b42318;
}

.enquiry-form input[aria-invalid="true"],
.enquiry-form select[aria-invalid="true"] {
  border-color: #b42318;
  outline-color: #b42318;
}

.form-status {
  display: none;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.form-status.success {
  display: block;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
}

.form-status.error {
  display: block;
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
}

.enquiry-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}
