/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f3460;
  --navy-dark:   #081e3f;
  --blue:        #1a6faf;
  --blue-light:  #eaf4fb;
  --teal:        #2a9d8f;
  --gold:        #c9a84c;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-100:    #eef1f6;
  --gray-300:    #c8d0dc;
  --gray-500:    #6b7a90;
  --gray-700:    #384152;
  --gray-900:    #111827;
  --font-body:   'Inter', sans-serif;
  --font-title:  'Playfair Display', serif;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-xs:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(15,52,96,.08);
  --shadow-lg:   0 12px 40px rgba(15,52,96,.14);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.mb-sm     { margin-bottom: 14px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(15,52,96,.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--blue-light); }
.btn-lg   { padding: 16px 38px; font-size: .95rem; }
.btn-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand { display: flex; align-items: center; }
.logo-img   { height: 50px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,30,63,.88) 0%,
    rgba(15,52,96,.70) 55%,
    rgba(15,52,96,.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
  flex: 1;
  max-width: 100%;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow span { display: block; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-title em {
  font-style: normal;
  color: #7ecfea;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 580px;
  text-align: center;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* HERO BOTTOM STRIP */
.hero-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
}
.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--teal);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 28px;
  border-right: 1px solid var(--gray-100);
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.strip-item strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.strip-item span {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-img-wrap { height: 195px; overflow: hidden; position: relative; }
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-body { padding: 26px 28px; text-align: center; }
.service-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.service-body p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; padding-bottom: 40px; }
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 185px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge span   { font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; opacity: .8; }

.about-content .section-tag,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--gray-500); margin-bottom: 16px; font-size: .95rem; line-height: 1.8; text-align: left; }

.about-divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 22px 0;
}

.about-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-700);
}
.check-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: 10px;
}
.cta-text p { font-size: .95rem; opacity: .75; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.link-blue { color: var(--blue); font-weight: 600; }
.link-blue:hover { text-decoration: underline; }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,52,96,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: .75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* MAP CARD */
.map-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.map-card-info {
  background: var(--navy);
  color: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.map-card-info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}
.map-card-info p { font-size: .9rem; opacity: .75; line-height: 1.7; }
.map-card-img { overflow: hidden; }
.map-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,.65); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 44px;
}
.footer-brand { margin-bottom: 16px; display: flex; align-items: center; }
.footer-logo { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-desc { font-size: .875rem; line-height: 1.8; max-width: 280px; }

.footer-heading {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-strip .container { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-top: 1px solid var(--gray-100); }
  .strip-item:nth-child(4) { border-top: 1px solid var(--gray-100); border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-secondary { right: -12px; width: 155px; }
  .about-badge { left: -10px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .map-card-img { height: 240px; }
  .topbar-left { gap: 16px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-link::after { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; }
  .hero-content { padding-top: 60px; padding-bottom: 50px; }
  .hero-strip .container { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 32px; }
  .map-card-info { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .hero-strip .container { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .strip-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-img-secondary { display: none; }
  .about-badge { display: none; }
  .section { padding: 70px 0; }
}
