:root {
  --green-950: #063f2e;
  --green-900: #084d38;
  --green-800: #126147;
  --gold: #d89b15;
  --gold-light: #f2bd45;
  --ivory: #fbf7ee;
  --mist: #eaf3ef;
  --ink: #12261f;
  --muted: #62706a;
  --line: rgba(8, 77, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
  min-height: 92px;
  width: min(1370px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  display: block;
  width: 205px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 35px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 26px;
  height: 2px;
  background: var(--gold-light);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  padding: 12px 17px 12px 21px;
  font-size: 13px;
  font-weight: 800;
  transition: 180ms ease;
}

.header-cta span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-950);
}

.header-cta:hover {
  background: white;
  color: var(--green-950);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--green-950);
  color: white;
}

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

.hero-media {
  background-image: url("/assets/amigo-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 44, 32, 0.93) 0%, rgba(5, 49, 35, 0.84) 34%, rgba(5, 49, 35, 0.25) 64%, rgba(5, 49, 35, 0.05) 100%),
    linear-gradient(0deg, rgba(5, 49, 35, 0.62) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 196px;
  padding-bottom: 135px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.4vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-gold {
  background: var(--gold-light);
  color: var(--green-950);
}

.button-gold:hover {
  background: white;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
}

.button-ghost:hover {
  background: white;
  color: var(--green-950);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 30px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero-contact {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(420px, 35vw);
  min-height: 105px;
  padding: 26px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gold);
  color: var(--green-950);
}

.hero-contact small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-contact strong {
  margin-top: 6px;
  font-size: 23px;
}

.intro-band {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  align-items: center;
  gap: 60px;
}

.intro-grid .eyebrow {
  margin: 0;
}

.intro-grid > p:last-child {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-size: clamp(21px, 2.1vw, 33px);
  line-height: 1.34;
}

.section {
  padding: 110px 0;
}

.services-section {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 53px;
}

.section-heading h2,
.first-cta h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 27px 28px 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(8, 77, 56, 0.09);
}

.service-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
}

.service-card h3 {
  margin: 34px 0 12px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card > a {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-800);
  transition: 180ms ease;
}

.service-card > a:hover,
.service-card > a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

.first-cta {
  padding: 96px 0;
  background: var(--green-950);
  color: white;
}

.first-cta-inner {
  display: grid;
  grid-template-columns: 0.45fr 1.6fr auto;
  align-items: center;
  gap: 60px;
}

.first-cta p {
  margin: 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.first-cta h2 {
  color: white;
  font-size: clamp(36px, 4vw, 60px);
}

.button-ivory {
  background: white;
  color: var(--green-950);
}

.button-ivory:hover {
  background: var(--gold-light);
}

.packages-section {
  background: #fffdf8;
}

.package-heading h2 {
  max-width: 780px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  box-shadow: 0 18px 50px rgba(8, 77, 56, 0.06);
}

.package-visual {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background-color: var(--green-900);
}

.package-visual::before,
.package-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.package-visual::before {
  width: 300px;
  height: 300px;
  right: -75px;
  top: -125px;
}

.package-visual::after {
  width: 190px;
  height: 190px;
  right: 28px;
  bottom: -110px;
}

.package-1 .package-visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 189, 69, 0.68), transparent 20%),
    linear-gradient(135deg, #7f3927, #d08637 52%, #174f3b);
}

.package-2 .package-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(126, 215, 255, 0.42), transparent 18%),
    linear-gradient(135deg, #073d54, #138498 55%, #c68a14);
}

.package-3 .package-visual {
  background:
    radial-gradient(circle at 77% 20%, rgba(255, 255, 255, 0.42), transparent 19%),
    linear-gradient(135deg, #153a2d, #4d7c55 52%, #a8b8a3);
}

.package-4 .package-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(246, 211, 133, 0.55), transparent 18%),
    linear-gradient(135deg, #752d25, #c66d32 53%, #d5a653);
}

.package-visual > span {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 108px;
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.9;
}

.package-visual > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-body {
  padding: 29px 30px 32px;
}

.package-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.package-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--green-800);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-body h3 {
  margin: 23px 0 12px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.package-body > p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.package-details {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-details summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
}

.package-details summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.package-details summary {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-details[open] summary span,
.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.package-details summary span,
.faq-list summary span {
  transition: transform 180ms ease;
}

.package-detail-content {
  padding: 3px 0 22px;
}

.package-detail-content h4 {
  margin: 16px 0 7px;
  color: var(--green-950);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-detail-content ul {
  margin: 0;
  padding-left: 18px;
}

.package-detail-content li,
.package-detail-content p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.package-detail-content p {
  margin: 0;
}

.package-detail-content small {
  display: block;
  margin-top: 16px;
  color: #7e6950;
  font-size: 10px;
  line-height: 1.5;
}

.package-link,
.text-link,
.instagram-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px solid var(--green-900);
  padding-bottom: 5px;
}

.package-link:hover,
.text-link:hover,
.instagram-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.package-note {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.visa-section {
  background: var(--ivory);
}

.visa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.visa-image {
  position: relative;
}

.visa-image img {
  display: block;
  width: 100%;
  min-height: 650px;
  object-fit: cover;
}

.visa-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.visa-badge {
  position: absolute;
  z-index: 2;
  right: -34px;
  bottom: 45px;
  width: 245px;
  padding: 27px 30px;
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 18px 45px rgba(7, 57, 42, 0.2);
}

.visa-badge strong,
.visa-badge span {
  display: block;
}

.visa-badge strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.visa-badge span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
}

.visa-copy h2,
.planner-copy h2,
.about-copy h2,
.process-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: clamp(43px, 4.8vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.visa-lead {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.visa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.visa-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
}

.visa-steps {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.visa-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.visa-steps li > b {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.visa-steps strong,
.visa-steps span {
  display: block;
}

.visa-steps strong {
  color: var(--green-950);
  font-size: 15px;
}

.visa-steps span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.button-green {
  background: var(--green-900);
  color: white;
}

.button-green:hover {
  background: var(--gold);
  color: var(--green-950);
}

.visa-disclaimer {
  display: block;
  margin-top: 21px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.planner-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(242, 189, 69, 0.16), transparent 26%),
    var(--green-950);
  color: white;
}

.planner-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.planner-copy h2 {
  color: white;
}

.planner-copy > p:last-child {
  max-width: 470px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

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

.planner-form label {
  display: block;
}

.planner-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.planner-form input,
.planner-form select {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0 17px;
  font: inherit;
  font-size: 13px;
  color-scheme: dark;
}

.planner-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.planner-form input:focus,
.planner-form select:focus {
  border-color: var(--gold-light);
}

.planner-form .button {
  align-self: end;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.about-section {
  background: #fffdf8;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: start;
}

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.founders span {
  min-width: 165px;
  padding: 13px 16px;
  border-left: 3px solid var(--gold);
  background: white;
}

.founders strong,
.founders small {
  display: block;
}

.founders strong {
  color: var(--green-950);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founders small {
  margin-top: 5px;
  color: var(--muted);
}

.office-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
  margin-top: 50px;
}

.office-photo {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--mist);
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 63, 46, 0.92);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.about-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-points article {
  min-height: 255px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-points article > b {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.about-points h3 {
  margin: 55px 0 11px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.about-points .tabby-card {
  background: #42efa0;
  color: #0a1f18;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tabby-card > span {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.12;
}

.tabby-card > strong {
  font-size: 48px;
  letter-spacing: -0.07em;
}

.tabby-card > small {
  font-size: 9px;
}

.process-section {
  padding: 110px 0;
  background: var(--green-900);
  color: white;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  align-items: start;
}

.process-heading h2 {
  max-width: 850px;
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.process-grid article {
  min-height: 250px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-grid article > span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 15px;
}

.process-grid h3 {
  margin: 62px 0 12px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.7;
}

.campaigns-section {
  background: var(--ivory);
}

.campaigns-heading {
  align-items: center;
}

.instagram-link {
  justify-self: end;
  margin: 0;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.campaign-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--green-950);
}

.campaign-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease, opacity 350ms ease;
}

.campaign-grid a:hover img {
  transform: scale(1.035);
  opacity: 0.84;
}

.campaign-grid a > span {
  position: absolute;
  left: 17px;
  bottom: 16px;
  padding: 9px 12px;
  background: white;
  color: var(--green-950);
  font-size: 11px;
  font-weight: 900;
}

.faq-section {
  background: #fffdf8;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 25px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 22px;
}

.faq-list summary span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.faq-list details > p {
  max-width: 690px;
  margin: -3px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact-section {
  padding: 115px 0;
  background: var(--green-950);
  color: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
  align-items: stretch;
}

.contact-copy h2 {
  max-width: 650px;
  color: white;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 27px 45px;
  margin-top: 55px;
  padding-top: 31px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details div:last-child {
  grid-column: 1 / -1;
}

.contact-details span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.65;
}

.map-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--mist);
}

.map-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 25%, rgba(216, 155, 21, 0.15), transparent 22%),
    linear-gradient(135deg, #e8f0ec, #cfded6);
}

.map-illustration::before,
.map-illustration::after {
  content: "";
  position: absolute;
  border: 30px solid rgba(255, 255, 255, 0.64);
  border-radius: 48%;
  transform: rotate(-24deg);
}

.map-illustration::before {
  width: 560px;
  height: 180px;
  left: -170px;
  top: 110px;
}

.map-illustration::after {
  width: 540px;
  height: 90px;
  right: -180px;
  bottom: 65px;
}

.road {
  position: absolute;
  display: block;
  height: 7px;
  border-top: 2px solid rgba(8, 77, 56, 0.18);
  border-bottom: 1px dashed rgba(8, 77, 56, 0.22);
  transform-origin: center;
}

.road-1 { width: 760px; left: -90px; top: 45%; transform: rotate(17deg); }
.road-2 { width: 680px; right: -190px; top: 31%; transform: rotate(-38deg); }
.road-3 { width: 540px; left: 80px; bottom: 22%; transform: rotate(-9deg); }
.road-4 { width: 420px; left: 5px; top: 19%; transform: rotate(52deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 52%;
  width: 76px;
  height: 76px;
  border: 11px solid white;
  border-radius: 50% 50% 50% 6px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--green-950);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 18px 35px rgba(5, 49, 35, 0.22);
}

.map-pin b {
  font-family: Georgia, serif;
  font-size: 25px;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  z-index: 2;
  top: calc(43% + 64px);
  left: 52%;
  min-width: 245px;
  padding: 15px 18px;
  background: white;
  color: var(--green-950);
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(5, 49, 35, 0.13);
  text-align: center;
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  font-family: Georgia, serif;
  font-size: 17px;
}

.map-label span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.map-area {
  position: absolute;
  color: rgba(8, 77, 56, 0.24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.area-1 { left: 38px; bottom: 42px; }
.area-2 { right: 36px; top: 42px; }

.map-card > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 15px 19px;
  background: var(--gold);
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
}

.footer {
  background: #032e22;
  color: white;
}

.footer-main {
  min-height: 185px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 55px;
  align-items: center;
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
}

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

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  padding: 8px 8px 8px 17px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #24d366;
  color: #062d21;
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 900;
}

.floating-whatsapp b {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
}

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

  .nav-links {
    gap: 18px;
  }

  .nav-links a:nth-child(4) {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-contact {
    width: 360px;
  }

  .section-heading,
  .first-cta-inner {
    gap: 44px;
  }

  .visa-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    gap: 55px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-links {
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }
}

@media (max-width: 800px) {
  .section-shell {
    width: min(100% - 34px, 680px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    padding: 6px 8px;
  }

  .brand-logo {
    width: 160px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 0 12px;
  }

  .menu-button span {
    height: 1px;
    background: white;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 25px 25px;
    flex-direction: column;
    align-items: stretch;
    background: var(--green-950);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  }

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

  .nav-links a,
  .nav-links a:nth-child(4) {
    display: block;
    padding: 11px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 44, 32, 0.93) 0%, rgba(4, 44, 32, 0.78) 75%, rgba(4, 44, 32, 0.5) 100%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 145px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-intro {
    max-width: 520px;
    font-size: 16px;
  }

  .hero-proof {
    margin-top: 40px;
    flex-direction: column;
  }

  .hero-contact {
    left: 0;
    right: auto;
    width: 100%;
    min-height: 88px;
    padding: 20px 17px;
    align-items: center;
  }

  .hero-contact strong {
    font-size: 20px;
  }

  .intro-grid,
  .section-heading,
  .first-cta-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 16px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 23px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .first-cta {
    padding: 75px 0;
  }

  .first-cta-inner {
    gap: 26px;
  }

  .first-cta-inner .button {
    justify-self: start;
  }

  .package-grid,
  .visa-layout,
  .planner-layout,
  .about-layout,
  .faq-layout,
  .contact-layout,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .package-grid {
    gap: 17px;
  }

  .package-body > p {
    min-height: 0;
  }

  .visa-layout {
    gap: 75px;
  }

  .visa-image img {
    min-height: 540px;
  }

  .visa-badge {
    right: 18px;
    bottom: -40px;
  }

  .planner-layout {
    gap: 45px;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-link {
    justify-self: start;
  }

  .contact-layout {
    gap: 50px;
  }

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

  .footer-links {
    grid-column: auto;
    padding: 0;
    flex-wrap: wrap;
  }

  .footer-bottom {
    min-height: 90px;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-media {
    background-position: 70% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 44, 32, 0.95) 0%, rgba(4, 44, 32, 0.8) 90%, rgba(4, 44, 32, 0.65) 100%);
  }

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

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

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

  .package-grid,
  .planner-form,
  .about-points,
  .process-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .package-visual {
    min-height: 210px;
  }

  .package-visual > span {
    font-size: 92px;
  }

  .visa-image img {
    min-height: 440px;
  }

  .visa-badge {
    width: calc(100% - 36px);
  }

  .about-points article {
    min-height: 220px;
  }

  .process-grid article {
    min-height: 210px;
  }

  .process-grid h3 {
    margin-top: 44px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .office-photo {
    min-height: 250px;
  }

  .contact-details div:last-child {
    grid-column: auto;
  }

  .map-card,
  .map-illustration {
    min-height: 420px;
  }

  .floating-whatsapp > span {
    display: none;
  }

  .floating-whatsapp {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
