/* ============================================================
   Georgian Youth Business Association - style.css
   Primary: #1a3470 | Accent: #2a9d8f | Light: #f0f4ff
   Font: Montserrat (headings) + Source Sans 3 (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #1a3470;
  --primary-dk:  #11224d;
  --primary-lt:  #2952a3;
  --accent:      #2a9d8f;
  --accent-lt:   #3bbfaf;
  --gold:        #e9c46a;
  --bg:          #2e2e2e;
  --bg-card:     #1c1c1c;
  --text:        #ceeeff;
  --text-muted:  #b5c9f7;
  --border:      #2e2e2e;
  --shadow-sm:   0 2px 8px rgba(26,52,112,.08);
  --shadow-md:   0 6px 24px rgba(26,52,112,.13);
  --shadow-lg:   0 16px 48px rgba(26,52,112,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,157,143,.35);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,157,143,.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: .45rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.top-bar a:hover { color: var(--gold); }

.top-bar-phone { display: flex; align-items: center; gap: .4rem; }
.top-bar-phone i { color: var(--accent-lt); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
}

.lang-btn {
  padding: .22rem .65rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: none;
  background: transparent;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ---------- MAIN HEADER ---------- */
.main-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: .9rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-placeholder {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  letter-spacing: .05em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: .02em;
}

.logo-text span {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}


/* Social icons (left) */
.header-social {
  display: flex;
  gap: .65rem;
  align-items: center;
}

.header-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.header-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Logo (right) */

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--primary);
  box-shadow: 0 3px 12px rgba(26,52,112,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 1rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 60%; }

.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after { width: 60%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 1rem;
  margin-left: auto;
  background: #e9c46a;

}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #150c4f;
  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); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary-lt) 60%, #1e6ba0 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(42,157,143,.3) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(233,196,106,.15) 0%, transparent 40%);
  pointer-events: none;
}

/* Geometric decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border: 60px solid rgba(255,255,255,.04);
  border-radius: 50%;
}

.hero-shapes::after {
  content: '';
  position: absolute;
  right: 80px; top: 80px;
  width: 300px; height: 300px;
  border: 40px solid rgba(42,157,143,.15);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
  max-width: 680px;
  animation: fadeUp .9s ease both;
}

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


@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

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

.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero {
  background: var(--gold);
  color: var(--primary-dk);
  box-shadow: 0 4px 20px rgba(233,196,106,.4);
}
.btn-hero:hover {
  background: #f4d37e;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(233,196,106,.5);
}

.btn-hero-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeUp .9s .2s ease both;
}

.stat-item { text-align: left; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

/* ---------- FEATURES STRIP ---------- */
.features-strip {
  background: var(--bg-card);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-item:hover {
  background: var(--bg);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(42,157,143,.15), rgba(26,52,112,.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: .25rem;
}

.feature-item p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- NEWS / CTA SECTION ---------- */
.news-section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: .6rem; }

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}

.news-card-body { padding: 1.5rem; }

.news-date {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.news-card-body h3 {
  color: var(--primary);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.news-card-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .8rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.read-more:hover { gap: .6rem; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(42,157,143,.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 { color: #fff; margin-bottom: .8rem; }

.cta-banner p {
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ---------- ABOUT PAGE ---------- */
/* Updated About Page Styles - Add this to your style.css */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start; /* Changed from 'center' to 'start' to align image to top */
}

.about-img-wrap {
  position: relative;
  align-self: start; /* Ensures the image container stays at the top */
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
  margin-top: 0; /* Ensures no top margin */
}

.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--primary-dk);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.about-img-badge span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  opacity: .8;
}

.about-text h2 { margin-bottom: 1rem; }

.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mv-card {
  padding: 1.4rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.mv-card h4 {
  color: var(--primary);
  margin-bottom: .4rem;
  font-size: .95rem;
}

.mv-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* Values */
.values-section { background: var(--bg-card); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}

.value-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(26,52,112,.2);
}

.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: var(--text-muted); }

/* Team mini */
.team-mini {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- MEMBERS PAGE ---------- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.member-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,157,143,.3);
}

.member-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.member-img i {
  font-size: 4rem;
  color: rgba(255,255,255,.25);
}

.member-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,52,112,.6), transparent);
}

.member-body { padding: 1.5rem; }

.member-body h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .2rem;
}

.member-position {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.member-body p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.member-social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.member-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.member-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Members filter */
.members-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: .45rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------- CONTACT PAGE ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: .8rem; }

.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cd-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,52,112,.2);
}

.cd-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: .15rem;
}

.cd-value { font-size: .95rem; color: var(--text); font-weight: 500; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,157,143,.12);
  background: #fff;
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; }

/* Map placeholder */
.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #dde3f0 0%, #c5d0e8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
  margin-top: 3rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: 'Google Maps Placeholder';
  position: absolute;
  bottom: 1.5rem;
  font-size: .85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk), var(--primary-lt));
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(42,157,143,.2) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: #fff; margin-bottom: .5rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .8rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
}

.footer-logo-box {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary-lt), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
}

.footer-logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  display: block;
}

.footer-logo-text span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}

.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.6);
}


.footer-col h4 {
  color: #fff;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(255,255,255,.08);
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul li a::before {
  content: '';
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: .3rem;
}
.footer-col ul li a:hover::before { width: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- PAGE TRANSITIONS ---------- */
.page-enter {
  animation: pageEnter .5s ease both;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 460px; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: .4rem; }

  .header-inner { padding: 0.7rem 1rem; }


  /* Mobile nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-dk);
    z-index: 999;
    padding: .5rem 0 1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: .85rem 1.5rem; }
  .nav-links a::after { display: none; }

  .nav-inner { justify-content: flex-end; }

  .hero { min-height: 75vh; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }

  .mission-vision { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .about-img-badge { bottom: 10px; right: 10px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero { padding: 2rem 0; min-height: auto; }
  .section { padding: 3.5rem 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
