:root {
  --gold: #f5c400;
  --teal: #1fb89b;
  --navy: #0f172a;
  --navy-soft: #17233a;
  --nav-bg: #f7e8da;
  --site-bg: #f5eee9;
  --section-bg: #eedfd0;
  --white: #ffffff;
  --light: #eedfd0;
  --text: #263244;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
.brand-text {
  color: var(--navy);
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

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

.section.dark {
  background: var(--section-bg);
  color: var(--text);
}

.section.dark h2,
.section.dark h3 {
  color: var(--navy);
}

.section.dark p,
.section.dark .muted {
  color: var(--muted);
}

.section.why-section {
  background: #22404A;
  color: var(--white);
}

.why-section h2,
.why-section .check-list li {
  color: var(--white);
}

.why-section .muted {
  color: rgba(255, 255, 255, 0.74);
}

.why-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
}

.why-image-frame {
  background: transparent;
  box-shadow: none;
}

.why-image-frame img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.section-title h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section-title p,
.muted {
  color: var(--muted);
}

/* Service section card intro*/

.services-section .detail-card {
  display: flex;
  flex-direction: column;
}

.services-section .detail-card .check-list {
  margin-bottom: 16px;
}

.services-section .detail-card .btn {
  margin-top: auto;
  border-color: var(--teal);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: #22404A;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: #22404A;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 172px;
  height: auto;
  filter: drop-shadow(0 2px 7px rgba(15, 23, 42, 0.16));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--nav-bg);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.84;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn.primary {
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(245, 196, 0, 0.28);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.btn.outline {
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 72px;
  color: var(--white);
}

.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72) 44%, rgba(15, 23, 42, 0.18));
  z-index: 1;
}

.hero::after {
  background: radial-gradient(circle at 12% 18%, rgba(31, 184, 155, 0.28), transparent 30%);
  z-index: 2;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72) 44%, rgba(15, 23, 42, 0.18));
  z-index: 1;
}

.page-hero::after {
  background: radial-gradient(circle at 12% 18%, rgba(31, 184, 155, 0.28), transparent 30%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: none;
  text-align: left;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1.04;
}

.hero p {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 680px;
  margin-bottom: 42px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.trust-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  border-color: var(--teal);
  padding: 28px;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 184, 155, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.brand-story-image {
  display: flex;
  justify-content: center;
  margin: 0;
}

.brand-story-image img {
  width: min(100%, 520px);
  height: auto;
  max-width: none;
  object-fit: contain;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.process-content {
  position: sticky;
  top: 120px;
  max-width: 620px;
}

.process-content h2 {
  margin-bottom: 16px;
}

.process-content .muted {
  margin-bottom: 28px;
}

/*.process-image {
  margin-top: 24px;

} */

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  /*box-shadow: var(--shadow);*/
}

.process-image {
  margin-top: 24px;
  margin-left: 0;
  width: 100%;
}

.process-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gradient-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.46) 44%, rgba(15, 23, 42, 0.1));
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-split.why-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
}

.media-frame.why-image-frame {
  justify-self: end;
  width: min(100%, 760px);
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.media-frame.why-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
}

.dark .check-list li {
  color: var(--white);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.country-card {
  display: grid;
  gap: 12px;
  min-height: 118px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  color: var(--navy);
  font-weight: 900;
  border-color: var(--teal);
  padding: 18px 14px;
  text-align: center;
}

.country-card img {
  width: min(78px, 100%);
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.14));
}

.country-card span {
  display: block;
  line-height: 1.2;
}

.testimonial {
  padding: 28px;
}

.testimonial p {
  color: var(--text);
  font-size: 1.02rem;
}

.testimonial strong {
  color: var(--navy);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #123f4b);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 28px;
}

.location-section .section-title {
  margin-bottom: 24px;
}

.location-section .section-title p {
  color: var(--text);
  font-weight: 700;
}

.contact-info,
.form-card {
  padding: 34px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 184, 155, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 84px;
  background: var(--navy);
  color: var(--white);
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.detail-card {
  padding: 30px;
}

.detail-card h3 {
  margin-bottom: 10px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step-card {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-color: var(--teal);
  
}

.step-card::before {
  content: counter(step);
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin: 14px 0 0;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  padding: 0 18px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.site-footer {
  background: #22404A;
  color: var(--section-bg);
  padding: 58px 0 24px;
}

.site-footer h3{
  color: var(--section-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 16px;
  padding: 8px 12px;
  /*border-radius: var(--radius); 
  background: rgba(255, 255, 255, 0.95); */
}

.site-footer p,
.site-footer a {
  color: var(--section-bg);
}

.footer-links {
  display: grid;
  gap: 9px;
}

/*.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.14);
  color: var(--navy);
  font-size: 0.9rem;
} */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
