:root {
  --navy-950: #071a2d;
  --navy-900: #0b2945;
  --navy-800: #103b62;
  --blue: #155889;
  --cyan: #1ca3ad;
  --cyan-soft: #dff4f6;
  --accent: #1b5f9e;
  --accent-soft: #e8f2fb;
  --text: #1f2b35;
  --muted: #687785;
  --light: #f4f7fa;
  --white: #ffffff;
  --line: #dfe7ee;
  --shadow: 0 18px 50px rgba(7, 26, 45, 0.10);
  --shadow-lg: 0 25px 70px rgba(7, 26, 45, 0.16);
  --radius: 20px;
  --radius-sm: 13px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p {
  color: var(--muted);
}

.page-section {
  display: none;
  animation: sectionIn 360ms ease both;
}

.page-section.active-section {
  display: block;
}

@keyframes sectionIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 59, 98, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(7, 26, 45, 0.06);
}

.header-inner {
  width: min(1380px, 100% - 48px);
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link,
.nav-cta {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-link {
  padding: 28px 0;
  color: var(--navy-900);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--accent);
  transition: width var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(11, 41, 69, 0.16);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(11, 41, 69, 0.22);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-900);
  border-radius: 99px;
}

/* =========================================================
   MOBILE PANEL
========================================================= */

.mobile-panel {
  position: fixed;
  top: 0;
  right: -360px;
  z-index: 2200;
  width: min(360px, 88vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.22);
  transition: right 320ms ease;
}

.mobile-panel.active {
  right: 0;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-panel-head > div {
  display: flex;
  flex-direction: column;
}

.micro-label {
  margin-bottom: 3px;
  color: #85d8de;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.mobile-panel-head strong {
  font-size: 1.1rem;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 5px;
}

.mobile-nav a {
  padding: 15px 14px;
  border-radius: 11px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 700;
  transition: background var(--ease), color var(--ease), padding var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  padding-left: 18px;
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.mobile-nav .mobile-cta {
  margin-top: 12px;
  color: #fff;
  background: var(--accent);
}

.mobile-nav .mobile-cta:hover {
  background: #2a72b5;
}

.mobile-panel-footer {
  margin-top: auto;
  padding: 20px 22px 28px;
  display: grid;
  gap: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

.mobile-panel-footer a {
  color: #9be0e5;
  text-decoration: none;
  font-weight: 700;
}

.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(7, 26, 45, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.panel-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   COMMON SECTION
========================================================= */

.section-shell {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  padding: 25px 0;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 20px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--navy-900);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.section-heading p {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.section-heading-light p {
  color: rgba(255,255,255,0.67);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  width: min(1280px, 100% - 48px);
  min-height: 590px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--navy-950);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background:
    radial-gradient(circle at 8% 8%, rgba(28,163,173,0.18), transparent 34%),
    linear-gradient(145deg, #071a2d, #0d3557 78%);
}

.hero-copy .eyebrow {
  color: #7fdae0;
}

.hero-copy h1 {
  max-width: 600px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero-copy h1 span {
  display: block;
  color: #9ce5e9;
}

.hero-copy > p {
  max-width: 560px;
  margin: 25px 0 28px;
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(239,138,36,0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #2a72b5;
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.09);
}

.hero-meta {
  max-width: 590px;
  margin-top: 42px;
  padding-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  color: #fff;
  font-size: 1.45rem;
}

.hero-meta span {
  color: rgba(255,255,255,0.56);
  font-size: 0.74rem;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  background: #e9eef3;
  overflow: hidden;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: contain;
  object-position: center;
  background: #e9eef3;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(7,26,45,0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fe4e8;
  box-shadow: 0 0 0 5px rgba(127,228,232,0.10);
}

.quick-strip {
  width: min(1120px, 100% - 80px);
  margin: -1px auto 0;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 35px rgba(7,26,45,0.07);
}

.quick-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
}

.quick-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #154e83;
  font-size: 0.68rem;
  font-weight: 900;
}

.quick-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.88rem;
}

.quick-item span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

/* =========================================================
   ABOUT
========================================================= */

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
}

.about-image-card {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-image-card > img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  background: #eef2f5;
  border-radius: 16px;
}

.image-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-image-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 17px 18px;
  border-radius: 14px;
  color: #fff;
  background: rgba(7,26,45,0.86);
  backdrop-filter: blur(9px);
}

.about-image-caption strong {
  font-size: 0.92rem;
}

.about-image-caption span {
  color: rgba(255,255,255,0.63);
  font-size: 0.73rem;
}

.about-content {
  min-width: 0;
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.about-tab {
  position: relative;
  padding: 11px 5px 13px;
  margin-right: 19px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.about-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width var(--ease);
}

.about-tab:hover,
.about-tab.active-tab {
  color: var(--navy-900);
}

.about-tab.active-tab::after {
  width: 100%;
}

.about-panel {
  position: relative;
  min-height: 360px;
  padding: 35px 34px 35px 70px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(7,26,45,0.05);
}

.panel-number {
  position: absolute;
  left: 28px;
  top: 31px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.about-panel h3 {
  color: var(--navy-900);
  margin-bottom: 19px;
  font-size: 1.5rem;
}

.about-panel p {
  line-height: 1.78;
}

.about-panel p + p {
  margin-top: 14px;
}

.about-panel strong {
  color: var(--navy-900);
}

.trust-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article {
  padding: 23px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}

.trust-index {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.trust-grid h3 {
  margin: 9px 0 7px;
  color: var(--navy-900);
  font-size: 1rem;
}

.trust-grid p {
  font-size: 0.84rem;
  line-height: 1.65;
}

/* =========================================================
   SERVICES
========================================================= */

.page-section-dark {
  background:
    radial-gradient(circle at 8% 0%, rgba(28,163,173,0.11), transparent 28%),
    linear-gradient(160deg, #081c30, #0c3150 70%, #0a2740);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.services-intro-card {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.service-image-wrap {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #eaeef2;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center;
}

.services-intro-copy {
  padding: 28px;
}

.mini-title {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.services-intro-copy h3 {
  margin: 9px 0 11px;
  color: var(--navy-900);
  font-size: 1.45rem;
  line-height: 1.15;
}

.services-intro-copy p {
  line-height: 1.7;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 800;
}

.text-link:hover {
  color: var(--accent);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 15px;
  min-height: 180px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 17px;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.21);
  background: rgba(255,255,255,0.085);
}

.service-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: #8ee0e4;
  font-size: 0.7rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.28;
  font-size: 1rem;
}

.service-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* =========================================================
   PERSONAL
========================================================= */

.personal-intro {
  max-width: 1020px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(7,26,45,0.05);
}

.personal-intro-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.personal-intro strong {
  color: var(--navy-900);
}

.personal-intro p {
  margin-top: 4px;
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  padding: 28px 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(7,26,45,0.055);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #d3e0e9;
  box-shadow: 0 16px 34px rgba(7,26,45,0.09);
}

.info-card:nth-child(5) {
  grid-column: 1 / -1;
}

.card-index {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.info-card h3 {
  margin: 8px 0 15px;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.3;
}

.card-lead {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.info-card ul {
  padding-left: 18px;
}

.info-card li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.personal-final {
  max-width: 920px;
  margin: 38px auto 0;
  padding: 35px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(28,163,173,0.16), transparent 42%),
    var(--navy-900);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.personal-final .eyebrow {
  color: #8de0e5;
}

.personal-final h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.personal-final p {
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
}

.personal-final strong {
  color: #fff;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: linear-gradient(180deg, #fff, #f6f8fb);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(420px, 1.15fr);
  gap: 24px;
}

.contact-panel {
  padding: 31px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(28,163,173,0.19), transparent 30%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.contact-panel-head h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.contact-panel-head p {
  color: rgba(255,255,255,0.62);
  font-size: 0.87rem;
}

.contact-list {
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: #9fe4e8;
  font-weight: 900;
}

.contact-item div {
  display: grid;
  gap: 4px;
}

.contact-item small {
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: #9fe4e8;
}

.whatsapp-contact {
  margin-top: 22px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-radius: 13px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  transition: transform var(--ease), filter var(--ease);
}

.whatsapp-contact:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.whatsapp-contact span {
  font-size: 0.76rem;
  opacity: 0.82;
}

.whatsapp-contact strong {
  font-size: 0.84rem;
}

.map-panel {
  min-height: 590px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e8edf1;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
}

/* =========================================================
   QUOTE
========================================================= */

.quote-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(28,163,173,0.10), transparent 28%),
    #f4f7fa;
}

.quote-shell {
  display: block;
}

.quote-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.quote-copy h2 {
  color: var(--navy-900);
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.quote-copy > p {
  max-width: 700px;
  margin: 17px auto 0;
  line-height: 1.75;
}

.quote-points {
  max-width: 1000px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-points > div {
  min-width: 0;
  padding: 21px 20px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7,26,45,0.055);
}

.quote-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #154e83;
  font-size: 0.66rem;
  font-weight: 900;
}

.quote-points strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.quote-points small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.quote-form {
  width: min(900px, 100%);
  margin: 40px auto 0;
  padding: 33px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.form-group label {
  color: var(--navy-900);
  font-size: 0.77rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d6e0e7;
  border-radius: 11px;
  background: #fbfcfd;
  color: var(--text);
  outline: none;
  padding: 13px 14px;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-group textarea {
  min-height: 145px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(28,163,173,0.10);
}

.submit-btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  transition: background var(--ease), transform var(--ease);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.form-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.72rem;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(7,26,45,0.22);
  transition: transform var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float span {
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #061625;
  color: #fff;
}

.footer-main {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 50px;
}

.footer-brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand-title strong {
  font-size: 1.3rem;
  letter-spacing: 2.3px;
}

.footer-brand-title span {
  margin-top: 6px;
  color: rgba(255,255,255,0.49);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 17px 0 18px;
  color: rgba(255,255,255,0.58);
  font-size: 0.83rem;
}

.facebook-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #9de3e7;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.footer-col a {
  margin: 4px 0;
  color: rgba(255,255,255,0.59);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--ease), transform var(--ease);
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.43);
  font-size: 0.72rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .main-nav {
    gap: 17px;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .nav-cta {
    font-size: 0.82rem;
  }

  .hero-copy {
    padding: 48px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro-card {
    min-height: auto;
  }

  .service-image-wrap {
    min-height: 350px;
  }

  .quote-copy {
    max-width: 800px;
  }

  .quote-points {
    max-width: 800px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 32px, 1380px);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section-shell,
  .hero {
    width: min(100% - 32px, 1280px);
  }

  .hero {
    margin-top: 22px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 450px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .quick-strip {
    width: min(100% - 40px, 1120px);
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-image-card {
    max-width: 650px;
    margin: 0 auto;
  }

  .about-image-card > img {
    height: 430px;
    object-fit: contain;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 430px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .section-shell {
    padding: 30px 0;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 46px 22px 38px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4.3rem);
    letter-spacing: -2px;
  }

  .hero-copy > p {
    font-size: 0.93rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-badge {
    left: 15px;
    bottom: 15px;
  }

  .quick-strip {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .about-image-card > img {
    height: 380px;
  }

  .about-image-caption {
    display: grid;
    gap: 2px;
  }

  .about-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .about-tab {
    flex-shrink: 0;
  }

  .about-panel {
    min-height: auto;
    padding: 28px 24px 28px 53px;
  }

  .panel-number {
    left: 22px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 150px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card:nth-child(5) {
    grid-column: auto;
  }

  .personal-final {
    padding: 28px 22px;
  }

  .contact-panel {
    padding: 25px 22px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .quote-form {
    padding: 24px 19px;
  }

  .quote-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-points > div {
    padding: 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .section-heading h2 {
    font-size: 2rem;
  }

  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .quick-strip {
    padding: 16px 18px;
  }
}
