

/* =============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --blue-dark:   #0a1628;
  --blue-mid:    #0d2244;
  --blue:        #1a3a6b;
  --blue-light:  #2563b0;
  --yellow:      #f5c518;
  --yellow-light:#ffd84d;
  --white:       #ffffff;
  --off-white:   #f4f6fa;
  --gray:        #8a9bb5;
  --gray-light:  #e8edf5;
  --text-dark:   #0d1c30;
  --text-body:   #3a4a5c;
  --radius:      6px;
  --shadow:      0 8px 32px rgba(10,22,40,0.18);
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* =============================================
   SHARED UTILITIES
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--yellow); color: var(--blue-dark); }
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); transform: translateY(-2px); }
.section-tag {
  display: inline-block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--blue-dark); line-height: 1.1;
}
.section-title span { color: var(--blue-light); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--yellow); }
.section-divider { width: 60px; height: 4px; background: var(--yellow); border-radius: 2px; }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--blue-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background var(--transition);
}
#navbar.scrolled { background: rgba(10,22,40,0.97); backdrop-filter: blur(10px); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 48px; height: 48px; background: var(--yellow);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--blue-dark);
  /* REPLACE: <img src="logo.png" alt="EMI" style="height:48px;width:auto;border-radius:6px;"> */
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.logo-text span { font-size: 0.68rem; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 8px 14px;
  color: rgba(255,255,255,0.85); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  background: none; border: none;
}
.nav-link:hover, .nav-item:hover > .nav-link,
.nav-link.active-page { color: var(--yellow); background: rgba(255,255,255,0.05); }
.nav-link i.fa-chevron-down { font-size: 0.65rem; transition: transform .3s; }
.nav-item:hover > .nav-link i.fa-chevron-down { transform: rotate(180deg); }

/* Standard dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: var(--blue-dark); border-top: 3px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition); z-index: 999;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-group { padding: 12px 0 6px; }
.dropdown-group-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow);
  padding: 4px 18px 6px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 4px;
}
.dropdown a {
  display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: var(--transition);
}
.dropdown a i { color: var(--yellow); width: 14px; font-size: 0.8rem; }
.dropdown a:hover { background: rgba(245,197,24,0.08); color: var(--white); padding-left: 24px; }

/* Mega dropdown */
.dropdown.mega {
  min-width: 700px; display: grid;
  grid-template-columns: repeat(2,1fr); gap: 0; left: -200px;
}

/* =============================================
   LANGUAGE SWITCHER (in navbar)
============================================= */
.nav-lang {
  position: relative;
}
.lang-trigger {
  display: flex; align-items: center; gap: 6px; padding: 7px 12px;
  color: rgba(255,255,255,0.85); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer;
  background: none; border: none; white-space: nowrap;
}
.lang-trigger:hover, .nav-lang:hover .lang-trigger { color: var(--yellow); background: rgba(255,255,255,0.05); }
.lang-trigger i.globe { font-size: 0.9rem; color: var(--yellow); }
.lang-trigger i.fa-chevron-down { font-size: 0.6rem; transition: transform .3s; }
.nav-lang:hover .lang-trigger i.fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 130px; background: var(--blue-dark);
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition); z-index: 999;
  overflow: hidden;
}
.nav-lang:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; cursor: pointer;
  color: rgba(255,255,255,0.75); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; transition: var(--transition);
  border: none; background: none; width: 100%; text-align: left;
}
.lang-option:hover { background: rgba(245,197,24,0.08); color: var(--white); }
.lang-option.active { color: var(--yellow); }
.lang-option .flag { font-size: 1.1rem; }

/* =============================================
   SEARCH ICON + OVERLAY
============================================= */
.nav-search-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  margin-left: 6px;
}
.nav-search-btn:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }



/* =============================================
   HAMBURGER (mobile)
============================================= */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   PAGE HERO BANNER
============================================= */
#page-hero {
  position: relative; height: 340px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  overflow: hidden;
}
#page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(245,197,24,0.07) 0%, transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(37,99,176,0.15) 0%, transparent 40%);
}
.hero-ring {
  position: absolute; right: 140px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; border: 2px solid rgba(245,197,24,0.12);
  border-radius: 50%; z-index: 1;
}
.hero-ring::before {
  content: ''; position: absolute; inset: 25px;
  border: 1px solid rgba(245,197,24,0.07); border-radius: 50%;
}
.hero-watermark {
  position: absolute; right: 160px; top: 50%; transform: translateY(-50%);
  font-size: 7rem; color: rgba(255,255,255,0.04); z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--yellow); }
#page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 18px;
}
#page-hero h1 em { font-style: normal; color: var(--yellow); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb i { font-size: 0.6rem; color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* =============================================
   CONTACT INFO CARDS
============================================= */
#contact-info { padding: 70px 0 0; background: var(--white); }
.info-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.info-card {
  background: var(--white); border-radius: 8px; padding: 36px 28px;
  text-align: center; box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  border-bottom: 4px solid var(--yellow); transition: var(--transition);
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-light); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(10,22,40,0.13); }
.info-card:hover::before { transform: scaleX(1); }
.info-card-icon {
  width: 68px; height: 68px; background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--yellow); margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(10,34,68,0.25); transition: var(--transition);
}
.info-card:hover .info-card-icon { background: var(--yellow); color: var(--blue-dark); }
.info-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue-dark); margin-bottom: 12px;
}
.info-card p, .info-card a { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; transition: color .2s; }
.info-card a:hover { color: var(--blue-light); }

/* =============================================
   CONTACT MAIN
============================================= */
#contact-main { padding: 70px 0 100px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 56px; align-items: start; }

/* Left column */
.contact-img-wrap { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.contact-img-placeholder {
  width: 100%; height: 280px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.08); position: relative;
}
.contact-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 28px);
}
/* REPLACE .contact-img-placeholder with:
   <img src="contact-image.jpg" alt="Contact EMI"
        style="width:100%;height:280px;object-fit:cover;border-radius:8px;"> */
.contact-img-badge {
  position: absolute; bottom: -18px; right: 20px;
  background: var(--yellow); color: var(--blue-dark);
  border-radius: var(--radius); padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(245,197,24,0.4);
}
.contact-img-badge i { margin-right: 6px; }
.contact-side-info { margin-top: 30px; }
.contact-side-info h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--blue-dark); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow); display: inline-block;
}
.contact-detail-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(245,197,24,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 0.9rem;
}
.contact-detail-row strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--blue-dark); margin-bottom: 2px;
}
.contact-detail-row span,
.contact-detail-row a { font-size: 0.87rem; color: var(--text-body); line-height: 1.6; transition: color .2s; }
.contact-detail-row a:hover { color: var(--blue-light); }
.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem; transition: var(--transition);
}
.contact-social a:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }

/* Form */
.contact-form-wrap {
  background: var(--off-white); border-radius: 10px; padding: 44px 40px;
  box-shadow: 0 4px 30px rgba(10,22,40,0.07);
}
.contact-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800;
  color: var(--blue-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.contact-form-wrap p.form-subtitle { font-size: 0.9rem; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-dark); margin-bottom: 7px;
}
.form-group label span { color: var(--yellow); }
.form-control {
  width: 100%; padding: 12px 16px; background: var(--white);
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  color: var(--text-dark); font-family: 'Lato', sans-serif; font-size: 0.92rem;
  transition: border-color .25s, box-shadow .25s; outline: none;
}
.form-control::placeholder { color: var(--gray); font-size: 0.88rem; }
.form-control:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(37,99,176,0.1); }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9bb5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue-light); cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: 0.83rem; color: var(--gray); line-height: 1.5; cursor: pointer; }
.form-check label a { color: var(--blue-light); text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 15px; font-size: 1.05rem;
  background: var(--blue-dark); color: var(--white); border: none;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(10,22,40,0.2); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-alert {
  display: none; padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 20px; align-items: center; gap: 10px;
}
.form-alert.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #43a047; display: flex; }
.form-alert.error   { background: #ffebee; color: #c62828; border-left: 4px solid #ef5350; display: flex; }

/* =============================================
   MAP SECTION
============================================= */
#contact-map { height: 400px; background: var(--blue-mid); position: relative; overflow: hidden; }
.map-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: rgba(255,255,255,0.4); gap: 14px;
}
.map-placeholder i { font-size: 3.5rem; color: var(--yellow); opacity: 0.6; }
.map-placeholder p { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }
.map-placeholder small { font-size: 0.78rem; opacity: 0.6; }

/* =============================================
   CTA BANNER
============================================= */
#cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  position: relative; overflow: hidden; text-align: center;
}
#cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; border: 2px solid rgba(245,197,24,0.08); border-radius: 50%; }
#cta::after  { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border: 2px solid rgba(245,197,24,0.06); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 14px auto 32px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); padding: 70px 0 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { line-height: 1.8; margin: 16px 0; color: rgba(255,255,255,0.5); font-size: 0.87rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 10%; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-icon:hover { background: var(--yellow); color: var(--blue-dark); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a i { color: var(--yellow); font-size: 0.65rem; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--yellow); margin-top: 3px; width: 16px; }

/* Location hover card */
.footer-location-wrap { position: relative; display: inline-block; cursor: pointer; }
.footer-location-wrap .location-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; transition: color .2s; }
.footer-location-wrap:hover .location-text { color: var(--yellow); }

.location-card {
  position: absolute; bottom: calc(100% + 12px); left: 0;
  width: 260px; background: var(--white); border-radius: 8px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.35);
  border-top: 3px solid var(--yellow);
  opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  z-index: 100; overflow: hidden;
}
.footer-location-wrap:hover .location-card { opacity: 1; visibility: visible; transform: translateY(0); }

.location-card-map {
  width: 100%; height: 130px; overflow: hidden; position: relative;
  background: var(--off-white); display: block;
}
.location-card-map img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Static Google Maps snapshot */
  /* REPLACE src with your real static map — see instructions in contact-script.js */
}
/* Fallback if image not loaded */
.location-card-map-fallback {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,0.15);
}
.location-card-body { padding: 12px 14px; }
.location-card-body strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--blue-dark); margin-bottom: 4px;
}
.location-card-body p { font-size: 0.78rem; color: var(--text-body); line-height: 1.5; margin-bottom: 10px; }
.location-card-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px; background: var(--yellow); color: var(--blue-dark);
  border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition);
}
.location-card-link:hover { background: var(--yellow-light); }

.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--yellow); }

/* =============================================
   BACK TO TOP
============================================= */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px;
  background: var(--yellow); color: var(--blue-dark); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 16px rgba(245,197,24,0.5);
  opacity: 0; transform: translateY(20px); transition: var(--transition); z-index: 9999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--yellow-light); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .dropdown.mega { min-width: 500px; left: -100px; grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; align-items: flex-start; }
  .hamburger { display: flex; }
  .nav-search-btn { display: flex; }
  .nav-menu.open {
    display: flex; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--blue-dark); padding: 16px 0 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 999;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 12px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; border-top: none; border-left: 3px solid var(--yellow); margin-left: 20px; box-shadow: none; background: rgba(255,255,255,0.04); }
  .dropdown.mega { display: none; grid-template-columns: 1fr; min-width: auto; left: 0; position: static; }
  .nav-item.open .dropdown, .nav-item.open .dropdown.mega { display: block; }
  .nav-item.open > .nav-link i.fa-chevron-down { transform: rotate(180deg); }
  .nav-lang { width: 100%; }
  .lang-trigger { width: 100%; padding: 12px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .lang-dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; border-top: none; border-left: 3px solid var(--yellow); margin-left: 20px; box-shadow: none; background: rgba(255,255,255,0.04); }
  .nav-lang.open .lang-dropdown { display: block; }
  .nav-lang.open .lang-trigger i.fa-chevron-down { transform: rotate(180deg); }
  .info-cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  #page-hero { height: 240px; }
  .hero-ring, .hero-watermark { display: none; }
  .location-card { left: auto; right: 0; bottom: calc(100% + 12px); }
}
@media (max-width: 480px) {
  .search-overlay { padding-top: 80px; }
}
