/* ===== RIDEANTALYAVIP — ALMANCA VIP TRANSFER ===== */
/* Performance-first, conversion-optimized, German market */

:root {
  --primary: #0a0a0a;
  --accent: #c8a24e;
  --accent-dark: #a6832e;
  --accent-light: #f5e6b8;
  --white: #ffffff;
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #c0c0c0;
  --gray-500: #777;
  --gray-700: #444;
  --gray-900: #1a1a1a;
  --green: #25d366;
  --green-dark: #1da851;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,162,78,0.15);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

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

.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav a:hover { color: var(--accent); }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-wa:hover { background: var(--green-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  padding: 20px;
  border-bottom: 1px solid rgba(200,162,78,0.15);
  z-index: 999;
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding-top: 64px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200,162,78,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,162,78,0.12);
  border: 1px solid rgba(200,162,78,0.25);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-feat-icon {
  width: 28px;
  height: 28px;
  background: rgba(200,162,78,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ===== BOOKING FORM ===== */
.booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.booking-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.booking-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--accent); background: rgba(200,162,78,0.06); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-search {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.btn-search:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ===== PROMO BANNER ===== */
.promo-bar {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 5;
}

.promo-bar span { opacity: 0.8; }

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.section-header { margin-bottom: 48px; }

.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-body { padding: 24px; }

.service-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrap {
  background: var(--gray-50);
  padding: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
}

.fleet-body { padding: 20px; }

.fleet-icon { font-size: 1.4rem; margin-bottom: 6px; }

.fleet-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.fleet-pax {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.fleet-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.fleet-link:hover { color: var(--primary); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.why-card:hover { border-color: var(--accent); }

.why-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.why-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-desc {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== REGIONS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.region-tag:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

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

.review-text {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-flag { font-size: 1.3rem; }

.review-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.review-from {
  color: var(--gray-500);
  font-size: 0.78rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a { display: inline; padding: 0; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
  font-size: 1.6rem;
  color: var(--white);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===== VEHICLES PAGE ===== */
.vehicles-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--gray-50);
}

.vehicles-header {
  text-align: center;
  margin-bottom: 16px;
}

.trip-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.trip-icon { font-size: 1.1rem; color: var(--accent-dark); }
.trip-value { font-weight: 600; }

.trip-edit {
  margin-left: auto;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.trip-edit:hover { color: var(--primary); }

.vehicle-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.vehicle-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.vehicle-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.vehicle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vehicle-img-wrap {
  background: var(--gray-50);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}

.vehicle-img { max-height: 180px; width: 100%; object-fit: contain; }

.vehicle-body { padding: 24px; }

.vehicle-type {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.vehicle-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.vehicle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.vehicle-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-700);
}

.vehicle-feat-icon { color: var(--accent-dark); }

.vehicle-free {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-wa:hover { background: var(--green-dark); }

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--primary);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.page-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--gray-900);
}

.page-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-q:hover { background: var(--gray-50); }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--accent-dark);
  transition: var(--transition);
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 18px;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 40px 20px 80px; }
  .booking-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trip-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trip-edit { margin-left: 0; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.6rem; }
}

/* ===== GOOGLE MAPS AUTOCOMPLETE ===== */
.pac-container {
  background: #1a1a2e;
  border: 1px solid rgba(200,162,78,0.25);
  border-radius: 8px;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 10000 !important;
}

.pac-item {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pac-item:hover {
  background: rgba(200,162,78,0.12);
}

.pac-item-query {
  color: #fff;
  font-weight: 600;
}

.pac-matched {
  color: #c8a24e;
  font-weight: 700;
}

.pac-icon { display: none; }

.pac-item span { color: rgba(255,255,255,0.5); }

/* ===== REGIONS PAGE (transferiam style) ===== */
.regions-hero {
  background: var(--primary);
  padding: 120px 20px 60px;
  text-align: center;
}

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

.rg-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.rg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rg-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.rg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rg-card:hover .rg-img img {
  transform: scale(1.06);
}

.rg-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
}

.rg-body {
  padding: 22px 24px 26px;
}

.rg-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.rg-dist {
  color: var(--gray-500);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.rg-desc {
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.rg-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.rg-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.rg-wa:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .rg-grid { grid-template-columns: 1fr; }
  .rg-img { height: 180px; }
  .regions-hero { padding: 100px 20px 40px; }
}
