/* ============================================
   Government ITI Tapan - Main Stylesheet
   Design: Modern Institutional / Deep Navy + Saffron
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-light: #142240;
  --blue: #1a3a6e;
  --accent: #e85d04;
  --gold: #f5a623;
  --white: #ffffff;
  --light: #f4f6fb;
  --gray: #6b7280;
  --dark-gray: #374151;
  --border: #e5e7eb;
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', sans-serif;
  background: var(--white);
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

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

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

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-left span i, .topbar-right a i { margin-right: 5px; color: var(--gold); }
.topbar-right a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
}
.topbar-right a:hover { color: var(--gold); }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,22,40,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(10,22,40,0.18); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
}
.logo-sub {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .2px;
}

/* ---- NAV ---- */
.main-nav {}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
  border-radius: 7px;
  transition: var(--transition);
}
.nav-link i { font-size: 10px; transition: var(--transition); }
.nav-link:hover, .nav-link.active {
  background: var(--light);
  color: var(--accent);
}
.has-dropdown:hover > .nav-link i { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light); color: var(--accent); padding-left: 24px; }

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

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4a8a 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::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.03'%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");
}
.hero-overlay {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 20px;
}
.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.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: var(--transition);
  border: 2px solid var(--accent);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: #c94e02; border-color: #c94e02; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light); }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ---- SECTION COMMON ---- */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: rgba(232,93,4,0.1);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
}
.section-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- MARQUEE NOTICE ---- */
.notice-marquee {
  background: var(--accent);
  padding: 11px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.marquee-label {
  background: var(--navy);
  color: var(--white);
  padding: 4px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 20px;
}
.marquee-text {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  gap: 60px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.marquee-text a { color: var(--white); }
.marquee-text a:hover { text-decoration: underline; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- NOTICE BOARD ---- */
.notices-section { background: var(--light); }
.notice-board {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.notice-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.notice-tab {
  padding: 14px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.notice-tab.active, .notice-tab:hover { color: var(--accent); border-bottom-color: var(--accent); }
.notice-list { padding: 0; }
.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--light); }
.notice-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--white);
}
.notice-body { flex: 1; }
.notice-title-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  transition: var(--transition);
}
.notice-title-link:hover { color: var(--accent); }
.notice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.notice-date { font-size: 12px; color: var(--gray); }
.notice-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  color: var(--white);
  text-transform: capitalize;
}
.badge-important {
  background: #ef4444;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.7} }
.notice-attachment { color: var(--gray); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.notice-attachment i { color: var(--accent); }
.view-all-link {
  display: block;
  text-align: center;
  padding: 16px;
  color: var(--accent);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.view-all-link:hover { background: var(--light); }

/* ---- TRADES ---- */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.trade-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trade-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.trade-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trade-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(232,93,4,0.08));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--navy);
}
.trade-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.trade-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--gray);
}
.trade-meta span { display: flex; align-items: center; gap: 4px; }
.trade-meta i { color: var(--accent); }

/* ---- WHY CHOOSE ---- */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-section .section-tag { background: rgba(245,166,35,0.15); color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(245,166,35,0.4); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ---- PARTNERS ---- */
.partners-section {}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.partner-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.partner-item:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.contact-info-list { margin-top: 24px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-info-item p { font-size: 14px; color: var(--gray); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  color: var(--dark-gray);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.alert {
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo i { font-size: 22px; color: var(--gold); }
.footer-about { font-size: 14px; line-height: 1.8; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a i { color: var(--accent); font-size: 11px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}
.contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.btn-footer {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-footer:hover { background: #c94e02; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: 36px; color: var(--white); margin-bottom: 10px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- NOTICES PAGE ---- */
.notice-full-list { display: flex; flex-direction: column; gap: 16px; }
.notice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.notice-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.notice-card-date {
  text-align: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 70px;
  flex-shrink: 0;
}
.notice-card-date .day { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; }
.notice-card-date .month { font-size: 12px; color: var(--gray); text-transform: uppercase; font-weight: 600; }
.notice-card-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
  transition: var(--transition);
}
.notice-card-body h3:hover { color: var(--accent); }
.notice-card-body p { font-size: 14px; color: var(--gray); }
.notice-card-actions { margin-top: 12px; display: flex; gap: 10px; align-items: center; }
.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  background: var(--light);
  color: var(--navy);
  transition: var(--transition);
}
.btn-small:hover { background: var(--navy); color: var(--white); }
.btn-small.accent { background: var(--accent); color: var(--white); }
.btn-small.accent:hover { background: #c94e02; }

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.filter-tab.active, .filter-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- TRADES PAGE ---- */
.trades-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.trade-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trade-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trade-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trade-card-header .icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.trade-card-header h3 { color: var(--white); font-size: 19px; font-weight: 700; }
.trade-card-body { padding: 20px 24px; }
.trade-detail-meta { display: flex; gap: 20px; margin-bottom: 12px; }
.trade-detail-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.trade-detail-meta i { color: var(--accent); }
.trade-desc { font-size: 14px; color: var(--dark-gray); line-height: 1.7; }

/* ---- MAP ---- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 380px; border: none; display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #c94e02);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 36px; color: var(--white); margin-bottom: 12px; }
.cta-section p { font-size: 17px; opacity: .85; margin-bottom: 28px; }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-white:hover { background: var(--navy); color: var(--white); }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 14px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 77px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
    padding: 20px;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 20px; }
}

@media (max-width: 480px) {
  section { padding: 50px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trades-grid { grid-template-columns: 1fr; }
}

/* ---- PRINT STYLES ---- */
@media print {
  .topbar, .site-header, .notice-marquee, .site-footer, .back-to-top,
  .btn-primary, .btn-outline, .btn-small, .cta-section, .partners-section,
  .hero-btns, .notice-card-actions { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .page-hero { background: #f5f5f5 !important; color: #000; padding: 20px 0; }
  .page-hero h1 { color: #000 !important; font-size: 20pt; }
  .container { max-width: 100%; padding: 0 10px; }
  a { color: #000; text-decoration: none; }
  .notice-card { border: 1px solid #ccc; break-inside: avoid; }
  img { max-width: 100%; }
}

/* ---- UTILITY CLASSES ---- */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-accent { color: var(--accent); }
.text-gray   { color: var(--gray); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ---- NOTICE SEARCH ---- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.search-bar input {
  flex: 1;
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Hind', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.search-bar input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,110,.1);
}
.search-bar button {
  padding: 11px 20px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.search-bar button:hover { background: var(--blue); }

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .trades-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .notice-card { flex-direction: column; }
  .notice-card-date { flex-direction: row; gap: 8px; align-items: center; min-width: auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 50px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 50px 20px; }
  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 26px; }
  .stat-num { font-size: 30px; }
  .section-title { font-size: 24px; }
  .cta-section h2 { font-size: 26px; }
  .footer-bottom p { font-size: 12px; }
}
