@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --sapphire: #0B6E4F;
  --sapphire-dark: #063D2C;
  --sky: #158F63;
  --gold: #C1272D;
  --gold-light: #7A1414;
  --amber: #D8A23D;
  --amber-dark: #A97A22;
  --paper: #FBF3E7;
  --ink: #142A1E;
  --line: rgba(11, 110, 79, 0.18);
  --stamp-red: #C1272D;
  --max: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(20,42,30,0.07);
  --shadow-md: 0 10px 30px rgba(20,42,30,0.12);
  --shadow-lg: 0 24px 60px rgba(20,42,30,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; max-width: 65ch; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4.5vw, 28px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; box-shadow: 0 8px 18px rgba(193,39,45,0.3); }
.btn-gold:hover { box-shadow: 0 12px 24px rgba(193,39,45,0.38); }
.btn-sapphire { background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark)); color: #fff; box-shadow: 0 8px 18px rgba(11,110,79,0.26); }
.btn-sapphire:hover { box-shadow: 0 12px 24px rgba(11,110,79,0.34); }
.btn-outline { background: transparent; border-color: var(--sapphire); color: var(--sapphire); }
.btn-outline:hover { background: var(--sapphire); color: #fff; }
.btn-outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--sapphire); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--sapphire), var(--amber), var(--gold)) 1;
  box-shadow: var(--shadow-sm);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img { height: 44px; width: auto; display: block; }
.logo .accent { color: var(--gold); }
.logo-text { min-width: 0; }
.site-footer .logo, .site-footer .logo .accent { color: #fff; }
.site-footer .logo img {
  height: 56px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--gold); }
.nav-cta { background: var(--gold); color: #fff !important; padding: 10px 18px; border-radius: 6px; border-bottom: none !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 22px; cursor: pointer; align-items: center; justify-content: center; }

@media (max-width: 420px) {
  .site-header .wrap { height: 66px; }
  .logo { font-size: 16px; gap: 6px; }
  .logo img { height: 34px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--sapphire);
    flex-direction: column; align-items: stretch; gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,0.15); }
  .nav-links a { display: block; padding: 16px 28px; color: #fff; }
  .nav-cta { margin: 16px 28px; text-align: center; display: block; }
}

/* Footer */
.site-footer { background: var(--sapphire-dark); color: #fff; padding: clamp(40px, 8vw, 56px) 0 28px; margin-top: clamp(56px, 10vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.05fr 0.8fr 1.15fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #fff; text-decoration: none; opacity: 0.85; transition: opacity .2s ease; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; font-size: 13px; opacity: 0.7;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
}

/* Footer social icons */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; opacity: 1;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.footer-social a:hover {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-3px); text-decoration: none;
}

/* Footer address line */
.footer-address { display: flex; gap: 9px; align-items: flex-start; line-height: 1.55; opacity: 0.85; margin-top: 2px; }
.footer-address i { margin-top: 3px; color: var(--amber); flex-shrink: 0; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.section { padding: clamp(44px, 8vw, 80px) 0; }
.section-tight { padding: clamp(32px, 6vw, 52px) 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  background: color-mix(in srgb, currentColor 12%, transparent);
}
.center { text-align: center; }
.bg-sapphire { background: var(--sapphire); color: #fff; }

/* HERO */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(11,110,79,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(193,39,45,0.10), transparent 55%),
    var(--paper);
  padding: clamp(40px, 8vw, 64px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 20px; padding-bottom: clamp(40px, 8vw, 64px); position: relative; z-index: 1; animation: fadeInUp 0.7s ease both; }
.hero h1 { color: var(--ink); font-size: clamp(32px, 4.8vw, 50px); max-width: 20ch; font-weight: 600; }
.hero p.lead { color: var(--ink); opacity: 0.72; font-size: 17px; max-width: 58ch; }

/* Flight-route hero graphic — one deliberate animated moment, not a background loop */
.hero-route {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 42vw);
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}
.hero-route .route-line {
  fill: none;
  stroke: var(--sapphire);
  stroke-width: 2;
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  opacity: 0.4;
}
.hero-route .route-line-draw {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawRoute 2.4s 0.3s cubic-bezier(.65,0,.35,1) forwards;
}
.hero-route .route-plane {
  transform-box: fill-box;
  transform-origin: center;
  offset-path: path('M20,150 C120,20 300,220 460,40');
  animation: flyRoute 2.4s 0.3s cubic-bezier(.65,0,.35,1) forwards;
}
.hero-route .route-dot { fill: var(--gold); }
.hero-route .route-city { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; fill: var(--ink); opacity: 0.7; }
@keyframes drawRoute { to { stroke-dashoffset: 0; } }
@keyframes flyRoute { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .hero-route .route-line-draw { stroke-dashoffset: 0; animation: none; }
  .hero-route .route-plane { offset-distance: 100%; animation: none; }
}
@media (max-width: 960px) { .hero-route { display: none; } }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ticket-style search widget — boarding-pass detailing */
.ticket {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-top: 8px;
  overflow: hidden;
}
.ticket::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--sapphire), var(--amber) 50%, var(--gold));
}
.ticket-tabs { display: flex; border-bottom: 1px dashed var(--line); overflow-x: auto; padding: 6px 6px 0; gap: 4px; }
.ticket-tab {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter'; font-weight: 600; font-size: 14px; color: var(--sapphire);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border-bottom: 3px solid transparent;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.15s ease;
}
.ticket-tab.is-active { border-bottom-color: var(--gold); background: rgba(193,39,45,0.08); }
.ticket-panel { display: none; padding: 26px; position: relative; }
.ticket-panel.is-active { display: block; }

@media (max-width: 560px) {
  .ticket-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; overflow: visible; padding: 6px; }
  .ticket-tab { min-width: 0; font-size: 13px; padding: 12px 8px; border-radius: var(--radius-sm); }
  .ticket-panel { padding: 18px; }
}

/* notch + dashed divider effect for the ticket */
.ticket-panel::before, .ticket-panel::after {
  content: ''; position: absolute; width: 20px; height: 20px; background: var(--paper);
  border-radius: 50%; top: 50%; transform: translateY(-50%); display: none;
}

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px,100%),1fr)); gap: 16px; align-items: end; }
.field-label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
.field-input, select, input[type="text"], input[type="date"], input[type="number"], input[type="email"], input[type="tel"], textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  font-family: 'Inter'; font-size: 15px; background: #fff; color: var(--ink);
  transition: border-color 0.15s ease;
}
.field-input:focus, select:focus, input:focus, textarea:focus {
  outline: none; border-color: var(--sapphire);
}
input[type="text"].code-input { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.trip-type { display: flex; gap: 18px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.trip-type label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
textarea { resize: vertical; min-height: 100px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,20,40,0.6);
  display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 200;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fff; border-radius: var(--radius-md); max-width: 440px; width: 100%; padding: 32px;
  position: relative; border-top: 6px solid var(--gold); box-shadow: var(--shadow-lg);
}
.modal-box h3 { color: var(--sapphire); font-size: 21px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  background: var(--paper); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; color: var(--ink); opacity: 0.7; transition: opacity 0.15s ease, background 0.15s ease;
}
.modal-close:hover { opacity: 1; background: var(--line); }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

/* Passport stamp badge (visa cards) */
.stamp {
  width: 92px; height: 92px; border-radius: 50%;
  border: 3px solid var(--stamp-red); color: var(--stamp-red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(-7deg); position: relative; flex-shrink: 0;
  font-family: 'Fraunces', serif; font-weight: 700; text-align: center;
  box-shadow: 0 4px 10px rgba(192,39,43,0.15);
}
.stamp::before { content: ''; position: absolute; inset: 6px; border: 1px dashed var(--stamp-red); border-radius: 50%; opacity: 0.7; }
.stamp .country { font-size: 12px; line-height: 1.1; padding: 0 8px; }
.stamp .visa-word { font-size: 8px; letter-spacing: 1px; margin-top: 2px; opacity: 0.85; }

.visa-card {
  display: flex; gap: 20px; padding: 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md); align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.visa-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.visa-card h3 { font-size: 19px; margin-bottom: 6px; }
.visa-card .meta { font-size: 13px; color: var(--sky); font-weight: 600; margin-bottom: 8px; }

/* Tour package card */
.tour-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 32px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tour-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tour-card img { height: 190px; width: 100%; object-fit: cover; }
.tour-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--sapphire); font-size: 20px; }
.tour-tag { font-size: 12px; font-weight: 700; color: var(--gold); background: rgba(192,39,43,0.12); padding: 4px 10px; border-radius: 20px; display: inline-block; width: fit-content; }

/* service overview cards on home */
.service-card {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--sapphire);
  border-radius: 4px var(--radius-md) var(--radius-md) 4px; padding: 28px;
  display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-left-color 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:nth-child(even) { border-left-color: var(--gold); }
.service-card h3 { font-family: 'Fraunces', serif; font-weight: 600; }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; background: rgba(11,110,79,0.1); color: var(--sapphire);
}
.service-card:nth-child(even) .service-icon { background: rgba(193,39,45,0.1); color: var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.trust-strip-wrap { position: relative; z-index: 2; margin-top: -46px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  background: rgba(20,42,30,0.14);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.trust-strip > div {
  background: rgba(255,255,255,0.82);
  padding: 18px 14px;
  text-align: center;
  min-width: 0;
}
.trust-strip div strong { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(18px, 2.4vw, 26px); display: block; color: var(--sapphire); }
.trust-strip div span { font-size: 12px; opacity: 0.7; color: var(--ink); word-break: break-word; }
@media (max-width: 480px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-wrap { margin-top: -30px; }
}

/* Destinations — button-controlled infinite carousel of modern photo tiles */
.dest-carousel {
  position: relative;
  margin-top: 36px;
}
/* Edge fades used to be done with mask-image on .dest-marquee, but WebKit/iOS
   Safari has a real bug where mask-image + a scroll container whose scrollLeft
   is being updated by JS repeatedly can render fully blank. Plain gradient
   overlay panels give the same soft-fade look without touching mask at all,
   so they render correctly everywhere, including iPhone Safari. */
.dest-carousel::before,
.dest-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  z-index: 3;
  pointer-events: none;
}
.dest-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.dest-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.dest-marquee {
  overflow: hidden;
  position: relative;
}
.dest-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}
.dest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15,40,30,0.14);
  color: var(--sapphire);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dest-nav:hover { background: var(--sapphire); color: #fff; }
.dest-nav:active { transform: translateY(-50%) scale(0.94); }
.dest-nav-prev { left: -4px; }
.dest-nav-next { right: -4px; }
@media (max-width: 700px) {
  .dest-nav { width: 38px; height: 38px; font-size: 13px; }
  .dest-nav-prev { left: 2px; }
  .dest-nav-next { right: 2px; }
}

.dest-tile {
  position: relative;
  flex: 0 0 min(300px, 78vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.dest-tile:hover { transform: translateY(-6px); }
.dest-tile-media { position: absolute; inset: 0; z-index: 0; }
.dest-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-tile:hover .dest-tile-media img { transform: scale(1.08); }
.dest-tile-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,42,30,0) 30%, rgba(20,42,30,0.55) 68%, rgba(20,42,30,0.92) 100%);
}
.dest-duration {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}
.dest-tile-content { position: relative; z-index: 2; padding: 0 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.dest-tile h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; margin: 0; color: #fff; }
.dest-tile p {
  color: #fff;
  opacity: 0.82;
  font-size: 13.5px;
  margin: 0 0 8px;
  max-width: 32ch;
}
.dest-tile-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.25); }
.dest-price { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: var(--amber); }
.dest-price span { display: block; font-family: 'Inter'; font-weight: 500; font-size: 11px; color: #fff; opacity: 0.7; }
.dest-arrow {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.dest-tile:hover .dest-arrow { transform: translateX(3px); background: var(--gold); border-color: var(--gold); }

@media (max-width: 560px) {
  .dest-tile { flex-basis: min(250px, 74vw); min-height: 320px; }
}

#form-confirmation {
  background: #DFF3E3; border: 1px solid #2D6A4F; color: #1B4332;
  padding: 18px 22px; border-radius: 8px; margin-bottom: 28px; font-size: 15px;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; animation: none !important; } }

/* ---------- Shared static content pages (About, Privacy, Refund, Terms) ---------- */
.static-content { max-width: 800px; }
.static-content h2 { font-size: clamp(19px,2.4vw,24px); margin: 34px 0 12px; }
.static-content h2:first-child { margin-top: 0; }
.static-content p { font-size: 15px; line-height: 1.8; opacity: 0.82; margin: 0 0 14px; }
.static-content ul { margin: 0 0 16px; padding-left: 20px; }
.static-content li { font-size: 15px; line-height: 1.8; opacity: 0.82; margin-bottom: 8px; }
.static-updated { font-size: 13px; opacity: 0.6; margin: -4px 0 30px; }

/* ---------- Info card grid (About "why choose us", Payment methods) ---------- */
.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr)); gap: 20px; margin: 28px 0; }
.info-card {
  background: #fff; border-radius: 14px; padding: 24px 22px;
  box-shadow: 0 3px 14px rgba(15,40,30,0.06); border: 1px solid rgba(15,40,30,0.06);
}
.info-card .info-card-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  background: rgba(11,110,79,0.1); color: var(--sapphire);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.info-card h3 { font-size: 16px; margin: 0 0 6px; }
.info-card p { font-size: 14px; opacity: 0.75; margin: 0; line-height: 1.6; }

/* ---------- Payment method cards ---------- */
.payment-card { display: flex; align-items: center; gap: 14px; }
.payment-card .info-card-icon { margin-bottom: 0; flex-shrink: 0; }
.payment-card-body h3 { margin: 0 0 3px; }

/* ---------- Blog empty state ---------- */
.blog-empty {
  text-align: center; padding: clamp(50px,8vw,80px) 20px; background: #fff;
  border-radius: 18px; box-shadow: 0 3px 14px rgba(15,40,30,0.06);
}
.blog-empty i { font-size: 40px; color: var(--sapphire); margin-bottom: 18px; }
.blog-empty h2 { font-size: clamp(20px,2.6vw,26px); margin: 0 0 10px; }
.blog-empty p { font-size: 15px; opacity: 0.75; max-width: 46ch; margin: 0 auto 22px; }
