/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --orange: #E87722;
  --orange-dark: #c9611a;
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-light: #2a4f8f;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --text-muted: #555;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; text-align: center; }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.accent { color: var(--orange); }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo em { color: var(--orange); font-style: normal; }
#navLinks {
  display: flex;
  align-items: center;
  gap: 28px;
}
#navLinks a {
  color: #cdd6e8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
#navLinks a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #1e4a8a 70%, #2a3a6b 100%);
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,119,34,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,119,34,0.12) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 760px;
}
.hero-logo {
  width: 260px;
  max-width: 80vw;
  margin: 0 auto 28px;
  border-radius: 12px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.1rem;
  color: #c8d6ee;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--orange);
  padding: 14px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.trust-inner span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--light-bg);
  padding: 70px 24px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--orange);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.svc-img-wrap {
  height: 170px;
  overflow: hidden;
  background: var(--navy);
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }
.svc-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  padding: 16px 18px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 18px 18px;
  line-height: 1.55;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy-dark);
  padding: 70px 24px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.contact-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--orange);
  margin-top: 8px;
  border-radius: 2px;
}
.contact-info > p {
  color: #a8bcda;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.cinfo-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.cinfo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.cinfo-item:hover { color: var(--orange); }
.cicon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-logo {
  width: 100px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  opacity: 0.85;
}

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #dde3ee;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #fafbff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-check input { width: auto; margin-top: 3px; accent-color: var(--orange); }
.form-check label { font-size: 0.82rem; color: #555; }
.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: #e6f9ee;
  border: 1px solid #7dd9a3;
  border-radius: 6px;
  color: #1a7a42;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: #fdecea;
  border: 1px solid #f5a8a0;
  border-radius: 6px;
  color: #c0392b;
  font-size: 0.92rem;
}
.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}
.form-note a { color: var(--orange); text-decoration: underline; }
.form-note code {
  background: #f0f0f0;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.78rem;
}
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.footer {
  background: #0d2245;
  padding: 28px 24px 16px;
  text-align: center;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.footer-inner p { color: #cdd6e8; font-size: 0.92rem; }
.footer-inner strong { color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1rem; }
.footer-inner .motto { color: var(--orange); font-style: italic; font-size: 0.85rem; }
.footer-inner a { color: #a8bcda; transition: color 0.2s; }
.footer-inner a:hover { color: var(--orange); }
.footer-copy { color: #5a7099; font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 20px 24px;
    gap: 18px;
    border-top: 2px solid var(--orange);
  }
  #navLinks.open { display: flex; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-logo { display: none; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 12px 20px; }
}
@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
}
