:root {
  --bg: #f2f4f7;
  --bg-soft: #eef2f6;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-600: #475569;
  --line: #dbe3ee;
  --orange: #ff7a1a;
  --orange-strong: #e35f00;
  --orange-soft: #ffd6b5;
  --teal-soft: #95e5dd;
  --whatsapp: #25d366;
  --whatsapp-strong: #19b955;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 122, 26, 0.09) 0%, transparent 32%),
    radial-gradient(circle at 8% 22%, rgba(149, 229, 221, 0.11) 0%, transparent 28%),
    linear-gradient(180deg, #f6f8fb 0%, #eef2f6 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 0.45rem;
  z-index: 999;
}

.wrap {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--ink-600);
  padding: 0.52rem 0;
  border-bottom: 1px solid var(--line);
}

.top-bar p {
  margin: 0;
}

.top-bar a {
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 700;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--ink-900);
  text-decoration: none;
  font: 700 1.14rem/1.1 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

nav a {
  color: var(--ink-700);
  text-decoration: none;
  font: 700 0.95rem/1 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.22s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink-900);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 122, 26, 0.14) 0%, transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(149, 229, 221, 0.16) 0%, transparent 28%),
    linear-gradient(155deg, #f8fafc 0%, #f2f5f9 50%, #edf2f7 100%);
  border-bottom: 1px solid var(--line);
}

.hero {
  padding: 4.2rem 0 3.4rem;
}

.page-hero {
  padding: 3.7rem 0 2.7rem;
}

.shape {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
}

.shape-a {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.44), rgba(255, 122, 26, 0.05));
  top: -100px;
  right: -70px;
}

.shape-b {
  background: linear-gradient(135deg, rgba(149, 229, 221, 0.62), rgba(149, 229, 221, 0.04));
  bottom: -110px;
  left: -70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0.4rem 0 1rem;
  font: 700 clamp(2rem, 4.2vw, 3.35rem) / 1.03 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #0f172a;
}

.lead {
  margin: 0 0 1.35rem;
  max-width: 65ch;
  color: var(--ink-600);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font: 700 0.8rem/1 "Rajdhani", "Segoe UI", sans-serif;
  color: #d16100;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin: 1.25rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.8rem 1.14rem;
  border: 1px solid transparent;
  text-decoration: none;
  font: 700 0.95rem/1 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #2a1706;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-strong);
  color: #fff;
}

.btn-outline {
  color: var(--ink-900);
  border-color: #c6d1df;
  background: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #95a6bb;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #062b14;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp-strong);
  color: #fff;
}

.trust-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.trust-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 0.8rem;
  border: 1px solid #e5ebf3;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.58rem;
}

.stat-grid article {
  border-radius: 0.8rem;
  padding: 0.62rem;
  border: 1px solid #e3eaf3;
  background: #f8fbff;
}

.stat-grid h2 {
  margin: 0;
  color: #0f172a;
  font: 700 1.2rem/1 "Rajdhani", "Segoe UI", sans-serif;
}

.stat-grid p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #4c5d73;
}

.section {
  padding: 3.2rem 0;
}

.section-accent {
  background: linear-gradient(180deg, #f4f7fb 0%, #edf2f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0.35rem 0 0.95rem;
  color: var(--ink-900);
  font: 700 clamp(1.55rem, 3vw, 2.4rem) / 1.08 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section p {
  color: var(--ink-700);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.card h3,
.card h2 {
  margin: 0.2rem 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card p {
  margin: 0;
}

.card a {
  color: #0f4f97;
  text-decoration: none;
  font-weight: 700;
}

.card a:hover,
.card a:focus-visible {
  text-decoration: underline;
}

.card.numbered span {
  display: inline-flex;
  width: 42px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffe8d4;
  color: #954708;
  font: 700 1rem/1 "Rajdhani", "Segoe UI", sans-serif;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.location-card {
  border-radius: var(--radius-lg);
  border: 1px solid #dbe3ee;
  background: linear-gradient(170deg, #ffffff 0%, #f6f9fd 100%);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.location-card h3 {
  margin: 0.2rem 0 0.4rem;
  font: 700 1.36rem/1.08 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  color: #0f172a;
}

.location-card p {
  margin: 0 0 0.75rem;
  color: #475569;
}

.location-card a {
  color: #0f4f97;
  font: 700 0.92rem/1 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.location-card a:hover,
.location-card a:focus-visible {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
}

.gallery-grid.full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.66rem 0.78rem;
  font-size: 0.9rem;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.tag-grid span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  padding: 0.44rem 0.78rem;
  font: 700 0.83rem/1 "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-note {
  margin-top: 0.95rem;
  color: #5b6a80;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 0.72rem 0.86rem;
  margin-bottom: 0.68rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cta-block {
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 122, 26, 0.14) 0%, transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(149, 229, 221, 0.16) 0%, transparent 30%),
    linear-gradient(145deg, #f6f9fd 0%, #edf2f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-block h2,
.cta-block p {
  color: var(--ink-900);
}

.site-footer {
  margin-top: 2.2rem;
  background: #f8fafc;
  color: #334155;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.95fr;
  gap: 1.15rem;
  padding: 1.95rem 0 1.2rem;
}

.site-footer h2 {
  margin: 0 0 0.42rem;
  color: #0f172a;
  font: 700 1.08rem/1.1 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #0f4f97;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.87rem;
  padding: 0.85rem 0 1rem;
  border-top: 1px solid var(--line);
}

.footer-base p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

label {
  display: inline-block;
  margin: 0.45rem 0 0.2rem;
  font: 700 0.92rem/1 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.7rem;
  padding: 0.66rem 0.75rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 122, 26, 0.32);
  outline-offset: 1px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0.64rem 0 0;
  font-size: 0.86rem;
  color: #5f6a80;
}

.service-card ul {
  margin: 0.64rem 0 0;
  padding-left: 1.05rem;
}

.prose {
  max-width: 900px;
}

.prose h2 {
  margin-top: 1.7rem;
}

.prose h3 {
  margin: 0.5rem 0 0.5rem;
  font: 700 1.15rem/1.1 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.prose p + ul,
.prose p + ol {
  margin-top: 0.4rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-700);
}

.prose li {
  margin-bottom: 0.4rem;
}

.callout-box {
  margin-top: 1.4rem;
  border: 1px solid #cfe0ee;
  background: linear-gradient(165deg, #f5fbff 0%, #edf6ff 100%);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.callout-box h3 {
  color: var(--ink-900);
}

.callout-box p {
  color: var(--ink-700);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.6rem;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  border-radius: 999px;
  padding: 0.72rem 0.98rem;
  text-decoration: none;
  font: 700 0.84rem/1 "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.floating-btn.whatsapp {
  background: var(--whatsapp);
  color: #062b14;
}

.floating-btn.whatsapp:hover,
.floating-btn.whatsapp:focus-visible {
  background: var(--whatsapp-strong);
  color: #fff;
}

.floating-btn.quote {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
}

.floating-btn.quote:hover,
.floating-btn.quote:focus-visible {
  border-color: #94a3b8;
}

@media (max-width: 1080px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .card-grid.three,
  .card-grid.two,
  .gallery-grid,
  .gallery-grid.full,
  .footer-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    max-width: 580px;
  }

  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  }

  nav.is-open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 1rem 1rem;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 560px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

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

  .floating-cta {
    left: 1rem;
    right: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
