@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Noto+Sans+Devanagari:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --primary:       #C79A57;
  --secondary:     #5A3825;
  --accent:        #C45A3A;
  --support:       #4d5035;
  --bg-light:      #D6C2A8;
  --bg-alt:        #C7A882;
  --text-primary:  #4A2F21;
  --text-secondary:#A66A4A;
  --white:         #FFFFFF;
  --black:         #000000;

  --primary-lt:    #E8D5B0;
  --primary-pl:    #F5EDD8;
  --accent-lt:     #E8957A;
  --accent-pl:     #FAE8E3;
  --support-lt:    #909663;
  --support-pl:    #E3EEEE;
  --bg-card:       #EDE0CC;
  --border:        rgba(199,154,87,0.28);
  --border-md:     rgba(90,56,37,0.2);

  --fp: 'Roboto', Arial, sans-serif;
  --fh: 'Noto Sans Devanagari', Arial, sans-serif;
  --nav-h: 64px;
  --bs-secondary-rgb: #4d5035;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fp);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-align: justify !important;
  hyphens: auto;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fp);
  color: var(--secondary);
  line-height: 1.25;
}
p { color: var(--text-secondary); line-height: 1.7; font-size: 16px; }
.hindi { font-family: var(--fh); }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 6px;
}
.section-tag.light { color: var(--primary); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900; color: var(--secondary);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.section-title em,
.section-title span.hl { color: var(--primary); font-style: normal; }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--primary); }

.section-sub {
  font-size: 16px; line-height: 1.75;
  color: var(--text-secondary); max-width: 560px;
}
.section-sub.white { color: rgba(255,255,255,0.62); }
.tc .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--secondary);
  border: none; border-radius: 8px;
  font-family: var(--fp); font-size: 16px; font-weight: 700;
  padding: 13px 28px; letter-spacing: 0.02em; cursor: pointer;
  transition: background .2s, transform .15s; line-height: 1;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--accent); color: var(--white); transform: translateY(-1px);
  text-decoration: none;
}
.btn-secondary-custom {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--support);
  border: 2px solid var(--support); border-radius: 8px;
  font-family: var(--fp); font-size: 16px; font-weight: 600;
  padding: 11px 28px; cursor: pointer;
  transition: .2s; line-height: 1; white-space: nowrap;
}
.btn-secondary-custom:hover { background: var(--support); color: var(--white); text-decoration: none; }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35); border-radius: 8px;
  font-family: var(--fp); font-size: 16px; font-weight: 600;
  padding: 11px 28px; cursor: pointer;
  transition: .2s; line-height: 1; white-space: nowrap;
}
.btn-outline-white:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* ── NAVBAR ── */
.site-nav {
  background: var(--secondary);
  /* height: var(--nav-h);*/
  height: auto; 
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.site-nav .navbar-brand .logo-gem {
  width: 38px; height: 38px; 
  /* background: var(--primary); 
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);*/
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--secondary); flex-shrink: 0;
}
.logo-gem {
  width: 38px; height: 38px; 
  /* background: var(--primary); 
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);*/
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--secondary); flex-shrink: 0;
}
.logo-name {
  font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2;
}
.logo-sub {
  font-size: 11px; color: var(--primary-lt);
  letter-spacing: 0.1em;
}
.site-nav .logo-name {
  font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2;
}
.site-nav .logo-sub {
  font-size: 11px; color: var(--primary-lt);
  letter-spacing: 0.1em;
}
.site-nav .navbar-nav .nav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.55);
  padding: 6px 10px !important; border-radius: 6px; transition: .2s;
}
.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active {
  color: var(--primary) !important; background: rgba(199,154,87,0.15);
}
.site-nav .navbar-toggler {
  border-color: rgba(199,154,87,0.4); padding: 4px 8px;
}
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28199%2C154%2C87%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.lang-pill {
  /* display: flex;  */
  display: none; 
  border: 1.5px solid rgba(199,154,87,0.4); border-radius: 20px; overflow: hidden;
}
.lang-pill button {
  background: none; border: none; cursor: pointer;
  font-family: var(--fp); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.45); padding: 5px 11px; transition: .2s;
}
.lang-pill button.on { background: var(--primary); color: var(--secondary); }
.navbar-collapse { background: var(--secondary); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--secondary);
  padding: 4rem 0 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(199,154,87,0.06) 0, rgba(199,154,87,0.06) 1px,
    transparent 1px, transparent 48px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p   { color: rgba(255,255,255,0.55); font-size: 16px; }
.breadcrumb-custom {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb-custom a { color: var(--primary); }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); }

/* ── HERO (homepage) ── */
.hero-section {
  background: var(--bg-light);
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: 5rem 0;
  /* background-image: url(../images/bg_home.png); */
  /* background-size: cover; */
}
.hero-kicker {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; 
  color: var(--accent); 
  margin-bottom: 14px;
}
.kicker-line { width: 20px; height: 2px; background: var(--accent); flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--secondary);
  line-height: 1.1; margin-bottom: 6px; letter-spacing: -0.5px;
}
.hero-title em { color: var(--primary); font-style: normal; }
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary);
  display: block; margin-bottom: 14px; line-height: 0.7;
}
.hero-desc {
  font-size: 16px; line-height: 1.75;
  color: var(--text-secondary); margin-bottom: 28px;
}
.hero-stats {
  display: flex; gap: 1.5rem; margin-top: 24px;
  padding-top: 24px; border-top: 1.5px solid var(--border-md); flex-wrap: wrap;
}
.stat-num  { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label{ font-size: 12px; color: var(--text-secondary); letter-spacing: 0.04em; margin-top: 4px; }
.hero-photo {
  width: 100%; max-width: 320px; aspect-ratio: 3/4;
  background: var(--bg-card); border: 1.5px solid var(--border-md);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(90,56,37,0.12);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 16px; }
.photo-placeholder { color: var(--text-secondary); font-size: 14px; text-align: center; padding: 1rem; }
.photo-badge {
  position: absolute; bottom: 16px;
  background: var(--secondary); color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; padding: 7px 18px; border-radius: 20px;
}

/* ── TICKER ── */
.ticker-bar { background: var(--secondary); padding: 10px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: crawl 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes crawl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: 14px; font-weight: 500;
  color: var(--primary-lt); display: inline-flex; align-items: center; gap: 8px;
}
.ticker-dot { width: 4px; height: 4px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

/* ── SECTION BACKGROUNDS ── */
.bg-light    { background: var(--bg-light); }
.bg-alt      { background: var(--bg-alt); }
.bg-white    { background: var(--white); }
.bg-secondary{ background: var(--secondary); }
.bg-support  { background: var(--support); }
.bg-card     { background: var(--bg-card); }

/* ── CARDS ── */
.card-custom {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; transition: .25s; height: 100%; overflow: hidden;
}
.card-custom:hover {
  border-color: var(--primary); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(199,154,87,0.15);
}
.card-custom .card-body { padding: 24px; }
.card-top-bar::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 14px 14px 0 0;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.card-icon.primary-bg { background: var(--primary-pl); }
.card-icon.support-bg { background: var(--support-pl); }
.card-icon.accent-bg  { background: var(--accent-pl); }

/* Achievement card (dark bg) */
.achievement-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 24px; transition: .25s; height: 100%;
}
.achievement-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--primary); transform: translateY(-3px);
}
.achievement-bar {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--primary); margin-bottom: 14px;
}
.achievement-bar.support { background: var(--support-lt); }
.achievement-num {
  font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.achievement-num.support { color: var(--support-lt); }
.achievement-label { font-size: 16px; font-weight: 600; color: var(--white); }
.achievement-detail{ font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* News card */
.news-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: .25s; height: 100%;
  display: flex; flex-direction: column;
}
.news-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(199,154,87,0.14); transform: translateY(-3px);
}
.news-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-secondary);
}
.news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-tag-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  display: inline-block; margin-bottom: 6px;
}
.news-tag-badge.support { color: var(--support); }
.news-tag-badge.accent  { color: var(--accent); }
.news-body h5 {
  font-size: 18px; font-weight: 700; color: var(--secondary);
  line-height: 1.35; margin-bottom: 8px; flex: 1;
}
.news-body p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }
.news-meta    { font-size: 12px; color: var(--text-secondary); display: flex; gap: 12px; text-align: left !important; }
.news-more    { font-size: 14px; font-weight: 700; color: var(--accent); margin-top: 10px; display: inline-block; }
.news-more:hover { color: var(--secondary); }

/* Social card */
.social-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 20px 14px; text-align: center;
  transition: .25s; display: flex; flex-direction: column; align-items: center; gap: 8px;
  height: 100%;
}
.social-card:hover {
  border-color: var(--primary); background: var(--primary-pl);
  transform: translateY(-3px); box-shadow: 0 6px 18px rgba(199,154,87,0.12);
}
.social-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.social-handle { font-size: 14px; font-weight: 600; color: var(--secondary); }
.social-type   { font-size: 12px; color: var(--text-secondary); }

/* ── FORM STYLES ── */
.form-wrapper {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px;
  box-shadow: 0 4px 24px rgba(90,56,37,0.08);
}
.form-label-custom {
  font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 5px;
}
.form-label-custom span { color: var(--accent); }
.form-control-custom {
  font-family: var(--fp); font-size: 16px; line-height: 1.55;
  padding: 11px 14px; color: var(--text-primary);
  background: var(--white); border: 1.5px solid var(--border-md);
  border-radius: 8px; outline: none; transition: .2s; width: 100%;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199,154,87,0.15);
  outline: none;
}
.form-control-custom.textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; }
.consent-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.consent-check label { font-size: 14px; color: var(--text-primary); line-height: 1.55; cursor: pointer; }

/* ── INFO CALLOUT ── */
.callout-info {
  background: var(--support-pl); border-left: 4px solid var(--support);
  border-radius: 0 10px 10px 0; padding: 14px 18px;
  font-size: 16px; color: var(--text-primary); line-height: 1.6;
}
.callout-info strong { color: var(--support); }

/* ── EVENT LIST ── */
.event-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border-md); align-items: flex-start;
}
.event-item:last-child { border-bottom: none; }
.event-date {
  background: var(--primary); color: var(--secondary);
  border-radius: 10px; padding: 8px 10px; text-align: center;
  min-width: 54px; flex-shrink: 0;
}
.event-day { font-size: 22px; font-weight: 900; line-height: 1; }
.event-mon { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-top: 2px; }
.event-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 3px; line-height: 1.35; }
.event-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── NEWSLETTER ── */
.newsletter-band { background: var(--support); padding: 3rem 0; }
.newsletter-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.newsletter-sub   { font-size: 16px; color: rgba(255,255,255,0.68); }
.newsletter-input {
  font-family: var(--fp); font-size: 16px;
  padding: 13px 18px; border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px; min-width: 260px; outline: none;
  background: rgba(255,255,255,0.15); color: var(--white);
  transition: .2s; flex: 1;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.22); }

/* ── CTA BAND ── */
.cta-band { background: var(--secondary); padding: 5rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -0.3px; }
.cta-band h2 em { color: var(--primary); font-style: normal; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 2rem; line-height: 1.75; }

/* ── INFO CARD (constituency, services) ── */
.info-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px; transition: .25s; height: auto;
}
.info-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(199,154,87,0.12); }
.info-card h5 { font-size: 18px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding: 8px 0; border-bottom: 1px solid rgba(199,154,87,0.15);
  font-size: 15px; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.info-list li:last-child { border-bottom: none; }
.info-list li strong { color: var(--secondary); font-weight: 600; text-align: right; }

/* Service card */
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px; text-align: center;
  transition: .25s; height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary); background: var(--primary-pl);
  transform: translateY(-3px); box-shadow: 0 6px 20px rgba(199,154,87,0.12);
  text-decoration: none;
}
.service-icon {
  width: 56px; height: 56px; background: var(--primary-pl);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.service-card h6 { font-size: 16px; font-weight: 700; color: var(--secondary); margin: 0; }
.service-card p   { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute;
  left: 14px; top: 0; bottom: 0; width: 2px; background: var(--border-md);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot {
  position: absolute; left: -25px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-dot.active { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.timeline-year {
  font-size: 12px; font-weight: 700; color: var(--primary);
  letter-spacing: 0.1em; margin-bottom: 4px;
}
.timeline-content {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
}
.timeline-content h6 { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.timeline-content p  { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* ── FAQ ── */
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  font-size: 16px; font-weight: 600; color: var(--secondary);
  padding: 16px 20px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 12px;
  user-select: none; list-style: none;
}
.faq-question::after {
  content: '+'; font-size: 22px; color: var(--primary);
  flex-shrink: 0; transition: transform .2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 20px 16px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.faq-answer ul { padding-left: 1.2rem; margin: 8px 0 0; }
.faq-answer ul li { margin-bottom: 4px; }
.faq-item.open .faq-answer { display: block; }

/* ── GALLERY ── */
.gallery-item {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--bg-card); transition: .25s;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 13px; position: relative;
}
.gallery-item:hover { border-color: var(--primary); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { text-align: center; padding: 1rem; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox-overlay img { max-width: 90vw; max-height: 88vh; border-radius: 10px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--secondary); padding: 2.5rem 0; }
.stat-item { text-align: center; padding: 12px 0; }
.stat-item .stat-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.stat-item .stat-label { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── QUOTE ── */
.blockquote-custom {
  background: var(--primary-pl);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px; font-size: 16px; font-style: italic;
  color: var(--secondary); line-height: 1.7; margin: 1.5rem 0;
}

/* ── CONTACT INFO ── */
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon {
  width: 46px; height: 46px; background: var(--primary-pl);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.contact-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 2px; }
.contact-value { font-size: 16px; color: var(--text-primary); line-height: 1.5; }
.contact-value a { color: var(--primary); }
.contact-value a:hover { color: var(--accent); }

/* ── FOOTER ── */
.site-footer { background: var(--secondary); padding: 3.5rem 0 0; }
.footer-brand p { font-size: 14px; color: rgb(255 255 255 / 72%); margin: 14px 0 18px; line-height: 1.75; }
.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgb(255 255 255 / 72%); transition: .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0; margin-top: 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); margin: 0; }
.footer-bottom a { color: var(--primary); }
.footer-social-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(199,154,87,0.3); color: rgb(255 255 255 / 72%);
  transition: .2s; margin: 3px;
}
.footer-social-pill:hover { border-color: var(--primary); color: var(--primary); }

/* ── YOUTUBE VIDEO SECTION ── */
.yt-section-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.yt-tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--border-md);
  border-radius: 8px; padding: 8px 16px;
  font-family: var(--fp); font-size: 13px; font-weight: 700;
  color: var(--text-secondary); cursor: pointer; transition: .2s;
}
.yt-tab-btn.active, .yt-tab-btn:hover {
  border-color: var(--primary); background: var(--primary-pl); color: var(--secondary);
}
.yt-tab-btn .yt-logo { color: #FF0000; }

/* Video grid */
.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 992px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .yt-grid { grid-template-columns: 1fr; } }

/* Individual video card — thumbnail style (works everywhere incl. file://) */
.yt-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: .25s;
  display: flex; flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}
.yt-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(199,154,87,.15);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Thumbnail wrapper — 16:9 with play overlay */
.yt-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--secondary);
  overflow: hidden;
}
.yt-thumb-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.yt-card:hover .yt-thumb-wrap img { transform: scale(1.04); }

.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,0,0,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  pointer-events: none;
}
.yt-play-btn svg { margin-left: 4px; }
.yt-card:hover .yt-play-btn { background: #FF0000; transform: translate(-50%, -50%) scale(1.1); }

.yt-body {
  padding: 12px 14px 16px;
  flex: 1; display: flex; flex-direction: column;
}
.yt-title {
  font-size: 13.5px; font-weight: 600;
  line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-title a {
  color: var(--secondary); text-decoration: none;
}
.yt-title a:hover { color: var(--primary); text-decoration: underline; }

/* ── TOAST ── */
.toast-custom {
  display: none; position: fixed; bottom: 2rem; right: 2rem;
  background: var(--support); color: var(--white);
  padding: 14px 22px; border-radius: 10px;
  font-weight: 600; font-size: 15px; z-index: 9000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.toast-custom.show { display: block; animation: slideIn .3s ease; }
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  width: 100%; height: 300px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 15px;
}

/* ── BADGE ── */
.badge-primary { background: var(--primary); color: var(--secondary); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.06em; }
.badge-accent  { background: var(--accent);  color: var(--white);    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.badge-support { background: var(--support); color: var(--white);    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

/* ── UTILITY ── */
.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-primary-c { color: var(--text-primary) !important; }
.text-secondary-c{ color: var(--text-secondary) !important; }
.text-primary-color { color: var(--primary) !important; }
.text-accent    { color: var(--accent) !important; }
.text-support   { color: var(--support) !important; }
.text-white-70  { color: rgba(255,255,255,0.7) !important; }
.text-white-40  { color: rgba(255,255,255,0.4) !important; }
.fw-900 { font-weight: 900 !important; }
.divider { border-top: 1.5px solid var(--border); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-section { min-height: auto; padding: 3.5rem 0; }
  .hero-photo { max-width: 260px; aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
  .section-pad    { padding: 3.5rem 0; }
  .hero-title     { font-size: 2rem; }
  .hero-stats     { gap: 1.5rem; }
  .stat-num       { font-size: 1.6rem; }
  .form-wrapper   { padding: 24px 18px; }
  .newsletter-input { min-width: 100%; }
  .footer-brand, .footer-col { margin-bottom: 2rem; }
  .timeline       { padding-left: 24px; }
  .contact-item   { gap: 12px; }
}
@media (max-width: 576px) {
  .hero-photo     { max-width: 220px; }
  .hero-cta       { flex-direction: column; }
  .btn-primary-custom, .btn-secondary-custom, .btn-outline-white { width: 100%; }
  .cta-btns       { flex-direction: column; align-items: center; }
}
.text-nowrap {
  white-space: nowrap !important
}
.bg-secondary {
    background-color: var(--bs-secondary-rgb) !important;
}

.hero-subtitle-custom{
	font-size: 29px;
    color: var(--secondary);
    font-weight: 600;
}
.font-20{
	font-size: 20px;
}
.footer-banner-half{
    width:100%;
    height:350px;
    overflow:hidden;
    position:relative;
}

.footer-banner-half-vector{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto;
    background:url('images/footer.jpeg') center center/cover no-repeat;
    transform:scale(1.1);
}
