/* ============================================================
   Sri Vari Money Exchange — Landing Page
   ============================================================ */

:root {
  --orange: #ff7f00;
  --orange-dark: #e56e00;
  --orange-soft: rgba(255, 127, 0, 0.05);
  --orange-soft-2: rgba(255, 127, 0, 0.12);
  --green: #1f8a5b;
  --ink: #000000;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --muted-2: #a0a0a0;
  --line: #e3e3e3;
  --line-2: #d9d9d9;
  --bg: #fafafa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 22px rgba(0, 0, 0, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --gutter: clamp(16px, 4vw, 64px);
  --content-max: 1596px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   Top promo bar (marquee)
   ============================================================ */
.promo {
  background: var(--orange);
  color: var(--white);
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.promo-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 16px;
  font-weight: 300;
  padding-left: 64px;
}
.promo-track span { display: inline-flex; align-items: center; gap: 16px; }
.promo-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  margin-left: 48px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 110px;
}
.nav-logo {
  height: 80px;
  width: auto;
  flex: 0 0 auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta-wrap { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after  { top:  8px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--white);
  padding: 100px 0 110px;
  overflow: hidden;
  /* Tall enough that the lowest floating flags (bottom ~504px) sit fully
     inside the hero instead of being clipped by overflow:hidden. */
  min-height: 560px;
}
.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 0;
  background: url(./assets/hero-bg.jpg) center bottom / cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0) 35%);
}
.hero-inner { position: relative; z-index: 2; }

.hero-flags {
  position: relative;
  pointer-events: none;
}
.flag {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border: 3px solid #fff;
}
.flag.us { background-image: url('https://flagcdn.com/w160/us.png'); }
.flag.eu { background-image: url('https://flagcdn.com/w160/eu.png'); }
.flag.in { background-image: url('https://flagcdn.com/w160/in.png'); }
.flag.de { background-image: url('https://flagcdn.com/w160/de.png'); }
.flag.ch { background-image: url('https://flagcdn.com/w160/ch.png'); }
.flag.gb { background-image: url('https://flagcdn.com/w160/gb.png'); }
.flag.mx { background-image: url('https://flagcdn.com/w160/mx.png'); }

/* float positions */
.flag.f1 { top: 280px;  left: 6%;   animation: float 8s ease-in-out infinite; }
.flag.f2 { top: 80px;   left: 12%;  animation: float 7s ease-in-out -1s infinite; }
.flag.f3 { top: 340px;  left: 19%;  animation: float 9s ease-in-out -2s infinite; }
.flag.f4 { top: 60px;   right: 8%;  animation: float 8s ease-in-out -3s infinite; }
.flag.f5 { top: 200px;  right: 14%; animation: float 7s ease-in-out -1.5s infinite; }
.flag.f6 { top: 340px;  right: 6%;  animation: float 9s ease-in-out -2.5s infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.hero-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}
.hero-heading h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.hero-heading p {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 auto 32px;
  max-width: 640px;
}
.hero-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats — own band */
.stats-section {
  background: var(--white);
  padding: 56px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-soft-2);
  border-radius: 50%;
  margin-bottom: 4px;
}
.stat-icon svg { width: 34px; height: 34px; }
.stat-num {
  font-family: 'Readex Pro', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: clamp(11px, 0.9vw, 14px);
  color: var(--ink);
  max-width: 220px;
  line-height: 1.4;
}

/* Right side floating contact icons */
.float-icons {
  position: fixed;
  right: 18px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 40;
}
.float-icons a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 42, 74, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.float-icons a svg { width: 24px; height: 24px; }
/* WhatsApp keeps its recognisable green; the call button uses the brand orange */
.float-icons a[aria-label="WhatsApp"] { background: #25d366; }
.float-icons a[aria-label="WhatsApp"]:hover { background: #1eb857; }
.float-icons a[aria-label="Call us"] { background: var(--orange); }
.float-icons a[aria-label="Call us"]:hover { background: var(--orange-dark); }
.float-icons a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15, 42, 74, .28); }

/* ============================================================
   Section helpers
   ============================================================ */
.section { padding: 100px 0; }
.section.soft { background: var(--orange-soft); }

.eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
  margin: 0 0 12px;
  letter-spacing: 0.4px;
}
.h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.lede {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.center { text-align: center; }
.center .lede { max-width: 760px; margin: 0 auto; }

/* ============================================================
   About section
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content p { margin: 14px 0 0; }
.about-content .btn { margin-top: 40px; }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Services cards
   ============================================================ */
.services-head { max-width: 760px; margin: 0 auto 60px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  border-color: var(--orange);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}
.service-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}
.service-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/2.5;
  background: #f0f0f0;
  margin-top: auto;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Currency conversion + Calculator
   ============================================================ */
.conv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.conv-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.conv-feature {
  display: flex;
  align-items: center;
  gap: 22px;
}
.conv-feature + .conv-feature {
  border-top: 1px solid #d4d4d4;
  padding-top: 24px;
}
.conv-feature-icon {
  width: 61px;
  height: 61px;
  flex: 0 0 61px;
  border-radius: 6px;
  border: 1px solid #656565;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.conv-feature h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}
.conv-feature p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}
.conv-cta { margin-top: 40px; }

/* Calculator */
.calculator {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 42, 74, .12);
  border: 1px solid #eef0f3;
  padding: 30px;
}
.calc-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.calc-rates span {
  background: #fff6ec;
  color: #a8631a;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 20px;
}
.calc-rates span b { font-weight: 800; color: var(--orange-dark); }
.calc-fields { display: flex; flex-direction: column; gap: 14px; }
.calc-field {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 18px;
  background: #fbfcfd;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.calc-field:focus-within,
.calc-field:hover { border-color: var(--orange); background: #fff; }
.calc-field:focus-within { box-shadow: 0 0 0 3px rgba(255,127,0,.14); }
.calc-field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.calc-amount-input,
.calc-currency-select {
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  width: 100%;
}
/* From / swap / To */
.calc-convert { position: relative; display: flex; flex-direction: column; gap: 14px; }
.calc-swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 42, 74, .2);
  transition: transform .25s ease, background .18s ease;
  z-index: 2;
}
.calc-swap:hover { background: var(--orange-dark); transform: translate(-50%, -50%) rotate(180deg); }
.calc-currency-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.currency-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex: 0 0 24px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.calc-currency-select {
  appearance: none;
  cursor: pointer;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0f2a4a 0%, #16385f 100%);
  border-radius: 14px;
  padding: 20px 24px;
}
.calc-result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #aebfd2;
  margin-bottom: 4px;
}
.calc-result-amount {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.calc-result .btn { min-width: 150px; }

/* ============================================================
   Why choose grid
   ============================================================ */
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
  border-color: var(--orange);
}
.why-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.why-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}
.why-cta { display: flex; justify-content: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }

/* ============================================================
   Map / Location section
   ============================================================ */
.location { padding: 100px 0; background: var(--orange-soft); }
.location-map {
  display: block;
  width: 100%;
  height: clamp(280px, 50vw, 520px);
  border-radius: var(--radius);
  background-color: #eef0f3;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.location-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
}
.location-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}
.location-pin {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -100%);
}
.location-pin svg {
  width: 44px;
  height: 44px;
  color: var(--orange);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.location-info p.address {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.location-info p.phone {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 14px;
}
.location-info p.address a,
.location-info p.phone a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.location-info p.address a:hover,
.location-info p.phone a:hover { color: var(--orange); }
.location-info .icon-circle {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.location-info .ctas { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 32px;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hours-list { display: flex; flex-direction: column; gap: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 300;
}
.hours-row b { font-weight: 600; }
.hours-row.closed b { color: var(--orange); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./assets/testimonials-bg.jpg) center/cover no-repeat;
  filter: grayscale(.4) brightness(.55);
  opacity: .85;
  z-index: 0;
}
.testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(255,127,0,.35) 100%);
  z-index: 1;
}
.testimonials .wrap { position: relative; z-index: 2; }
.testi-head { color: #fff; text-align: center; margin-bottom: 56px; }
.testi-head .eyebrow { color: #ffd9b3; }
.testi-head h2 { color: #fff; }
.testi-head p { color: rgba(255,255,255,.9); }

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testi-name { font-weight: 600; font-size: 13px; }
.testi-meta { font-size: 11px; color: var(--muted); }

/* ============================================================
   FAQ — card-style accordion
   ============================================================ */
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}
.faq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.faq[open] {
  border-color: rgba(255,127,0,.35);
  box-shadow: 0 14px 36px rgba(255,127,0,.10);
  transform: translateX(2px);
}
.faq[open]::before { transform: scaleY(1); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 500;
  gap: 24px;
  transition: color .25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange); }

.faq .icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  position: relative;
  border-radius: 50%;
  background: rgba(255,127,0,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background .35s ease,
    transform .5s cubic-bezier(.22,1,.36,1);
}
.faq .icon::before,
.faq .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--orange);
  border-radius: 1px;
  transition:
    background .3s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    opacity .25s ease;
}
.faq .icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq .icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq[open] .icon {
  background: var(--orange);
  transform: rotate(180deg);
}
.faq[open] .icon::before,
.faq[open] .icon::after { background: #fff; }
.faq[open] .icon::after  { transform: translate(-50%, -50%) rotate(90deg) scaleX(0); opacity: 0; }
.faq[open] summary { color: var(--orange); }

/* Keep body in flow so we can animate height smoothly */
.faq > .faq-body { display: block; }
.faq-body {
  height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 1100px;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    height .55s cubic-bezier(.22,1,.36,1),
    padding .45s cubic-bezier(.22,1,.36,1),
    opacity .4s ease .1s,
    transform .5s cubic-bezier(.22,1,.36,1) .06s;
  will-change: height, opacity, transform;
}
.faq[open] > .faq-body {
  padding: 0 24px 22px;
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   Serving CTA strip
   ============================================================ */
.cta-strip {
  padding: 110px 0;
  text-align: center;
}
.cta-strip h2 { margin-bottom: 18px; }
.cta-strip p { max-width: 980px; margin: 0 auto 36px; }
.cta-strip .ctas { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: rgba(208,208,208,0.08);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
  gap: 60px;
}
.footer-brand img { height: 100px; margin-bottom: 24px; }
.footer-brand p { font-size: 16px; line-height: 1.5; color: var(--ink); max-width: 420px; }
.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer ul li a {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  transition: color .2s ease;
}
.footer ul li a:hover { color: var(--orange); }
.contact-line a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.contact-line a:hover { color: var(--orange); }

.footer .contact-line { font-size: 16px; font-weight: 300; margin: 0 0 14px; }

/* ============================================================
   Google Reviews
   ============================================================ */
.reviews {
  background: #fff;
}
.rv-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.rv-meta { display: flex; align-items: center; gap: 22px; }
.rv-meta .eyebrow { margin-bottom: 6px; }
.rv-meta .h2 { margin: 0; }
.rv-google-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  flex: 0 0 64px;
}
.rv-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.rv-score {
  font-family: 'Readex Pro', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
}
.rv-stars {
  color: #FBBC04;
  letter-spacing: 4px;
  font-size: 22px;
}
.rv-count { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.rv-cta { margin-top: 6px; }

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

/* Carousel container */
.rv-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.rv-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
  scroll-padding: 4px;
}
.rv-track::-webkit-scrollbar { display: none; }
.rv-track > .rv-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 per view, gap=24px between three cards */
  scroll-snap-align: start;
  min-width: 0;
}
.rv-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  flex: 0 0 48px;
  align-self: center;
}
.rv-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.rv-arrow:active { transform: scale(0.96); }
.rv-arrow[disabled] { opacity: .4; cursor: not-allowed; }
.rv-arrow[disabled]:hover { background: #fff; color: var(--ink); border-color: var(--line-2); }

.rv-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.rv-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.rv-dots button[aria-current="true"] {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .rv-head { grid-template-columns: 1fr; gap: 32px; }
  .rv-rating { align-items: flex-start; text-align: left; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-track > .rv-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 700px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-score { font-size: 44px; }
  .rv-google-logo { width: 52px; height: 52px; flex-basis: 52px; }
  .rv-track > .rv-card { flex-basis: 100%; }
  .rv-arrow { width: 40px; height: 40px; flex-basis: 40px; }
}
.rv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  border-color: var(--line-2);
}
.rv-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.rv-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.rv-sub  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rv-glogo {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-stars-row {
  font-size: 14px;
  color: #FBBC04;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rv-star-on { color: #FBBC04; }
.rv-star-off { color: #d9d9d9; }
.rv-date {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: normal;
  font-size: 12px;
}
.rv-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .rv-head { grid-template-columns: 1fr; gap: 32px; }
  .rv-rating { align-items: flex-start; text-align: left; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-score { font-size: 44px; }
  .rv-google-logo { width: 52px; height: 52px; flex-basis: 52px; }
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.footer-social a:hover { transform: translateY(-2px); background: var(--orange-dark); }
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #dedede;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-profitcast {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.footer-profitcast:hover { color: var(--orange); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav-inner { height: 88px; }
  .nav-logo { height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-wrap .btn { display: none; }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px var(--gutter) 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    border-top: 1px solid var(--line);
  }
  .nav.menu-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open .nav-links a:last-of-type { border-bottom: 0; }
  .nav.menu-open .nav-toggle span { background: transparent; }
  .nav.menu-open .nav-toggle span::before { transform: rotate(45deg) translate(6px, 6px); }
  .nav.menu-open .nav-toggle span::after  { transform: rotate(-45deg) translate(6px, -6px); }

  .hero { padding: 70px 0 80px; }
  .flag { width: 48px; height: 48px; }
  .flag.f2, .flag.f4 { top: 30px; }
  .flag.f1 { top: 220px; }
  .flag.f3 { top: 280px; }
  .flag.f5 { top: 160px; }
  .flag.f6 { top: 280px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .stats-section { padding: 44px 0; }

  .about-grid,
  .conv-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image { aspect-ratio: 16/11; }

  .service-grid,
  .why-grid,
  .testi-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .promo { height: 50px; }
  .promo-track { font-size: 12px; }

  .nav-inner { height: 72px; }
  .nav-logo { height: 52px; }

  .hero { padding: 50px 0 60px; min-height: 0; }
  .hero-heading h1 { font-size: 28px; }
  .hero-heading p { font-size: 13px; }
  .hero-ctas { gap: 14px; }
  .btn { height: 46px; padding: 0 22px; font-size: 12px; }
  /* Decorative flags overlap the centred heading on narrow screens — hide them. */
  .hero-flags { display: none; }

  .stats { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .stat-num { font-size: 28px; }

  .section { padding: 64px 0; }

  .service-grid,
  .why-grid,
  .testi-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calculator { padding: 28px 22px; }
  .calc-rates { flex-direction: column; gap: 4px; }

  .float-icons { right: 12px; bottom: 16px; }
  .float-icons a { width: 48px; height: 48px; }

  .testimonials { padding: 70px 0; }
  .location-map { height: 320px; }

  .footer-bottom { flex-direction: column; gap: 6px; text-align: left; }
}

/* ============================================================
   Exchange Rates table
   ============================================================ */
.rates-section { background: #fff; }
.rates-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.rates-head .eyebrow { margin-bottom: 8px; }
.rates-head .h2 { margin: 0; }
.rates-admin-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.rates-admin-toggle:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.rates-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  -webkit-overflow-scrolling: touch;
}
.rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}
.rates-table thead th {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  padding: 15px 18px;
  text-align: center;
  border: none;
  border-right: 1px solid rgba(255,255,255,.16);
}
.rates-table thead tr:first-child th { border-bottom: 1px solid rgba(255,255,255,.16); }
.rates-table thead th:last-child { border-right: none; }
.rates-table thead .rt-group { font-size: 15px; letter-spacing: .3px; }
.rates-table thead .rt-sub { font-weight: 500; font-size: 13px; opacity: .92; }
.rates-table .rt-currency-col { text-align: left; width: 24%; }
.rates-table tbody td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid #eef0f3;
  font-weight: 600;
  color: #24303f;
  font-variant-numeric: tabular-nums;
}
.rates-table tbody tr:nth-child(even) td { background: #faf8f4; }
.rates-table tbody tr:hover td { background: #fff5ea; }
.rates-table tbody tr:last-child td { border-bottom: none; }
.rates-table .rt-currency {
  font-weight: 700;
  text-align: left;
  letter-spacing: .2px;
  color: var(--ink);
  border-left: 3px solid transparent;
}
.rates-table tbody tr:hover .rt-currency { border-left-color: var(--orange); }
/* Emphasise the headline "Customer Buy → Currency" rate */
.rates-table tbody td:nth-child(2) { color: var(--orange-dark); font-weight: 700; }

.rates-footer { margin-top: 26px; }
.rates-updated { margin: 0 0 8px; font-size: 15px; color: var(--green); font-weight: 500; }
.rates-updated em { font-style: italic; color: var(--ink); }
.rates-note { margin: 0 0 8px; font-size: 14px; color: #c0392b; }
.rates-more { margin: 0; font-size: 15px; color: var(--green); font-weight: 500; }

/* ---- Admin modal ---- */
.rates-admin-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rates-admin-backdrop[hidden] { display: none; }
.rates-admin-panel {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.rates-admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--green);
  color: #fff;
}
.rates-admin-bar h3 { margin: 0; font-size: 20px; font-weight: 700; }
.rates-admin-close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.rates-admin-login {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto;
}
.rates-admin-login label { font-weight: 600; font-size: 15px; }
.rates-admin-login input {
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}
.rates-admin-login input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,127,0,.15); }
.rates-admin-err { color: #c0392b; font-size: 14px; margin: 0; }
.rates-admin-hint { font-size: 13px; color: var(--muted); margin: 4px 0 0; }
.rates-admin-hint code { background: #f0f0f0; padding: 1px 6px; border-radius: 4px; }

.rates-admin-editor {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.rates-admin-actions {
  display: flex;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.rates-admin-actions .btn { height: 42px; padding: 0 18px; font-size: 14px; }
.rates-admin-tablewrap {
  overflow: auto;
  padding: 8px 24px;
  flex: 1;
}
.rates-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.rates-admin-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 8px;
  position: sticky;
  top: 0;
  background: #fff;
}
.rates-admin-table td { padding: 5px 8px; }
.rates-admin-table input {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  padding: 9px 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.rates-admin-table input:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,127,0,.15); }
.rates-row-del {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: #c0392b;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.rates-row-del:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

.rates-admin-save-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}
.rates-admin-saved { color: var(--green); font-weight: 600; font-size: 15px; }

@media (max-width: 700px) {
  .rates-head { flex-wrap: wrap; }
  .rates-table { font-size: 13px; }
  .rates-table thead th { padding: 12px 10px; }
  .rates-table tbody td { padding: 12px 10px; }
  .rates-admin-login { padding: 28px 20px; }
}
