/* ASAT Worldwide - Premium Travel Management */

:root {
  --green-dark: #0f2818;
  --green: #1a4d2e;
  --gold: #d4a654;
  --gold-dark: #b8924a;
  --cream: #f5f1e8;
  --cream-dark: #e8e4db;
  --text-muted: #5a6b5c;
  --gold-light: #e6c177;
  --white: #fff;
  --shadow: 0 10px 40px rgba(15, 40, 24, 0.1);
  --shadow-lg: 0 25px 50px rgba(15, 40, 24, 0.15);
  --max-w: 1280px;
  --nav-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  -webkit-min-height: 100vh;
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--green-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@supports (min-height: 100dvh) {
  body { min-height: 100dvh; }
}

/* Inter font loads async - applied when available (Huawei works without it) */
.fonts-loaded body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a {
  color: inherit;
  text-decoration: none;
}

a, button {
  -webkit-tap-highlight-color: rgba(212, 166, 84, 0.2);
  tap-highlight-color: rgba(212, 166, 84, 0.2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--green), var(--green-dark)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }

::selection { background: var(--gold); color: var(--green-dark); }
::-moz-selection { background: var(--gold); color: var(--green-dark); }

/* Navigation - on mobile all links visible, no hamburger */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(15, 40, 24, 0.1);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .main-nav.scrolled {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* Mobile: nav as column - logo row then link row (all visible) */
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  min-height: var(--nav-h);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-brand-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.nav-brand-tagline {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: -2px;
}

/* Desktop nav links - hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--green-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white) !important;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
}

.nav-cta:hover {
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

/* Hamburger - hidden; on mobile we show links below instead */
.nav-toggle {
  display: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* Mobile: links always visible in a row below the logo */
.nav-mobile {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-dark);
  padding: 0.6rem 1rem;
  padding-bottom: 0.6rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom, 0px));
}

.nav-mobile a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--green-dark);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-mobile a:hover {
  background: var(--cream);
}

.nav-mobile .nav-cta {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white);
}

/* Desktop: single row nav, hide mobile link bar */
@media (min-width: 768px) {
  .main-nav {
    background: transparent;
    box-shadow: none;
  }
  .main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
  }
  .nav-inner {
    height: var(--nav-h);
    padding: 0 1rem;
  }
  .nav-brand-title { font-size: 1.125rem; }
  .nav-brand-tagline { font-size: 10px; }
  .nav-logo { width: 48px; height: 48px; }
  .nav-links { display: flex; }
  .nav-cta { padding: 0.625rem 1.5rem; font-size: 1rem; }
  .nav-mobile { display: none !important; }
}

/* Main content - push below fixed nav (nav is 2 rows on mobile) */
.main {
  padding-top: 7.5rem;
}

@media (min-width: 768px) {
  .main {
    padding-top: 0;
  }
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.container-narrow {
  max-width: 640px;
}

/* Hero - 100vh for Huawei/older Android (dvh not supported) */
.hero {
  position: relative;
  min-height: 100vh;
  -webkit-min-height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
}

@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 24, 0.8), rgba(26, 77, 46, 0.7), rgba(15, 40, 24, 0.8));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(212, 166, 84, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 166, 84, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  padding-bottom: 3rem;
  padding-bottom: max(3rem, calc(2rem + env(safe-area-inset-bottom, 0px)));
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 1rem 4rem;
    padding-bottom: 4rem;
    padding-bottom: max(4rem, calc(2rem + env(safe-area-inset-bottom, 0px)));
  }
}

.hero-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-svg {
  width: 36px;
  height: 36px;
  color: var(--green-dark);
}

@media (min-width: 768px) {
  .hero-badge { width: 80px; height: 80px; margin-bottom: 2rem; }
  .hero-badge-svg { width: 48px; height: 48px; }
}

.hero-title {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: var(--gold-light);
  font-weight: 300;
  margin: 0 0 0.5rem;
}

.hero-desc {
  font-size: 0.9375rem;
  color: var(--cream);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-desc { font-size: clamp(1rem, 1.5vw, 1.25rem); margin-bottom: 3rem; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.hero-cta .btn {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .hero-cta { flex-direction: row; margin-bottom: 4rem; }
  .hero-cta .btn { width: auto; max-width: none; margin: 0; }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(232, 228, 219, 0.9);
}

@media (min-width: 480px) {
  .hero-trust { font-size: 0.875rem; gap: 2rem; }
}

.hero-trust .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Buttons - min 44px height for touch targets (iOS/Android) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-dark {
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
}

.btn-block {
  width: 100%;
}

/* Sections - less padding on small screens */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section { padding: 5rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 166, 84, 0.1);
  color: var(--gold);
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  word-wrap: break-word;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
  .section-desc { font-size: 1.125rem; line-height: 1.7; }
}

/* Branches */
.section-branches {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.branch-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .branch-grid { gap: 2rem; }
}

@media (min-width: 1024px) {
  .branch-grid { grid-template-columns: 1fr 1fr; }
}

.branch-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.branch-card:hover {
  box-shadow: var(--shadow-lg);
}

.branch-card-img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

@media (min-width: 480px) {
  .branch-card-img-wrap { height: 16rem; }
}

.branch-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.branch-card:hover .branch-card-img-wrap img {
  transform: scale(1.1);
}

.branch-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 40, 24, 0.9), rgba(26, 77, 46, 0.5), transparent);
}

.branch-card-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.branch-card-title-wrap {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.branch-card-title-wrap h3 {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.branch-card-title-wrap p {
  color: var(--gold-light);
  font-size: 0.875rem;
  margin: 0;
}

.branch-card-body {
  padding: 1.25rem 1rem;
}

.branch-card-body > p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .branch-card-body { padding: 2rem; }
  .branch-card-body > p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
}

.branch-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.branch-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--green-dark);
  font-size: 0.875rem;
}

.branch-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 166, 84, 0.2);
}

/* About */
.section-about {
  background: var(--white);
  position: relative;
}

.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 166, 84, 0.05), transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-grid { gap: 3rem; margin-bottom: 4rem; }
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.about-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .about-img-wrap img { height: 380px; }
}

@media (min-width: 1024px) {
  .about-img-wrap img { height: 500px; }
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 40, 24, 0.6), transparent);
}

.about-stats {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .about-stats { bottom: 2rem; left: 2rem; right: 2rem; gap: 1rem; }
}

.about-stat {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  padding: 0.5rem 0.25rem;
  text-align: center;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .about-stat {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}

.about-stat strong {
  display: block;
  font-size: 1.125rem;
  color: var(--green);
}

.about-stat span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .about-stat { padding: 1rem; }
  .about-stat strong { font-size: 1.5rem; }
  .about-stat span { font-size: 0.75rem; }
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .about-content p { font-size: 1rem; line-height: 1.7; }
}

.about-diff {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border: 1px solid rgba(212, 166, 84, 0.2);
  border-radius: 0.75rem;
  margin-top: 1.5rem;
}

.about-diff-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.about-diff h4 {
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.about-diff p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .about-features { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .about-features { grid-template-columns: repeat(4, 1fr); }
}

.about-feature {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 1px solid var(--cream-dark);
  border-radius: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.about-feature:hover {
  border-color: rgba(212, 166, 84, 0.4);
  box-shadow: var(--shadow-lg);
}

.about-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* How it works */
.section-how {
  background: linear-gradient(180deg, var(--cream), var(--white));
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 480px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .step-card { padding: 2rem; }
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
}

.step-num {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  background: linear-gradient(90deg, var(--green), var(--green-dark), var(--green));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-cta { padding: 3rem; }
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 166, 84, 0.1), transparent 70%);
  pointer-events: none;
}

.section-cta h3 {
  position: relative;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.section-cta p {
  position: relative;
  color: var(--cream-dark);
  margin: 0 0 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .btn {
  position: relative;
}

/* Services */
.section-services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 1px solid var(--cream-dark);
  border-radius: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .service-card { padding: 2rem; }
}

.service-card:hover {
  border-color: rgba(212, 166, 84, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.services-banner {
  position: relative;
  min-height: 16rem;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 479px) {
  .services-banner { min-height: 14rem; height: 18rem; }
  .services-banner-content { padding: 2rem 1.5rem; }
  .services-banner-content h3 { font-size: 1.5rem; }
}

.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 40, 24, 0.9), rgba(26, 77, 46, 0.8), transparent);
}

.services-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  max-width: 32rem;
}

.services-banner-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.services-banner-content p {
  color: var(--cream-dark);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

/* Trust */
.section-trust {
  background: linear-gradient(135deg, var(--cream), var(--white));
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

@media (min-width: 768px) {
  .trust-badges { gap: 2rem; margin: 3rem 0 4rem; }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: var(--white);
  border-radius: 9999px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  font-weight: 600;
  color: var(--green-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .trust-badge { padding: 1rem 1.5rem; gap: 0.75rem; font-size: 1rem; }
}

.trust-badge:hover {
  border-color: rgba(212, 166, 84, 0.4);
  box-shadow: var(--shadow-lg);
}

.trust-quote {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 166, 84, 0.2);
  position: relative;
}

@media (min-width: 768px) {
  .trust-quote { padding: 3rem; }
}

.trust-quote::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 5rem;
  color: rgba(212, 166, 84, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.trust-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--green-dark);
  margin: 0 0 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .trust-quote p { font-size: 1.25rem; margin-bottom: 1.5rem; line-height: 1.7; }
}

.trust-quote-author {
  font-weight: 700;
  color: var(--green-dark);
}

.trust-quote-author::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 3rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-right: 1rem;
  vertical-align: middle;
}

/* Google Play–style Testimonials */
.section-testimonials {
  background: #111315;
  color: #f9fafb;
}

.section-testimonials .section-title,
.section-testimonials .section-desc {
  color: #f9fafb;
}

.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.google-rating-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.google-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.google-logo-text .g-blue { color: #4285f4; }
.google-logo-text .g-red { color: #ea4335; }
.google-logo-text .g-yellow { color: #fbbc05; }
.google-logo-text .g-green { color: #34a853; }

.google-rating-label {
  color: #e5e7eb;
}

.google-rating-score-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.google-rating-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9fafb;
}

.google-rating-stars {
  color: #fbbc05;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
}

.google-rating-count {
  color: #9ca3af;
  font-size: 0.875rem;
}

.google-rating-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  background: #ea4335;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.google-rating-cta:hover {
  background: #d93025;
  color: #ffffff;
}

.testimonials-scroll {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem 1rem;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #111827;
  border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}

.testimonials-grid {
  display: flex;
  gap: 1rem;
  min-width: min-content;
  padding-bottom: 0.25rem;
  flex-wrap: nowrap;
}

.testimonials-marquee {
  animation: testimonials-marquee 45s linear infinite;
}

@keyframes testimonials-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex: 0 0 280px;
  background: #202124;
  border-radius: 0.75rem;
  padding: 1.25rem 1.2rem 1.1rem;
  border: 1px solid #27272f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 320px;
  }
}

.testimonial-stars {
  color: #fbbc05;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #e5e7eb;
  line-height: 1.55;
  margin: 0;
}

.testimonial-read-more {
  padding: 0;
  border: none;
  background: none;
  color: #60a5fa;
  font-size: 0.875rem;
  cursor: pointer;
  align-self: flex-start;
}

.testimonial-read-more:hover {
  text-decoration: underline;
}

.testimonial-user {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #27272f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f9fafb;
}

.testimonial-user-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: #f9fafb;
}

.testimonial-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Contact form */
.section-contact-form {
  background: var(--cream);
}

.contact-form {
  background: var(--white);
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}

@media (min-width: 480px) {
  .contact-form { padding: 2rem; }
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  background: var(--cream);
  color: var(--green-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 166, 84, 0.2);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--green-dark);
  opacity: 0.85;
}

.form-message {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  display: none;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: rgba(26, 77, 46, 0.1);
  color: var(--green);
  border: 1px solid rgba(26, 77, 46, 0.3);
}

.form-message.error {
  background: rgba(200, 60, 60, 0.1);
  color: #c0392b;
  border: 1px solid rgba(200, 60, 60, 0.3);
}

/* Follow us — below Send message, centred */
.contact-follow {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
}

.contact-follow-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.contact-follow-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-social-btn:hover {
  background: var(--green);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-social-btn svg {
  display: block;
}

/* Footer — three segments, vertical on small / horizontal on large */
.footer {
  background: linear-gradient(180deg, #0a1f14 0%, var(--green-dark) 30%, var(--green) 100%);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1rem 1.5rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 3rem 1.5rem 2rem;
  }
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .footer-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: stretch;
    justify-content: space-between;
  }
}

.footer-block {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-block {
    padding: 1.5rem 1.25rem;
  }

  .footer-block-social {
    max-width: 200px;
  }
}

.footer-divider {
  display: none;
}

.footer-block-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-divider {
  display: none;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  min-height: 120px;
}

@media (min-width: 640px) {
  .footer-divider {
    display: block;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a.footer-contact-item:hover {
  opacity: 0.95;
}

.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-value {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-contact-address .footer-contact-value {
  max-width: 200px;
  line-height: 1.4;
}

.footer-block-social .footer-social {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  display: block;
}

.footer-accent {
  height: 4px;
  margin-top: 2.5rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* WhatsApp float - fixed values first for Huawei/Android */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  right: max(2rem, env(safe-area-inset-right, 0px));
  z-index: 99;
}

.whatsapp-bubble {
  position: absolute;
  bottom: 4rem;
  right: 0;
  width: 18rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  margin-bottom: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.whatsapp-bubble.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-header {
  padding: 1rem;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white);
}

.whatsapp-title {
  font-weight: 700;
  display: block;
}

.whatsapp-status {
  font-size: 0.75rem;
  color: var(--gold);
}

.whatsapp-body {
  padding: 1rem;
  background: var(--cream);
}

.whatsapp-body p {
  font-size: 0.875rem;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #25D366;
  color: var(--white);
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  color: var(--white);
}

.whatsapp-btn-fab {
  min-width: 56px;
  min-height: 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 480px) {
  .whatsapp-btn-fab { width: 64px; height: 64px; min-width: 64px; min-height: 64px; }
}

.whatsapp-btn-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  flex-shrink: 0;
}
