/* ═══════════════════════════════════════════════════════
   MONAMI TOUR — Global Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --blue:        #1A3A6B;
  --mid:         #1E5FA8;
  --mid-light:   #2672c4;
  --accent:      #F59E0B;
  --accent-dark: #d97706;
  --accent2:     #EF4444;
  --white:       #FFFFFF;
  --offwhite:    #F8FAFC;
  --light:       #E8F0FE;
  --light2:      #F1F5F9;
  --gray:        #64748B;
  --lgray:       #CBD5E1;
  --border:      #E2E8F0;
  --dark:        #0F172A;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 2px 8px rgba(10,22,40,.08);
  --shadow:      0 4px 24px rgba(10,22,40,.12);
  --shadow-md:   0 8px 40px rgba(10,22,40,.18);
  --shadow-lg:   0 16px 60px rgba(10,22,40,.22);

  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: .18s ease;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light2); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--offwhite);
}

.section--dark {
  background: var(--navy);
}

.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  color: var(--mid);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.badge--gold {
  background: rgba(245,158,11,.15);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,.3);
}

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span,
.section-title .hl {
  color: var(--mid);
}

.section-title.white { color: var(--white); }
.section-title.white .hl { color: var(--accent); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,.45);
}

.btn-secondary {
  background: var(--mid);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,95,168,.3);
}
.btn-secondary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,95,168,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--mid);
  border: 2px solid var(--mid);
}
.btn-outline-dark:hover {
  background: var(--light);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-sm {
  font-size: .85rem;
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════ */
#topbar {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.topbar-contact a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition-fast);
}
.topbar-contact a:hover { color: var(--accent); }

.topbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  transition: background var(--transition-fast);
}
.topbar-social a:hover { background: rgba(255,255,255,.18); }

.topbar-social img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: .8;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,22,40,.08);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(10,22,40,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition-fast), color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  background: var(--light);
  color: var(--mid);
}

.nav-link.active {
  color: var(--mid);
  background: var(--light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--mid);
  border-radius: 2px;
}

/* ── Hamburger ──────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Overlay ─────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
}

#mobile-menu.open {
  display: flex;
  animation: fadeIn .25s ease;
}

.mobile-nav-logo {
  position: absolute;
  top: 20px;
  left: 24px;
}

.mobile-nav-logo img { height: 40px; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mobile-close:hover { background: rgba(255,255,255,.2); }

.mobile-link {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  width: 100%;
  text-align: center;
}
.mobile-link:hover,
.mobile-link.active {
  color: var(--accent);
  background: rgba(255,255,255,.05);
}

.mobile-cta {
  margin-top: 20px;
}

.mobile-socials {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 12px;
}

.mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mobile-socials a:hover { background: rgba(255,255,255,.2); }
.mobile-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--mid) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(30,95,168,.45) 0%, transparent 60%),
    radial-gradient(circle at 82% 25%, rgba(245,158,11,.14) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.18);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,.35);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  animation: fadeInDown .6s both;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fadeInUp .7s .1s both;
}

.hero-title .hl { color: var(--accent); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 540px;
  animation: fadeInUp .7s .2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp .7s .3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  animation: fadeInUp .7s .4s both;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── Hero Booking Card ──────────────────────────────── */
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 36px;
  animation: fadeInRight .8s .2s both;
}

.hero-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 7px;
  letter-spacing: .04em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}

.form-control::placeholder { color: rgba(255,255,255,.35); }

.form-control:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.14);
}

.form-control option {
  background: var(--navy);
  color: var(--white);
}

.route-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.route-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: .74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--light);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--mid);
  transform: scale(1.08);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PRICE CARDS
═══════════════════════════════════════════════════════ */
.prices-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--mid);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.price-card.highlight {
  background: var(--light);
  border-color: var(--mid);
}

.price-route {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-flag { font-size: 1.25rem; }

.price-from {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.2;
}

.price-dest {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.price-amt {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mid);
}

.price-amt.gold { color: var(--accent); }

/* ── Cities Panel ───────────────────────────────────── */
.cities-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  height: 100%;
}

.cities-box-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.city-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 99px;
  transition: background .2s;
}
.city-chip:hover { background: rgba(255,255,255,.18); }

.parcel-info {
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.parcel-info-icon { font-size: 1.5rem; flex-shrink: 0; }

.parcel-info-text {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.parcel-info-price { font-weight: 800; color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}

.review-route {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition-fast);
  gap: 12px;
}
.faq-question:hover { background: var(--offwhite); }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--mid);
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--mid);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 320px;
  padding: 0 24px 22px;
}

.faq-answer a { color: var(--mid); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   CONTACT CARDS
═══════════════════════════════════════════════════════ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); }

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-flag {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

.contact-country-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-country-sub {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 2px;
}

.contact-number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--light2);
  gap: 12px;
}
.contact-number-row:last-child { border-bottom: none; }

.contact-phone-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-phone-number a { color: inherit; transition: color .2s; }
.contact-phone-number a:hover { color: var(--mid); }

.contact-action-icons {
  display: flex;
  gap: 8px;
}

.contact-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.contact-icon-btn:hover {
  background: var(--mid);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(30,95,168,.3);
}

.contact-icon-btn img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.contact-icon-btn:hover img { filter: brightness(10); }

/* ── Info Card ──────────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.info-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.info-card-body {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--mid) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  right: -100px;
  top: -120px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  left: -60px;
  bottom: -80px;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   PARTNER SECTION
═══════════════════════════════════════════════════════ */
.partner-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a56 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(245,158,11,.07) 0%, transparent 60%);
  pointer-events: none;
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.partner-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin: 14px 0;
}

.partner-text h2 span { color: var(--accent); }

.partner-text p {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.partner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.partner-btns img {
  height: 46px;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
}
.partner-btns a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.partner-image,
.partner-image img {
  display: block;
  border-radius: 20px;
  max-height: 280px;
  width: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════
   SOCIAL SHARE
═══════════════════════════════════════════════════════ */
.share-box {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.share-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.share-box p {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 460px;
  margin-inline: auto;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}

.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.share-btn-fb { background: #1877F2; color: white; }
.share-btn-wa { background: #25D366; color: white; }
.share-btn-tg { background: #0088CC; color: white; }
.share-btn-vb { background: #7360F2; color: white; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo img {
  height: 46px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

.footer-social img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.footer-social a:hover img { filter: brightness(10); }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-info { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-contact-info strong { color: rgba(255,255,255,.7); display: block; margin-bottom: 2px; }
.footer-contact-info a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-info a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════════ */
#floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.float-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.float-btn.phone { background: var(--mid); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.viber { background: #7360F2; }
.float-btn.phone img { filter: brightness(10); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content       { grid-template-columns: 1fr; }
  .hero-card          { display: none; }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .prices-wrapper     { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid      { grid-template-columns: 1fr; }
  .partner-inner      { grid-template-columns: 1fr; text-align: center; }
  .partner-btns       { justify-content: center; }
  .partner-image      { display: block; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

/* ── 768px ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section            { padding: 64px 0; }
  .nav-menu           { display: none; }
  .nav-cta-desktop    { display: none; }
  .hamburger          { display: flex; }
  .topbar-contacts    { display: none; }
  .features-grid      { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner         { padding: 44px 28px; }
  .hero-stats         { gap: 20px; }
  .hero-title         { font-size: 2rem; }
  #floating-btns      { bottom: 16px; right: 16px; }
  .float-btn          { width: 48px; height: 48px; }
  .float-btn img      { width: 24px; height: 24px; }

  .partner-image      { display: block; }
}

/* ── 480px ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions       { flex-direction: column; }
  .hero-stats         { flex-direction: column; gap: 16px; }
  .hero-stat-divider  { display: none; }
  .cta-actions        { flex-direction: column; align-items: center; }
  .share-buttons      { flex-direction: column; align-items: center; }
}
