:root {
  --navy: #07101f;
  --navy-2: #0d1a2d;
  --gold: #f4d867;
  --gold-2: #c8912c;
  --whatsapp: #25d366;
  --whatsapp-neon: #5cff9a;
  --whatsapp-2: #1fbd5a;
  --ink: #101827;
  --muted: #647084;
  --line: #e8e2d4;
  --paper: #fbf7ef;
  --paper-2: #f2eadb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 16, 31, 0.16);
  --soft-shadow: 0 16px 42px rgba(7, 16, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 16, 31, 0.9);
  border-bottom: 1px solid rgba(244, 216, 103, 0.18);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 158px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav a,
.footer-links a,
.header-cta,
.btn,
.floating-whatsapp {
  gap: 8px;
}

.nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  transition: color 0.18s ease;
}

.bi {
  line-height: 1;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.header-cta {
  padding: 11px 18px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.88rem;
}

.whatsapp-button,
.btn-primary.whatsapp-button {
  position: relative;
  isolation: isolate;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 42%),
    linear-gradient(135deg, var(--whatsapp-neon), var(--whatsapp), var(--whatsapp-2));
  box-shadow:
    0 0 0 1px rgba(92, 255, 154, 0.78),
    0 0 18px rgba(37, 211, 102, 0.78),
    0 0 42px rgba(37, 211, 102, 0.46),
    0 16px 42px rgba(37, 211, 102, 0.32);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.whatsapp-button .bi {
  color: var(--navy);
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--whatsapp-neon), rgba(37, 211, 102, 0.1), var(--whatsapp-neon));
  filter: blur(12px);
  opacity: 0.7;
  animation: whatsappPulse 1.8s ease-in-out infinite;
}

.whatsapp-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: whatsappShine 3s ease-in-out infinite;
}

.header-cta:hover,
.btn:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.whatsapp-button:hover {
  box-shadow:
    0 0 0 1px rgba(92, 255, 154, 0.95),
    0 0 22px rgba(92, 255, 154, 0.9),
    0 0 54px rgba(37, 211, 102, 0.62),
    0 18px 48px rgba(37, 211, 102, 0.38);
}

@keyframes whatsappPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

@keyframes whatsappShine {
  0%,
  42% {
    transform: translateX(-120%);
  }

  74%,
  100% {
    transform: translateX(120%);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.36), rgba(7, 16, 31, 0.02)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1800&q=84")
      center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.95) 0%, rgba(7, 16, 31, 0.76) 43%, rgba(7, 16, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 16, 31, 0.68), rgba(7, 16, 31, 0.02) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

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

.btn {
  padding: 15px 24px;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 42px rgba(200, 145, 44, 0.26);
  border: 0;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.trust-row {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(244, 216, 103, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 16, 31, 0.2);
  font-size: 0.88rem;
}

.hero-metrics strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.trust-row .bi,
.local-section .bi {
  color: var(--gold);
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.wide {
  max-width: 940px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-text {
  color: #3d4656;
  font-size: 1.06rem;
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 216, 103, 0.12), transparent 32%),
    var(--navy);
}

.service-grid {
  row-gap: 18px;
}

.service-grid article {
  min-height: 178px;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(244, 216, 103, 0.2);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 216, 103, 0.4);
  background: rgba(255, 255, 255, 0.075);
}

.service-icon,
.trust-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-size: 1.25rem;
}

.service-grid p,
.dark-band .section-heading {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-section {
  background: var(--paper-2);
}

.gallery {
  row-gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.gallery-card.large {
  min-height: 540px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  border-radius: 4px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: var(--white);
}

.split-media {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.08), rgba(7, 16, 31, 0.36)),
    url("https://images.unsplash.com/photo-1600566753151-384129cf4e3e?auto=format&fit=crop&w=1100&q=82")
      center / cover;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.split-content {
  max-width: 650px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #3d4656;
}

.check-list .bi {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.95rem;
}

.process {
  background: var(--paper);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--gold-2);
  font-weight: 900;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.96), rgba(13, 26, 45, 0.92)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1500&q=80")
      center / cover;
  border-top: 1px solid rgba(244, 216, 103, 0.22);
  border-bottom: 1px solid rgba(244, 216, 103, 0.22);
}

.local-section p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.local-section p:last-child .bi {
  margin-right: 8px;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  row-gap: 18px;
}

.trust-card {
  height: 100%;
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--gold-2);
  background: #f8f4ea;
  border-radius: 8px;
}

.trust-icon {
  color: var(--gold);
  background: var(--navy);
}

.trust-card p {
  margin-bottom: 0;
  color: #2f3745;
  font-size: 1.04rem;
}

.faq {
  background: var(--paper-2);
}

.faq-list {
  max-width: 980px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(7, 16, 31, 0.06);
}

.accordion-item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordion-button {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #f8f4ea;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: rgba(200, 145, 44, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(244, 216, 103, 0.2);
}

.accordion-button .bi {
  color: var(--gold-2);
}

.accordion-body {
  color: #3d4656;
  padding: 0 24px 22px;
}

.cta-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(54px, 7vw, 90px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(244, 216, 103, 0.14), transparent 28%),
    var(--navy);
}

.cta-section img {
  width: 220px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

.cta-section h2 {
  max-width: 780px;
}

.cta-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.75);
  background: #040a14;
}

.footer strong {
  color: var(--gold);
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, var(--whatsapp-neon), var(--whatsapp), var(--whatsapp-2));
  border-radius: 4px;
  font-weight: 900;
}

.floating-whatsapp::before {
  opacity: 0.48;
  filter: blur(9px);
}

.whatsapp-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.94), rgba(7, 16, 31, 0.82)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1600&q=82")
      center / cover;
}

.whatsapp-redirect {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 18px;
}

.whatsapp-panel {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 46px);
  text-align: center;
  border: 1px solid rgba(244, 216, 103, 0.22);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.whatsapp-panel > img {
  width: min(210px, 58vw);
  height: auto;
  margin: 0 auto 22px;
}

.whatsapp-panel > .bi {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--whatsapp-neon);
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow:
    0 0 18px rgba(92, 255, 154, 0.82),
    0 0 42px rgba(37, 211, 102, 0.42);
}

.whatsapp-panel h1 {
  max-width: 470px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
}

.whatsapp-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-panel a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}

.redirect-timer {
  height: 6px;
  margin: 24px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.redirect-timer span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--whatsapp-neon), var(--whatsapp));
  box-shadow: 0 0 18px rgba(92, 255, 154, 0.72);
  transform-origin: left center;
  animation: redirectTimer 3s linear forwards;
}

@keyframes redirectTimer {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .intro,
  .split,
  .local-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-card.large {
    grid-row: span 1;
  }

  .split-media {
    min-height: 380px;
  }

  .hero {
    min-height: 92vh;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand img {
    width: 106px;
    height: 42px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 46px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 31, 0.97), rgba(7, 16, 31, 0.82)),
      linear-gradient(0deg, rgba(7, 16, 31, 0.8), rgba(7, 16, 31, 0.22));
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-row span {
    width: 100%;
  }

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

  .hero-metrics span {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    padding: 14px 16px;
  }

  .service-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .split-media {
    min-height: 300px;
  }

  .cta-section img {
    width: 118px;
    height: 70px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
