:root {
  --primary: #0d7a55;
  --primary-dark: #086743;
  --primary-light: #e4f3ec;
  --accent: #f5a623;
  --accent-dark: #dd8f05;
  --navy: #12293f;
  --navy-2: #1c3f5e;
  --dark: #16293b;
  --gray: #5d6d7e;
  --light: #f4f9f6;
  --white: #ffffff;
  --border: #e2ece7;
  --gold: #e9b949;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(18, 41, 63, 0.08);
  --shadow-lg: 0 20px 55px rgba(18, 41, 63, 0.14);
  --grad-primary: linear-gradient(135deg, #0d8a5f 0%, #0b6e4f 45%, #14557a 100%);
  --grad-gold: linear-gradient(120deg, #f5a623 0%, #e9b949 60%, #f5c56b 100%);
  --maxw: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: linear-gradient(90deg, #fff3d1, #ffe9b3);
  color: var(--navy);
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #f0ddac;
}

.promo-bar strong {
  color: var(--accent-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(11, 110, 79, 0.35);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(11, 110, 79, 0.35);
  flex-shrink: 0;
}

.brand-logo-lg {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.brand-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 25px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, #0d8a5f 0%, #0b6e4f 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 110, 79, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0b6e4f 0%, #086743 100%);
  box-shadow: 0 10px 26px rgba(11, 110, 79, 0.4);
}

.btn-accent {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-small {
  padding: 0.5rem 1.05rem;
  font-size: 0.88rem;
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #1eb958;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 460px at 88% -12%, rgba(245, 166, 35, 0.16), transparent 60%),
    radial-gradient(900px 480px at -8% 112%, rgba(13, 122, 85, 0.13), transparent 60%),
    linear-gradient(135deg, #f0faf4 0%, #eef5fc 55%, #fff7e6 100%);
  color: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M0 45h90M45 0v90' stroke='rgba(11,110,79,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #fff3d1, #ffe9b3);
  border: 1px solid #f0c34f;
  color: #8a6400;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.18);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.1rem;
  color: var(--navy);
}

.hero h1 span {
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.2rem;
  font-size: 0.92rem;
  color: var(--gray);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}

.hero-points li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

/* Hero visual / placeholder */
.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.price-tag {
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* .btn-outline is used inside hero and page-hero (light background now) */
.hero .btn-outline,
.page-hero .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--light);
}

.section-navy {
  background: linear-gradient(135deg, #eaf5ef 0%, #e9f1f8 100%);
  color: var(--navy);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-align: center;
  letter-spacing: -0.4px;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.section-title::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.section-navy .section-title {
  color: var(--navy);
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 640px;
  margin: 1.1rem auto 3rem;
}

.section-navy .section-sub {
  color: var(--gray);
}

/* ---------- Feature strip (Why us) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #e4f3ec 0%, #fdf1d7 100%);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.feature p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

/* ---------- Cards / services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 1;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.card-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
}

.card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  flex: 1;
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.4rem;
}

/* ---------- Placeholder image ---------- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(620px 300px at 92% -6%, rgba(245, 166, 35, 0.14), transparent 60%),
    linear-gradient(135deg, #dff0e8 0%, #d5e6f2 100%);
  color: var(--primary-dark);
  aspect-ratio: 16 / 10;
  text-align: center;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M0 22h44M22 0v44' stroke='rgba(11,110,79,0.12)' stroke-width='1.5'/%3E%3C/svg%3E");
}

.ph::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 118px;
  height: 26px;
  background: url("watermark.svg") center / contain no-repeat;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.ph-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem;
}

.ph-inner svg {
  width: 46px;
  height: 46px;
  opacity: 0.85;
}

.ph-label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.ph-sub {
  font-size: 0.78rem;
  opacity: 0.75;
  font-weight: 600;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 70%, var(--navy-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  right: 1.2rem;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, serif;
  color: var(--primary-light);
}

.testimonial .stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial p {
  color: var(--gray);
  font-size: 0.97rem;
  flex: 1;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial .avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 4px 12px rgba(11, 110, 79, 0.3);
}

.testimonial .who strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial .who span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 50% -25%, rgba(255, 255, 255, 0.65), transparent 60%),
    linear-gradient(135deg, #fff6df 0%, #ecf7f0 55%, #e8f2fb 100%);
  color: var(--navy);
  text-align: center;
  padding: 3.6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M0 45h90M45 0v90' stroke='rgba(11,110,79,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}

.cta-band > .container {
  position: relative;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.cta-band p {
  color: var(--gray);
  margin-bottom: 1.8rem;
}

.cta-phones {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-phones a {
  color: var(--primary);
  text-decoration: none;
}

.cta-phones a:hover {
  text-decoration: underline;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 88% -15%, rgba(245, 166, 35, 0.15), transparent 60%),
    radial-gradient(760px 400px at -8% 110%, rgba(13, 122, 85, 0.12), transparent 60%),
    linear-gradient(135deg, #f0faf4 0%, #eef5fc 60%, #fff7e6 100%);
  color: var(--navy);
  padding: 4.4rem 1.5rem 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M0 45h90M45 0v90' stroke='rgba(11,110,79,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.page-hero p {
  max-width: 680px;
  color: var(--gray);
  margin-bottom: 1.6rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  color: var(--gray);
}

.breadcrumbs li::after {
  content: "›";
  margin-left: 0.4rem;
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  color: var(--primary-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

.breadcrumbs li:last-child {
  color: var(--accent-dark);
}

/* ---------- Split content ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.split-rev .split-media {
  order: -1;
}

.split-media .ph {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.content-block h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 0.8rem;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.content-block .lead {
  font-size: 1.08rem;
  color: var(--dark);
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--dark);
  font-weight: 500;
}

.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ---------- Areas grid ---------- */
.area-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.55rem;
}

.area-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.area-links a::before {
  content: "📍";
  font-size: 0.9rem;
}

.area-links a:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--gray);
}

/* ---------- Contact form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-card h3 {
  color: var(--navy);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--light);
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.contact-form .btn {
  margin-top: 0.3rem;
}

.wa-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.4rem 0 0.2rem;
}

.wa-divider::before,
.wa-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success .icon {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.form-success h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-success p {
  color: var(--gray);
}

/* ---------- Contact info cards ---------- */
.info-cards {
  display: grid;
  gap: 1.2rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.info-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.info-card h4 {
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.info-card p,
.info-card a {
  color: var(--gray);
  font-size: 0.95rem;
  text-decoration: none;
}

.info-card a:hover {
  color: var(--primary);
}

/* ---------- Map placeholder ---------- */
.map-ph {
  border-radius: var(--radius);
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(620px 300px at 90% -8%, rgba(245, 166, 35, 0.13), transparent 60%),
    linear-gradient(135deg, #dcebe4 0%, #d3e4f0 100%);
  color: var(--primary-dark);
  text-align: center;
  font-weight: 700;
  border: 1px solid var(--border);
}

/* ---------- Store locator ---------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.store-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.store-card p {
  color: var(--gray);
  margin-bottom: 0.35rem;
}

.store-card .phone {
  font-weight: 700;
  color: var(--primary);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #f1f9f5 0%, #e6f1ec 100%);
  color: var(--gray);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 0.9rem;
}

.footer h4 {
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer ul a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 90;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-call {
  background: var(--primary);
}

.float-wa {
  background: #25d366;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .brand-tag {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-rev .split-media {
    order: 0;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-call {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1.1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .section {
    padding: 3.6rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
