/* =============================================
   BOSPHORUS CITY – Site Yönetimi
   Deep Navy + Gold Luxury Theme
   ============================================= */

:root {
  --navy:        #0B1C3B;
  --navy-mid:    #1A3158;
  --navy-light:  #243F6A;
  --gold:        #C49A3C;
  --gold-light:  #E4BF6A;
  --gold-dark:   #9E7A2A;
  --cream:       #F8F5EF;
  --white:       #FFFFFF;
  --gray-100:    #F9FAFB;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --text:        #1F2937;
  --text-light:  #6B7280;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.3s var(--ease);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

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

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.38);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,28,59,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,28,59,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon svg { width: 38px; height: 32px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.28em;
}

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

.nav-menu > li > a {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 5px;
  transition: var(--transition);
}

.nav-menu > li > a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.07);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 6px;
}
.nav-lang a {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 4px 5px !important;
  opacity: 0.55;
}
.nav-lang span { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.nav-lang .lang-active { opacity: 1; color: var(--gold) !important; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  margin-left: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-istanbul.jpg') center / cover no-repeat;
  transform: scale(1.06);
  transition: transform 10s var(--ease);
  will-change: transform;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,28,59,0.70) 0%,
    rgba(11,28,59,0.50) 50%,
    rgba(26,49,88,0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 720px;
}

.hero-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(196,154,60,0.14);
  border: 1px solid rgba(196,154,60,0.32);
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 22px;
}
.hero-title span { display: block; }
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  background: var(--navy);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.stat-item:last-child { border-right: none; }

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.52);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  padding: 110px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 12px 32px rgba(196,154,60,0.45);
}
.about-badge i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.85;
  font-size: 0.97rem;
}

.about-features {
  margin-bottom: 34px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.94rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-200);
}
.about-features li:last-child { border-bottom: none; }
.about-features i { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 110px 0;
  background: var(--white);
}

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

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(196,154,60,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.service-icon i { font-size: 1.45rem; color: var(--gold); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENTS
═══════════════════════════════════════════ */
.announcements {
  padding: 110px 0;
  background: var(--cream);
}

.announcements-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ann-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.ann-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ann-card--featured {
  border-top: 4px solid var(--gold);
}

.ann-tag {
  display: inline-block;
  background: rgba(196,154,60,0.12);
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ann-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.ann-date i { color: var(--gold); }

.ann-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.ann-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 22px;
}
.ann-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.ann-link:hover { gap: 10px; color: var(--gold-dark); }

/* ═══════════════════════════════════════════
   DOCUMENTS
═══════════════════════════════════════════ */
.documents {
  padding: 110px 0;
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.06) 0%, transparent 60%);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: var(--transition);
}
.doc-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.doc-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,154,60,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.doc-card:hover .doc-icon { background: rgba(196,154,60,0.25); }
.doc-icon i { font-size: 1.35rem; color: var(--gold); }

.doc-info { flex: 1; min-width: 0; }
.doc-info h4 { color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.doc-info span { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

.doc-dl { color: rgba(255,255,255,0.35); transition: var(--transition); font-size: 0.9rem; }
.doc-card:hover .doc-dl { color: var(--gold); }

/* ═══════════════════════════════════════════
   LOGIN CTA
═══════════════════════════════════════════ */
.login-cta {
  position: relative;
  padding: 110px 0;
  background: url('../images/login-bg.jpg') center / cover no-repeat;
}

.login-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,28,59,0.93) 0%,
    rgba(26,49,88,0.90) 100%
  );
}

.login-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.login-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.login-content p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-input {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.login-input::placeholder { color: rgba(255,255,255,0.42); }
.login-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.13);
}
.login-form .btn { width: 100%; justify-content: center; padding: 15px; }

.login-forgot {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.login-forgot:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { padding: 110px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 1rem; color: var(--gold); }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item p { color: var(--text); font-size: 0.95rem; }
.contact-item a { color: var(--navy-mid); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 20% 80%, rgba(196,154,60,0.05) 0%, transparent 50%);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 18px; }

.footer-desc {
  color: rgba(255,255,255,0.48);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-links h5, .footer-contact h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-links ul li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-links a:hover::before { width: 10px; }

.footer-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.footer-contact p:hover { color: rgba(255,255,255,0.75); }
.footer-contact i { color: var(--gold); width: 16px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: var(--gold-light); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL (via JS)
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .about-badge { bottom: -16px; right: -8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .announcements-grid { grid-template-columns: 1fr 1fr; }
  .ann-card--featured { grid-column: span 2; }
  .documents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(11,28,59,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { font-size: 1.1rem; padding: 12px 24px; }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.09); }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.09); }

  .services-grid { grid-template-columns: 1fr; }
  .announcements-grid { grid-template-columns: 1fr; }
  .ann-card--featured { grid-column: span 1; }
  .documents-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .documents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
