/* ============================================================
   TAXIBOOK PREMIUM — Light Theme Global Stylesheet
   Aesthetic: Crisp White + Deep Navy + Gold Accent
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  /* Core Palette */
  --gold:         #C8922A;
  --gold-light:   #E8B84B;
  --gold-pale:    #FDF3E3;
  --gold-border:  rgba(200,146,42,0.2);
  --navy:         #0F1B2D;
  --navy-mid:     #1A2E4A;
  --navy-light:   #243B55;
  --white:        #FFFFFF;
  --off-white:    #F8F6F2;
  --cream:        #F2EDE4;
  --gray-100:     #F4F4F5;
  --gray-200:     #E8E8EC;
  --gray-400:     #A0A0B0;
  --gray-600:     #5A5A72;
  --gray-800:     #2A2A3A;
  --text:         #1A1A2E;
  --text-soft:    #4A4A6A;
  --border:       #E2E2EC;
  --shadow-sm:    0 2px 12px rgba(15,27,45,0.08);
  --shadow-md:    0 8px 32px rgba(15,27,45,0.12);
  --shadow-lg:    0 20px 60px rgba(15,27,45,0.15);
  --shadow-gold:  0 8px 32px rgba(200,146,42,0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-head:    'Bebas Neue', cursive;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing & Shape */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--gold-pale); color: var(--navy); }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.section--sm { padding: 48px 0; }

.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-soft  { color: var(--text-soft); }
.text-center { text-align: center; }

/* TAG BADGE */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  margin-bottom: 18px;
}
.tag i { font-size: 10px; }

/* DIVIDER */
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
  margin: 18px 0 32px;
}
.divider--center { margin: 18px auto 32px; }
.divider--wide { width: 80px; }

/* SECTION TITLES */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.85;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn i { font-size: 14px; transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(200,146,42,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
  background: linear-gradient(135deg, #b5831f 0%, var(--gold) 100%);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 40px; font-size: 14px; }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,27,45,0.1);
  height: 68px;
}
/* ---- Brand Logo (Car Image) ---- */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}
.brand-car-mark {
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}
.brand-car-frame {
  width: 58px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), #B8860B) border-box;
  box-shadow: 0 4px 16px rgba(15,27,45,0.25), 0 0 0 1px rgba(200,146,42,0.15);
}
.brand-logo--header .brand-car-frame {
  width: 64px;
  height: 38px;
  border-radius: 9px;
}
.brand-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 0.4s ease;
}
.brand-car-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 45%, rgba(200,146,42,0.12) 100%);
  pointer-events: none;
}
.brand-car-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 9px;
  box-shadow: 0 3px 10px rgba(200,146,42,0.45);
  z-index: 2;
}
.brand-logo--footer .brand-car-frame {
  width: 54px;
  height: 32px;
}
.brand-logo--footer .brand-car-badge {
  width: 18px;
  height: 18px;
  font-size: 8px;
  bottom: -4px;
  right: -4px;
  border-color: var(--navy);
}
.brand-logo:hover .brand-car-mark { transform: translateY(-2px); }
.brand-logo:hover .brand-car-img { transform: scale(1.08); }
.brand-logo:hover .brand-car-frame {
  box-shadow: 0 6px 22px rgba(200,146,42,0.35), 0 0 0 1px rgba(200,146,42,0.25);
}
.header:not(.scrolled) .brand-car-badge { border-color: rgba(255,255,255,0.9); }
.brand-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-name-taxi {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.brand-name-book {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}
.brand-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent);
  flex-shrink: 0;
}
/* Header on hero — light wordmark */
.header:not(.scrolled) .brand-name-taxi { color: var(--white); }
.header:not(.scrolled) .brand-name-book { color: var(--gold-light); }
/* Footer variant */
.brand-logo--footer .brand-name-taxi { color: var(--white); font-size: 24px; }
.brand-logo--footer .brand-name-book { color: var(--gold-light); font-size: 12px; letter-spacing: 4px; }
.brand-logo--footer .brand-emblem { width: 42px; height: 42px; }
.footer-brand .brand-logo--footer { margin-bottom: 10px; }
.header:not(.scrolled) .nav a { color: rgba(255,255,255,0.8); }
.header:not(.scrolled) .nav a:hover,
.header:not(.scrolled) .nav a.active { color: var(--white); }
.header:not(.scrolled) .hamburger span { background: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-soft);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 44px;
  letter-spacing: 3px;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.mobile-menu-line {
  width: 50px; height: 2px;
  background: var(--gold-border);
  margin: 4px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 14px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,146,42,0.1);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a i { font-size: 10px; color: var(--gold); opacity: 0; transition: var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-col ul li a:hover i { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.footer-contact-item p, .footer-contact-item a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-bottom a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,27,45,0.94) 0%, rgba(15,27,45,0.78) 55%, rgba(15,27,45,0.88) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,146,42,0.1) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
  pointer-events: none;
}
.page-hero-bg--services { background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&q=80&w=2000'); }
.page-hero-bg--fleet    { background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&q=80&w=2000'); }
.page-hero-bg--about    { background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&q=80&w=2000'); }
.page-hero-bg--contact  { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000'); }
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   IMAGE UTILITIES
   ============================================================ */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-overlay-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,27,45,0.15) 0%, rgba(15,27,45,0.55) 100%);
  pointer-events: none;
}
.img-overlay-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.2) 0%, rgba(200,146,42,0.15) 100%);
  pointer-events: none;
}
.avatar-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.65); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 9px; color: var(--gold); }
.breadcrumb .current { color: var(--gold-light); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}
.form-group label i { color: var(--gold); font-size: 11px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5A72' 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 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.stat-item h3 {
  font-family: var(--font-head);
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Alert messages */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert i { margin-top: 1px; flex-shrink: 0; }
.alert-success { background: #f0fdf4; border-color: #22c55e; color: #166534; }
.alert-error   { background: #fef2f2; border-color: #ef4444; color: #991b1b; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item h3 { font-size: 38px; }
}


/* Enhanced Luxury Card */
.feature-card, .service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 146, 42, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Button Refinement */
.btn-gold {
  background: linear-gradient(135deg, #C8922A 0%, #B8860B 100%);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(200, 146, 42, 0.4);
}

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 420px;
  margin-top: 48px;
  position: relative;
  background: var(--gray-100);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.map-info-bar .map-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.map-info-bar .map-address i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
}
.map-info-bar .map-address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}
.map-info-bar .map-address span {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}