/* ============================================================
   JHEF EDUCATIONAL DEVELOPMENT COUNCIL - Main Stylesheet
   Mobile-First, Professional, Polished
   ============================================================ */

:root {
  --brand-red: #d93d2b;
  --brand-orange: #f47920;
  --brand-blue: #0972b4;
  --dark-bg: #1a1a1a;
  --nav-bg: #1c1c1c;
  --accent: #ff5722;
  --accent-hover: #e64a19;
  --text-dark: #102a43;
  --text-muted: #6b7280;
  --border-light: #e8eef5;
  --card-shadow: 0 4px 20px rgba(15,39,64,.08);
  --card-shadow-hover: 0 12px 32px rgba(15,39,64,.14);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; width: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  background: #fff;
  font-size: clamp(14px, 0.2vw + 13px, 16px);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { transition: color .2s, opacity .2s; }

h1, .h1 { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.7rem); }
h2, .h2 { font-size: clamp(1.35rem, 1rem + 1.2vw, 2.1rem); }
h3, .h3 { font-size: clamp(1.15rem, .95rem + .8vw, 1.6rem); }
p, li { overflow-wrap: anywhere; }

.container,
.container-fluid {
  max-width: 100%;
  padding-left: clamp(12px, 1.6vw, 24px);
  padding-right: clamp(12px, 1.6vw, 24px);
}

video,
iframe,
canvas,
svg {
  max-width: 100%;
}

.row {
  --bs-gutter-x: clamp(1rem, 1vw + .4rem, 1.5rem);
}

.table-responsive {
  border-radius: 10px;
}

.page-content-card,
.content-section,
.record-card,
.desk-card,
.headline-box,
.performer-card,
.jhef-card,
.home-stat-card,
.program-card,
.project-card {
  min-width: 0;
}

/* ---- Utility ---- */
.section-gap { padding: 60px 0; }
.section-gap-sm { padding: 40px 0; }
.text-accent { color: var(--accent) !important; }
.bg-accent { background: var(--accent) !important; }
.rounded-xl { border-radius: var(--radius) !important; }

/* ---- Section Heading ---- */
.sec-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.sec-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}
.sec-heading.center::after { margin: 8px auto 0; }

/* ---- Sticky Site Header ---- */
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1040;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

/* ---- Top Header Bar ---- */
.top-header-bar {
  background: #111;
  color: #ccc;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}
.top-header-bar a { color: #bbb; text-decoration: none; }
.top-header-bar a:hover { color: #fff; }
.top-header-bar .badge { font-size: 0.75rem; padding: 3px 7px; cursor: pointer; }

.top-header-inner { min-height: 42px; }
.top-mini-link { font-size: .8rem; font-weight: 600; }
.top-header-actions { margin-left: auto; }

.top-header-contact,
.top-header-actions {
  min-width: 0;
}

.language-control-wrap {
  position: relative;
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  border-radius: 6px;
  padding: 0;
}

.language-toggle-btn {
  border: 0;
  background: transparent;
  color: #ececec;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
}
.language-label {
  color: #d4d4d4;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.selected-language-label {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-chevron {
  font-size: .72rem;
  color: #c8c8c8;
  transition: transform .2s ease;
}
.language-toggle-btn[aria-expanded='true'] .language-chevron { transform: rotate(180deg); }

.language-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(92vw, 560px);
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(16,42,67,.16);
  z-index: 1200;
  display: none;
}
.language-panel.is-open { display: block; }

.language-panel-head {
  padding: 12px;
  border-bottom: 1px solid #edf1f7;
}
.language-search-input {
  width: 100%;
  border: 1px solid #d2dbe8;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: .85rem;
}
.language-search-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(9,114,180,.12);
}

.language-list-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 248px;
  overflow-y: auto;
}
.language-item {
  border: 1px solid #dbe4ef;
  background: #f8fbff;
  color: #18324d;
  border-radius: 7px;
  text-align: left;
  padding: 7px 9px;
  font-size: .77rem;
  font-weight: 600;
  transition: .2s ease;
}
.language-item:hover {
  border-color: #b3c6de;
  background: #eef5fd;
}
.language-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .8rem;
  color: #6b7280;
  padding: 12px 0;
}

.google-translate-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

#google_translate_element .goog-te-gadget,
#google_translate_element .goog-logo-link,
#google_translate_element .goog-te-gadget span,
#google_translate_element .goog-te-gadget-icon {
  display: none !important;
}
.goog-te-banner-frame.skiptranslate { display: none !important; }
body > .skiptranslate { display: none !important; }
.goog-te-balloon-frame { display: none !important; }
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-SmfZ,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}
html.translated-ltr body,
html.translated-rtl body,
body.skiptranslate {
  top: 0 !important;
}
body { top: 0 !important; }

.top-action-btn {
  border: 0;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
  padding: 7px 11px;
  white-space: nowrap;
}
.btn-verify {
  background: linear-gradient(90deg, #0f9d58, #15803d);
  color: #fff;
  font-size: .71rem;
  padding: 6px 9px;
}
.btn-verify:hover { color: #fff; opacity: .95; }
.btn-login-top {
  background: linear-gradient(90deg, #f47920, #ff5722);
  color: #fff;
}
.btn-login-top:hover { color: #fff; opacity: .95; }

/* ---- Middle Header / Logo Area ---- */
.middle-header {
  background: #fff;
  padding: 0;
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
}
.header-logo-section {
  width: 100%;
  line-height: 0; /* remove inline-block gap */
  display: block;
}
.header-logo-section a {
  display: block;
  width: 100%;
}
.header-logo-section img {
  width: 100%;
  height: auto;
  min-height: 96px;
  max-height: clamp(130px, 16vw, 210px);
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 992px) {
  .header-logo-section img {
    height: auto;
    min-height: 0;
    max-height: clamp(160px, 14vw, 240px);
    object-fit: cover;
    object-position: center center;
  }
}

@media (min-width: 1400px) {
  .middle-header {
    border-bottom-width: 2px;
  }
  .header-logo-section img {
    height: auto;
    min-height: 0;
    max-height: 260px;
    object-fit: cover;
    object-position: center center;
  }
}

/* ---- Sticky Navbar ---- */
.main-navbar {
  background: var(--nav-bg);
  padding: 0;
}
.main-navbar .navbar-toggler {
  background: var(--accent);
  border: none;
  padding: 8px 12px;
  margin: 8px 12px;
  border-radius: 6px;
}
.main-navbar .nav-item { border-right: 1px solid #2e2e2e; }
.main-navbar .nav-item:last-child { border-right: none; }
.main-navbar .nav-link {
  color: #bbb !important;
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 14px 16px !important;
  transition: all .25s;
  white-space: nowrap;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-item:hover > .nav-link,
.main-navbar .nav-link.active-nav {
  background: #111;
  color: var(--brand-orange) !important;
}

@media (min-width: 1400px) {
  .main-navbar .navbar-collapse {
    flex-wrap: nowrap;
  }
  .main-navbar .nav-items-row {
    width: auto;
    min-width: 0;
    flex-wrap: nowrap;
  }
  .main-navbar .nav-cta-wrap {
    margin-left: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ---- Mega Menu ---- */
.mega-menu {
  width: 100%;
  left: 0; right: 0;
  background: #222;
  border: none;
  border-radius: 0;
  border-top: 3px solid var(--brand-orange);
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  text-decoration: none;
  color: #fff;
  transition: .25s;
  gap: 12px;
}
.mega-item:hover { color: var(--brand-orange); transform: translateX(4px); }
.mega-icon { font-size: 20px; color: #ccc; width: 26px; flex-shrink: 0; margin-top: 2px; }
.mega-text-main { font-size: 12.5px; font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.mega-text-sub { font-size: 11px; color: #888; }
.mega-bottom-bar {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 14px;
  margin-top: 8px;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

/* ---- Mobile Offcanvas Nav ---- */
@media (max-width: 1399.98px) {
  .main-navbar .offcanvas { width: min(88vw, 420px) !important; max-width: 420px; background: #1a1a1a; }
  .main-navbar .nav-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-navbar .nav-link { padding: 13px 18px !important; color: #ddd !important; font-size: 13px; }
  .main-navbar .nav-cta-wrap {
    padding: 12px 18px;
    margin-left: 0 !important;
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-navbar .nav-cta-wrap .btn {
    width: 100%;
    justify-content: center;
  }
  .dropdown-menu.mega-menu {
    position: static !important;
    width: 100% !important;
    padding: 10px 15px !important;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: none;
  }
  .mega-text-main { color: #fff !important; }
  .mega-text-sub { color: #aaa !important; }
  .mega-item { margin-bottom: 12px; }

  .main-navbar .nav-cta-wrap {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .main-navbar .nav-cta-wrap .btn {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .top-header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .top-header-contact {
    width: 100%;
    order: 1;
  }
  .top-header-actions {
    width: 100%;
    order: 2;
    justify-content: flex-end !important;
  }
  .language-control-wrap {
    flex-shrink: 0;
  }
}

@media (max-width: 991.98px) {
  .top-header-inner { align-items: stretch !important; }
  .top-header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .top-action-btn { flex: 1; text-align: center; }

  .language-control-wrap { width: 100%; }
  .language-toggle-btn {
    width: 100%;
    justify-content: space-between;
  }
  .language-panel {
    right: auto;
    left: 0;
    width: min(96vw, 560px);
  }

  .page-header-banner {
    padding: 36px 0;
  }

  .record-card,
  .desk-card,
  .headline-box,
  .performer-card,
  .content-section {
    padding: 16px;
  }
}

/* ---- Hero Carousel ---- */
.hero-carousel-item {
  height: 75vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6,13,23,.72) 0%, rgba(6,13,23,.2) 70%);
}
.carousel-caption { bottom: 18%; left: 6%; right: 6%; text-align: left; }
.carousel-caption h2 { font-size: clamp(1.4rem, 4vw, 2.8rem); font-weight: 800; color: #ffc107; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.carousel-caption p { font-size: clamp(.85rem, 2vw, 1.1rem); color: rgba(255,255,255,.9); }
.carousel-control-prev, .carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 12px;
  backdrop-filter: blur(4px);
}

/* ---- Marquee ---- */
.modern-marquee-container {
  background: #000;
  color: #ffc107;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.modern-marquee-track { width: 100%; overflow: hidden; height: 26px; }
.modern-marquee-text {
  position: relative;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  will-change: transform;
}

.modern-marquee-rail {
  display: inline-flex;
  gap: 80px;
  align-items: center;
  min-width: max-content;
  animation: marqueeMove 24s linear infinite;
}

@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.alert-badge-container {
  margin-right: 14px;
}

.alert-text-badge {
  min-width: 90px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}

.main-navbar .dropdown-menu {
  z-index: 2000;
}

.main-navbar .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,.82) !important;
  background: transparent;
}

.main-navbar .dropdown-menu .dropdown-item:hover,
.main-navbar .dropdown-menu .dropdown-item:focus {
  color: #fff !important;
  background: rgba(255,115,35,.18) !important;
}

/* ---- Alert Strip ---- */
.alert-section {
  background: #f0f8ff;
  padding: 10px 0;
  border-bottom: 1px solid #dde8f0;
}
.alert-pulse { position: absolute; width: 56px; height: 56px; background: rgba(255,100,50,.35); border-radius: 50%; animation: pulsate 1.5s infinite ease-out; }
.alert-pulse-inner { position: absolute; width: 40px; height: 40px; background: rgba(255,100,50,.55); border-radius: 50%; animation: pulsate 1.5s .3s infinite ease-out; }
@keyframes pulsate { 0%{transform:scale(.5);opacity:1} 100%{transform:scale(1.5);opacity:0} }
.alert-slider-text { font-size: .9rem; font-weight: 700; color: #1f2937; animation: alertFade .4s ease; }
@keyframes alertFade { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }

/* ---- Stat Cards ---- */
.home-stat-card {
  background: linear-gradient(160deg, #fff 0%, #f7fbff 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 14px;
  box-shadow: var(--card-shadow);
  transition: .25s;
  text-align: center;
}
.home-stat-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.home-stat-card .stat-num { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--accent); }
.home-stat-card .stat-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 600; }

/* ---- Cards (generic) ---- */
.jhef-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: .25s;
  overflow: hidden;
}
.jhef-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.jhef-card .card-img-top { height: 160px; object-fit: cover; }

/* ---- About Section ---- */
.about-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 58px; height: 58px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: .3s;
}
.about-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); background: var(--accent-hover); }
.about-check-list li {
  position: relative; padding-left: 24px;
  margin-bottom: 10px; color: #555; font-weight: 500;
}
.about-check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--accent);
}

/* ---- Section Blocks ---- */
.record-card, .desk-card, .headline-box, .performer-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--card-shadow); padding: 22px; }
.section-title { font-weight: 800; font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 16px; color: var(--text-dark); }
.headline-item { font-size: .88rem; border-bottom: 1px dashed #e8edf4; padding: 10px 0; }
.headline-item:last-child { border-bottom: none; }

/* ---- Strip Icons ---- */
.strip-icon-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); text-align: center;
  padding: 18px 10px; transition: .25s; height: 100%;
}
.strip-icon-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.strip-icon-card i { font-size: 1.6rem; color: var(--accent); margin-bottom: 8px; display: block; }

/* ---- Members Scroll ---- */
.members-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.members-scroll::-webkit-scrollbar { height: 4px; }
.members-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.member-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 10px; text-align: center; min-width: 150px; scroll-snap-align: start; }
.member-avatar { width: 100%; height: 100px; border-radius: 8px; object-fit: cover; }

/* ---- Partners Dark ---- */
.partners-dark {
  background: linear-gradient(110deg, #0d1b2a 0%, #102a43 55%, #1d3d63 100%);
  color: #fff; border-radius: var(--radius); padding: 28px 20px;
}
.counter-tile { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; text-align: center; padding: 14px; }

/* ---- Program / Project Cards ---- */
.program-card, .project-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border-light); box-shadow: var(--card-shadow);
  overflow: hidden; transition: .25s;
}
.program-card:hover, .project-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.program-card img, .project-card img { width: 100%; height: 150px; object-fit: cover; }

/* ---- Orange CTA ---- */
.orange-cta {
  background: linear-gradient(140deg, #f97316 0%, #ea580c 100%);
  color: #fff; border-radius: var(--radius); padding: 18px 20px;
}

/* ---- Page Header Banner ---- */
.page-header-banner {
  background: linear-gradient(100deg, #101820 0%, #172f48 60%, #1f4f78 100%);
  padding: 50px 0;
  border-bottom: 3px solid var(--brand-orange);
}
.page-header-banner h1 { font-size: clamp(1.4rem, 4vw, 2.2rem); }

/* ---- Content Page ---- */
.page-content-card { border: 1px solid var(--border-light); border-radius: 16px; box-shadow: 0 10px 30px rgba(17,24,39,.07); }
.content-section { background: #fff; border: 1px solid #edf2f7; border-radius: var(--radius); padding: 20px; }
.section-heading { font-size: 1.1rem; font-weight: 800; color: #0f2740; margin-bottom: 10px; }
.section-text { color: #334155; line-height: 1.75; }
.section-list { margin: 0; padding-left: 18px; color: #334155; line-height: 1.8; }

/* ---- Footer ---- */
.brand-ticker-section { background: #fbfbfb; padding: 30px 0 50px; text-align: center; }
.brand-ticker-title { font-size: 1.5rem; font-weight: 800; color: #222; text-transform: uppercase; position: relative; display: inline-block; margin-bottom: 30px; }
.brand-ticker-title::after { content: ''; position: absolute; width: 50px; height: 3px; background: var(--accent); bottom: -14px; left: 50%; transform: translateX(-50%); }
.brand-scroller { overflow: hidden; white-space: nowrap; width: 100%; margin-bottom: 18px; }
.brand-track { display: inline-flex; animation: marquee-brands 30s linear infinite; gap: 16px; padding-left: 16px; }
.brand-track.reverse { animation-direction: reverse; animation-duration: 35s; }
.brand-track:hover { animation-play-state: paused; }
.brand-box { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #eaeaea; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,.02); width: 170px; height: 85px; padding: 14px; flex-shrink: 0; transition: .3s; }
.brand-box img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: .7; transition: .3s; }
.brand-box:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,.07); }
.brand-box:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes marquee-brands { 0%{transform:translateX(0)} 100%{transform:translateX(calc(-50% - 8px))} }

.elite-footer { background: #1f1f1f; color: #b5b5b5; position: relative; }
.footer-top { padding: 50px 0 30px; border-top: 1px solid #111; }
.quick-contact-panel { background: linear-gradient(145deg, #2b2b2b, #1a1a1a); padding: 28px 22px; margin-top: -100px; box-shadow: 0 10px 30px rgba(0,0,0,.3); border-radius: 8px; border-top: 4px solid var(--accent); position: relative; z-index: 10; }
.qc-title { color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 22px; text-transform: uppercase; position: relative; display: inline-block; }
.qc-title::after { content: ''; position: absolute; width: 44px; height: 3px; background: var(--accent); bottom: -8px; left: 0; }
.qc-input { background: #222 !important; border: 1px solid #444 !important; color: #fff !important; border-radius: 5px !important; padding: 10px 13px !important; width: 100%; font-size: .85rem; transition: .3s; }
.qc-input:focus { background: #111 !important; border-color: var(--accent) !important; box-shadow: 0 0 8px rgba(255,87,34,.2) !important; outline: none; }
.qc-btn { background: linear-gradient(90deg, var(--accent), var(--accent-hover)); border: none; color: #fff; font-weight: 700; width: 100%; padding: 12px; border-radius: 5px; text-transform: uppercase; letter-spacing: 1px; transition: .3s; cursor: pointer; }
.qc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,87,34,.4); }
.visitors-counter { background: #111; border-radius: 5px; padding: 18px; text-align: center; border: 1px solid #222; }
.digit { background: linear-gradient(to bottom, #333, #1a1a1a); border: 1px solid #444; color: #fff; font-size: 1.7rem; font-weight: 700; padding: 5px 10px; border-radius: 4px; margin: 0 2px; box-shadow: inset 0 2px 4px rgba(0,0,0,.8), 0 2px 0 #000; font-family: 'Courier New', monospace; display: inline-block; min-width: 30px; }
.footer-heading { color: #fff; font-weight: 800; text-transform: uppercase; font-size: 1rem; margin-bottom: 28px; }
.footer-heading span { border-bottom: 2px solid var(--accent); padding-bottom: 7px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: .9rem; }
.footer-links li a { color: #999; text-decoration: none; transition: .3s; display: flex; align-items: center; }
.footer-links li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); margin-right: 9px; font-size: .85rem; opacity: .7; transition: .3s; }
.footer-links li a:hover { color: #fff; transform: translateX(4px); }
.footer-links li a:hover::before { opacity: 1; }
.footer-mid { background: rgba(0,0,0,.7); padding: 38px 0; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
.footer-mid h6 { color: #fff; font-weight: 800; font-size: .9rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.contact-info p { font-size: .88rem; line-height: 1.7; margin-bottom: 14px; color: #ccc; }
.contact-info i { color: var(--accent); width: 22px; font-size: 1rem; }
.app-btn { display: inline-flex; align-items: center; justify-content: center; background: #000; color: #fff; text-decoration: none; padding: 9px 13px; border-radius: 4px; border: 1px solid #333; margin-bottom: 8px; transition: .2s; flex: 1; }
.app-btn:hover { border-color: #555; background: #111; transform: translateY(-2px); }
.news-input-group { display: flex; width: 100%; margin-bottom: 18px; }
.news-input { flex-grow: 1; padding: 11px 14px; border: none; border-radius: 3px 0 0 3px; font-size: .88rem; outline: none; }
.news-btn { background: var(--accent); border: none; padding: 0 18px; border-radius: 0 3px 3px 0; color: #fff; font-weight: 700; cursor: pointer; transition: .3s; }
.news-btn:hover { background: var(--accent-hover); }
.social-circle { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: #111; color: #fff; text-decoration: none; border-radius: 50%; margin-right: 6px; margin-bottom: 6px; transition: .3s; font-size: .95rem; border: 1px solid #333; }
.social-circle:hover { transform: translateY(-3px); }
.social-circle.fb:hover { background: #3b5998; border-color: #3b5998; }
.social-circle.tw:hover { background: #000; border-color: #fff; }
.social-circle.ig:hover { background: #E1306C; border-color: #E1306C; }
.social-circle.yt:hover { background: #FF0000; border-color: #FF0000; }
.social-circle.li:hover { background: #0077b5; border-color: #0077b5; }
.footer-bottom { background: #0a0e0b; padding: 22px 0; }
.sub-links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; align-items: center; }
.sub-links-list a { color: #4caf50; font-size: .88rem; font-weight: 600; text-decoration: none; transition: .2s; }
.sub-links-list a:hover { color: #fff; }
.footer-copyright { background: #000; padding: 18px 0; font-size: .82rem; color: #777; }
.captcha-box { background: #ddd; font-family: monospace; font-size: 1.5rem; font-weight: 700; color: #000; letter-spacing: 5px; padding: 7px 10px; text-align: center; border-radius: 3px; user-select: none; }

/* ---- Responsive Breakpoints ---- */
@media (max-width: 991.98px) {
  .quick-contact-panel { margin-top: -40px; }
  .hero-carousel-item { height: auto; min-height: 360px; }
  .section-gap { padding: 44px 0; }
}

@media (max-width: 768px) {
  .header-logo-section img {
    min-height: 88px;
    max-height: 165px;
    object-fit: contain;
  }

  .top-header-contact {
    gap: 8px !important;
  }
  .top-mini-link {
    font-size: .74rem;
  }
}
@media (max-width: 767.98px) {
  .hero-carousel-item { min-height: 260px; }
  .carousel-caption { bottom: 8%; }
  .carousel-caption p { display: none; }
  .alert-section { flex-direction: column; text-align: center; padding: 12px 10px; }
  .orange-cta { flex-direction: column !important; text-align: center; gap: 14px; }
  .orange-cta .btn { width: 100%; }
  .section-gap { padding: 32px 0; }
  .footer-top { padding: 30px 0 20px; }
  .quick-contact-panel { margin-top: 0; }
  .header-logo-section img {
    min-height: 82px;
    max-height: 148px;
  }

  .top-header-actions {
    gap: 8px !important;
  }
  .top-action-btn {
    font-size: .68rem;
    padding: 7px 8px;
  }
  .selected-language-label {
    max-width: 96px;
  }

  .language-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 235px; }
}
@media (max-width: 575.98px) {
  .hero-carousel-item { min-height: 200px; }
  .carousel-caption h2 { font-size: 1.2rem !important; }
  .brand-box { width: 140px; height: 70px; }
  .header-logo-section img {
    min-height: 74px;
    max-height: 122px;
  }
  .main-navbar .navbar-toggler { margin: 6px 10px; }
  .language-control-wrap {
    width: 100%;
  }
  .top-header-contact {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .top-header-actions {
    flex-direction: column;
    align-items: stretch !important;
  }
  .top-action-btn,
  .language-toggle-btn {
    width: 100%;
    justify-content: center;
  }
  .selected-language-label {
    max-width: none;
  }

  .language-list-grid { grid-template-columns: 1fr; max-height: 220px; }
}

/* ---- Animations ---- */
@keyframes digitPulse { 0%{transform:scale(1)} 50%{transform:scale(1.06);border-color:var(--accent)} 100%{transform:scale(1)} }
.digit.pulse-update { animation: digitPulse .5s ease-out; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ---- Print ---- */
@media print { .main-navbar, .top-header-bar, .elite-footer, .brand-ticker-section { display: none !important; } }
