/* ============================================================
   GhazipurCity.com — Main Stylesheet
   ============================================================ */

:root {
  --saffron:   #FF6B35;
  --green:     #1B5E20;
  --gold:      #D4AF37;
  --deep-blue: #0D47A1;
  --light-bg:  #F5F5F0;
  --white:     #FFFFFF;
  --text-dark: #212121;
  --text-mid:  #555555;
  --border:    #E0E0E0;
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --radius:    12px;
  --font:      'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* ── Top Utility Bar ── */
.util-bar {
  background: var(--green);
  color: #fff;
  font-size: .8rem;
  padding: 6px 0;
}
.util-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.util-bar a { color: #c8e6c9; }
.util-bar a:hover { color: #fff; }
.util-links { display: flex; gap: 16px; }

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

/* ── Header ── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-emblem {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.logo-text h1 { font-size: 1.4rem; color: var(--green); font-weight: 700; line-height: 1.1; }
.logo-text p  { font-size: .75rem; color: var(--saffron); font-weight: 600; letter-spacing: .5px; }

/* ── Nav ── */
nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { background: var(--saffron); color: #fff; }
.nav-list > li > a .arrow { font-size: .65rem; margin-left: 4px; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: none;
  z-index: 200;
  padding: 6px 0 8px;
}
/* Bridge the gap so moving mouse into dropdown doesn't break hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-list > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: .85rem;
  color: var(--text-mid);
  transition: background .15s;
}
.dropdown a:hover { background: #FFF3E0; color: var(--saffron); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0a2e6e 0%, #0D47A1 25%, #1B5E20 65%, #c45a10 100%) !important;
  color: #fff !important;
  padding: 90px 0 70px;
  overflow: hidden;
  text-align: center;
}
.hero * { color: inherit; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.06)" d="M0,96L60,112C120,128,240,160,360,165.3C480,171,600,149,720,128C840,107,960,85,1080,96C1200,107,1320,149,1380,170.7L1440,192L1440,320L0,320Z"/></svg>') bottom/cover no-repeat;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff !important;
}
.hero h2 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 12px; color: #fff !important; }
.hero h2 span { color: #FFD54F !important; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.92) !important; max-width: 600px; margin: 0 auto 28px; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 2rem; font-weight: 800; color: #FFD54F !important; }
.stat-item .lbl { font-size: .78rem; color: rgba(255,255,255,.82) !important; text-transform: uppercase; letter-spacing: .5px; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn-primary { background: var(--saffron); color: #fff; box-shadow: 0 4px 14px rgba(255,107,53,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,.5); }
.btn-outline { border: 2px solid rgba(255,255,255,.6); color: #fff; margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── Section Styles ── */
section { padding: 70px 0; }
/* Alternate backgrounds applied explicitly via inline style or .section-alt class */
.section-alt { background: var(--light-bg); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .tag {
  display: inline-block;
  background: #FFF3E0;
  color: var(--saffron);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); }
.section-head h2 span { color: var(--saffron); }
.section-head p { color: var(--text-mid); margin-top: 8px; max-width: 600px; margin-inline: auto; }
.divider { width: 60px; height: 4px; background: var(--saffron); border-radius: 2px; margin: 12px auto 0; }

/* ── Cards ── */
.card-grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.14); }
.card-img { height: 180px; background: linear-gradient(135deg, #e8f5e9, #fff3e0); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.card-body p { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }
.card-tag { display: inline-block; background: #E8F5E9; color: var(--green); padding: 3px 10px; border-radius: 12px; font-size: .72rem; font-weight: 700; margin-bottom: 8px; }
.card-tag.orange { background: #FFF3E0; color: var(--saffron); }
.card-tag.blue { background: #E3F2FD; color: var(--deep-blue); }

/* ── Info Block ── */
.info-block { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.info-block .text { flex: 1 1 320px; }
.info-block .visual { flex: 1 1 300px; }
.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.info-item { display: flex; gap: 10px; align-items: flex-start; }
.info-item .icon { width: 36px; height: 36px; border-radius: 8px; background: #FFF3E0; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-item strong { display: block; font-size: .82rem; color: var(--text-mid); }
.info-item span { font-size: .9rem; font-weight: 600; }

/* ── Highlight Box ── */
.highlight-box {
  background: linear-gradient(135deg, var(--green), #2E7D32);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}
.highlight-box h3 { font-size: 1.2rem; margin-bottom: 14px; }
.highlight-box ul li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .88rem; display: flex; gap: 8px; }
.highlight-box ul li:last-child { border: none; }

/* ── Tehsil Table ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
thead { background: var(--saffron); color: #fff; }
thead th { padding: 14px 16px; text-align: left; font-weight: 700; }
tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
tbody tr:hover { background: #FFF8F0; }
tbody td { padding: 12px 16px; color: var(--text-mid); }
tbody td strong { color: var(--text-dark); }

/* ── Train / Bus Schedule ── */
.schedule-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: all .2s;
}
.tab-btn.active { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Service Grid ── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
}
.service-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card .s-icon { font-size: 2rem; margin-bottom: 10px; }
.service-card h4 { font-size: .85rem; font-weight: 700; color: var(--text-dark); }
.service-card p { font-size: .75rem; color: var(--text-mid); margin-top: 4px; }

/* ── Emergency Banner ── */
.emergency-banner {
  background: linear-gradient(135deg, #B71C1C, #C62828);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.em-item { text-align: center; }
.em-item .em-num { font-size: 2rem; font-weight: 800; color: #FFCDD2; }
.em-item .em-lbl { font-size: .82rem; opacity: .85; }
.em-item .em-icon { font-size: 1.6rem; margin-bottom: 6px; }

/* ── Notable Persons ── */
.persons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.person-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.person-card:hover { transform: translateY(-4px); }
.person-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.person-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.person-card .role { font-size: .78rem; color: var(--saffron); font-weight: 600; margin-bottom: 8px; }
.person-card p { font-size: .8rem; color: var(--text-mid); }

/* ── Contact / Map ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .c-icon { width: 44px; height: 44px; border-radius: 10px; background: #FFF3E0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: .85rem; font-weight: 700; margin-bottom: 3px; }
.contact-item p  { font-size: .83rem; color: var(--text-mid); }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-box iframe { width: 100%; height: 350px; border: none; }

/* ── Festival Cards ── */
.festival-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.festival-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  color: #fff;
}
.festival-card .f-icon { font-size: 2.4rem; margin-bottom: 10px; }
.festival-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.festival-card p { font-size: .8rem; opacity: .88; }

/* ── News Ticker ── */
.news-ticker {
  background: var(--saffron);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
}
.ticker-wrap { display: flex; align-items: center; gap: 20px; }
.ticker-label { background: var(--green); padding: 4px 16px; border-radius: 4px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.ticker-text { white-space: nowrap; animation: ticker 35s linear infinite; font-size: .85rem; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ── Footer ── */
footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--saffron); border-radius: 2px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--saffron); }
.footer-col p { font-size: .85rem; color: #aaa; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: #777;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: #aaa;
  transition: all .2s;
}
.social-links a:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }

/* ── Utility Classes ── */
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.bg-green { background: linear-gradient(135deg, var(--green), #2E7D32); color: #fff; }
.bg-blue  { background: linear-gradient(135deg, var(--deep-blue), #1565C0); color: #fff; }
.bg-saffron { background: linear-gradient(135deg, var(--saffron), #E64A19); color: #fff; }
.pill { display: inline-block; padding: 3px 12px; border-radius: 12px; font-size: .75rem; font-weight: 700; }
.pill-green { background: #E8F5E9; color: var(--green); }
.pill-orange { background: #FFF3E0; color: var(--saffron); }

/* ── Accordion ── */
.accordion { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border: none; }
.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}
.acc-header:hover { background: #FFF8F0; }
.acc-header .acc-arrow { transition: transform .3s; font-size: .75rem; }
.acc-item.open .acc-header .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 16px 20px; font-size: .875rem; color: var(--text-mid); background: #FAFAFA; }
.acc-item.open .acc-body { display: block; }

/* ── Breadcrumb ── */
.breadcrumb { background: #F5F5F0; padding: 12px 0; font-size: .83rem; }
.breadcrumb a { color: var(--saffron); }
.breadcrumb span { color: var(--text-mid); margin: 0 6px; }

/* ── Back to Top ── */
#back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(255,107,53,.4);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-3px); }

/* ── Latest News ── */
.news-meta { display:flex; align-items:center; gap:14px; margin-bottom:16px; flex-wrap:wrap; }
.live-dot { display:inline-flex; align-items:center; gap:6px; background:#c00; color:#fff; padding:4px 12px 4px 10px; border-radius:20px; font-size:.72rem; font-weight:700; letter-spacing:.8px; }
.live-dot::before { content:''; width:8px; height:8px; border-radius:50%; background:#fff; animation:livepulse 1.2s ease-in-out infinite; }
@keyframes livepulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.3;transform:scale(.85);} }
.news-refresh { font-size:.78rem; color:var(--deep-blue); cursor:pointer; padding:4px 12px; border:1px solid var(--border); border-radius:20px; background:none; transition:.2s; }
.news-refresh:hover { background:var(--deep-blue); color:#fff; border-color:var(--deep-blue); }
.news-updated { font-size:.75rem; color:#999; }
.news-info { font-size:.72rem; color:#bbb; }
.news-filters { display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.news-filter-btn { padding:5px 16px; border-radius:20px; border:1px solid var(--border); background:#fff; font-size:.78rem; cursor:pointer; transition:.2s; font-family:inherit; }
.news-filter-btn.active, .news-filter-btn:hover { background:var(--saffron); color:#fff; border-color:var(--saffron); }
.news-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:14px; min-height:180px; }
.news-card { display:flex; flex-direction:column; gap:8px; padding:15px 16px; border-radius:10px; background:#fff; border:1px solid var(--border); border-left:4px solid var(--saffron); text-decoration:none; color:inherit; transition:.22s; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.news-card:hover { box-shadow:0 4px 18px rgba(0,0,0,.13); transform:translateY(-2px); border-left-color:var(--deep-blue); }
.news-card-source { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.7px; color:var(--saffron); display:flex; align-items:center; justify-content:space-between; }
.news-card-source .lang-badge { background:var(--light-bg); color:#666; padding:2px 7px; border-radius:10px; font-size:.63rem; font-weight:600; text-transform:none; letter-spacing:0; }
.news-card-title { font-size:.88rem; font-weight:600; line-height:1.48; color:var(--text); flex:1; }
.news-card-footer { display:flex; align-items:center; justify-content:space-between; font-size:.7rem; color:#aaa; }
.news-card-footer .ext-icon { font-size:1rem; color:var(--saffron); }
/* skeleton */
.news-skeleton { display:flex; flex-direction:column; gap:9px; padding:15px 16px; border-radius:10px; border:1px solid var(--border); border-left:4px solid #e0e0e0; background:#fff; }
.skel { background:linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:4px; }
@keyframes shimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }
.news-portal-links { margin-top:20px; padding:14px 18px; background:#fff; border:1px solid var(--border); border-radius:10px; font-size:.8rem; }
.news-portal-links strong { display:block; margin-bottom:8px; color:var(--deep-blue); font-size:.82rem; }
.news-portal-links a { color:var(--saffron); margin-right:14px; text-decoration:none; display:inline-block; margin-bottom:4px; }
.news-portal-links a:hover { text-decoration:underline; }

/* ── Photo Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #fff3e0);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  color: #fff;
  display: flex; align-items: flex-end;
  padding: 14px 12px;
  font-size: .82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s;
  letter-spacing: .3px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item.span2 { grid-column: span 2; }
@media (max-width: 600px) { .gallery-item.span2 { grid-column: span 1; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow); padding: 16px; z-index: 999; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { width: 100%; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown { display: none !important; }
  .hamburger { display: flex; }
  .header-inner { position: relative; }
  .hero h2 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .info-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 50px 0; }
  .section-head h2 { font-size: 1.6rem; }
  .hero { padding: 60px 0 50px; }
}
