/* ============================================================
   MISGANA GROUP — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #F5A623;
  --gold-light: #FFC04D;
  --gold-dark: #D4881A;
  --dark: #1A1D27;
  --dark-nav: #14161F;
  --dark-footer: #0E1018;
  --text: #3a3a3a;
  --text-light: #666;
  --white: #ffffff;
  --bg-light: #f8f7f4;
  --border: #e5e0d5;
  --section-pad: 90px 0;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--dark-nav);
  color: #aaa;
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.04em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--gold); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar .socials { display: flex; gap: 14px; }
.top-bar .socials a { color: #aaa; font-size: 0.85rem; }
.top-bar .socials a:hover { color: var(--gold); }

/* ─── NAVBAR ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: background 0.3s;
}
header.scrolled { background: rgba(26, 29, 39, 0.97); backdrop-filter: blur(10px); }

nav { display: flex; align-items: center; justify-content: space-between; padding: 0; height: 74px; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.nav-logo span em {
  font-style: normal;
  color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); background: rgba(245,166,35,0.08); }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-radius: 0 0 6px 6px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover { background: rgba(245,166,35,0.12); color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 800 !important;
  border-radius: 4px !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.55) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(5,7,14,0.88) 0%, rgba(10,12,20,0.65) 55%, rgba(10,12,20,0.3) 100%);
}
.hero-glow {
  position: absolute; z-index: 1;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title span { color: var(--gold); display: block; }

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: #b0b8c8;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  animation: fadeUp 0.8s 0.55s ease both;
}
.hero-stat {}
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: #8895a8; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── SECTION COMMON ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 24px;
  border-radius: 2px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}
.section-lead.light { color: #aab; }

/* ─── ABOUT ─── */
.about { padding: var(--section-pad); background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--dark);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}
.about-img-badge .yrs { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-img-badge .yrs-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.value-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-light);
  padding: 14px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}
.value-icon { font-size: 1.1rem; }

/* ─── WHY US ─── */
.why-us { padding: var(--section-pad); background: var(--dark); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.why-us-header { text-align: center; margin-bottom: 60px; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.why-card:hover { background: rgba(245,166,35,0.06); transform: translateY(-6px); border-color: rgba(245,166,35,0.3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 60px; height: 60px;
  background: rgba(245,166,35,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(245,166,35,0.2); }
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.why-card p { font-size: 0.9rem; color: #8895a8; line-height: 1.75; }

/* ─── SERVICES ─── */
.services { padding: var(--section-pad); background: var(--bg-light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-lead { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,0.13); }
.service-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 1;
}
.service-card.featured .service-card-img { height: 280px; }
.service-body { padding: 28px 26px; }
.service-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; margin-bottom: 18px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ─── NEWS ─── */
.news { padding: var(--section-pad); background: var(--white); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }

.news-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.35s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.news-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card.featured .news-card-img { height: 280px; }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.news-card.featured .news-card-body h3 { font-size: 1.2rem; }
.news-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 9px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(26,29,39,0.75);
  margin-bottom: 36px;
  position: relative;
}
.cta-strip .btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.cta-strip .btn-dark:hover { background: #000; transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.3); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-footer);
  color: #aaa;
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-wrap img { height: 50px; width: auto; }
.footer-brand .logo-wrap span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: #aaa;
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,166,35,0.3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #777; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── GALLERY ─── */
.gallery-section { padding: var(--section-pad); background: var(--dark); }
.gallery-header { text-align: center; margin-bottom: 50px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.88);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 28px 14px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--large { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
}

/* ─── LOCATIONS ─── */
.locations { padding: var(--section-pad); background: var(--bg-light); }
.locations-header { text-align: center; margin-bottom: 56px; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.loc-card {
  background: var(--dark);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(245,166,35,0.08);
  cursor: pointer;
}
.loc-card:hover { transform: translateY(-6px); background: #1e2130; border-color: rgba(245,166,35,0.3); }
.loc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.loc-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loc-card p { font-size: 0.82rem; color: #888; line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--dark); padding: 20px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 14px 16px; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: 20px; background: rgba(0,0,0,0.2); }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { bottom: -16px; right: -10px; }
  .hero-stats { gap: 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
