﻿/* =============================================================
   GATGA.WEB - MERGED SITE CSS
   Combines: style.css + additions.css + pages.css + supplemental.css
   ============================================================= */

/* =============================================================
   SECTION 1: MAIN STYLES (style.css)
   ============================================================= */

/* =============================================
   GATGA - Government Approved Tourist Guide Association
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red: #D30000;
  --red-dark: #b70808;
  --red-hover: #a00000;
  --green: #6E9701;
  --green-dark: #5a7d01;
  --gold: #c8a535;
  --white: #ffffff;
  --off-white: #f8f6f3;
  --light-gray: #f1eeee;
  --gray: #e0dada;
  --text-dark: #1a1a1a;
  --text-mid: #383838;
  --text-light: #666;
  --nav-h: 52px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --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: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* =============================================
   TOP BAR
   ============================================= */
.brand-text{display:none;}
.top-bar {
  background: var(--text-dark);
  color: #ccc;
  font-size: 12.5px;
  padding: 6px 0;
}
.top-bar .container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar i { margin-right: 5px; color: var(--gold); }

/* =============================================
   BRAND LOGO HEADER
   ============================================= */
.brand-header {
  background: #fff;
  border-bottom: 3px solid var(--red);
  padding: 12px 0;
}
.brand-header .container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo-wrap img { height: 70px; width: auto; }
.brand-text h1 {
  font-size: 1.3rem;
  color: var(--red);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.brand-text p {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2px;
}
.brand-tagline {
  text-align: right;
  font-size: 13px;
  color: var(--text-light);
}
.brand-tagline strong { color: var(--red); display: block; font-size: 15px; }

/* =============================================
   NAVIGATION
   ============================================= */
nav.main-nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(211,0,0,0.4);
}
nav.main-nav .container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.nav-inner {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: stretch;
  margin: 0;
  margin-left: 105px;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: var(--nav-h);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-list > li:first-child > a { border-left: 1px solid rgba(255,255,255,0.12); }
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--red-dark);
  color: #fff;
}
.nav-list > li > a i { font-size: 11px; opacity: 0.8; }

/* Dropdown */
.nav-list li { position: relative; }
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  z-index: 999;
}
.nav-list li:hover .dropdown-menu-custom { display: block; }
.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  transition: background .15s, padding-left .15s;
}
.dropdown-menu-custom li a:hover { background: var(--off-white); color: var(--red); padding-left: 24px; }
.dropdown-menu-custom li a i { width: 14px; text-align: center; opacity: 0.65; flex-shrink: 0; }

/* Gallery dropdown arrow */
.nav-arrow { font-size: 9px; opacity: 0.7; margin-left: 3px; vertical-align: middle; transition: transform .2s; }
.nav-list li:hover > a .nav-arrow { transform: rotate(180deg); }
/* Toggle button hidden on desktop, shown only inside mobile media query */
.nav-dropdown-toggle { display: none; }

/* Join Us CTA button in nav */
.nav-cta-item { margin-left: 4px; }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 6px 14px !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  transition: background .18s, box-shadow .18s;
  border: 2px solid var(--gold);
}
.nav-cta:hover, .nav-cta.active {
  background: #c8960a !important;
  color: #fff !important;
  border-color: #c8960a;
  box-shadow: 0 2px 8px rgba(200,150,10,.35);
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: #fff; transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(211,0,0,0.8);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.slider-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* =============================================
   SECTION BASICS
   ============================================= */
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--text-light); font-size: 16px; max-width: 620px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* =============================================
   WELCOME / ABOUT STRIP
   ============================================= */
.welcome-strip {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 360px;
}
.welcome-img { overflow: hidden; }
.welcome-img img { width: 100%; height: 100%; object-fit: cover; }
.welcome-content {
  padding: 50px 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-content h2 { font-size: 2.2rem; color: var(--red); margin-bottom: 16px; }
.welcome-content p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  width: fit-content;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,0,0,0.3); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--red);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; opacity: 0.85; letter-spacing: 0.5px; text-transform: uppercase; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 22px; }
.service-card-body h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

/* =============================================
   CHAIRMAN QUOTES SLIDER ⭐
   ============================================= */
.quotes-section {
  background: linear-gradient(135deg, #1a0000 0%, #3d0000 40%, #1a0000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quotes-section::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");
}
.quotes-section .section-head h2 { color: #fff; }
.quotes-section .section-head p { color: rgba(255,255,255,0.7); }
.quotes-section .section-divider { background: var(--gold); }

.quote-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.quote-track {
  overflow: hidden;
}
.quote-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quote-slide {
  min-width: 100%;
  padding: 0 10px;
}
.quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 48px 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}
.quote-mark {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 36px;
}
.quote-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.quote-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.quote-avatar-placeholder {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  flex-shrink: 0;
}
.quote-meta { text-align: left; }
.quote-name {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
.quote-designation {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.quote-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}
.quote-nav-btn:hover { background: var(--red); border-color: var(--red); }
.quote-prev { left: 0; }
.quote-next { right: 0; }

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.quote-dot.active { background: var(--gold); transform: scale(1.3); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: center;
}
.why-img { position: relative; overflow: hidden; height: 500px; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211,0,0,0.15), transparent);
}
.why-content { padding: 50px; background: #fff; }
.why-content h2 { font-size: 2.1rem; margin-bottom: 20px; }
.why-content h2 span { color: var(--red); }
.why-list { margin-top: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px;
  background: #fff0f0;
  color: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #ffd0d0;
}
.why-item h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* =============================================
   NEWS / BLOG PREVIEW
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card-img { height: 200px; overflow: hidden; position: relative; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.07); }
.news-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.news-card-body { padding: 22px; }
.news-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.news-date i { margin-right: 4px; color: var(--red); }
.news-card-body h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.news-card-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.news-link { font-size: 13px; color: var(--red); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.news-link:hover { gap: 8px; }

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(211,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 28px; }
.gallery-item.tall { grid-row: span 2; height: auto; min-height: 404px; }

/* =============================================
   CONTACT BAR
   ============================================= */
.contact-bar {
  background: var(--text-dark);
  padding: 50px 0;
}
.contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.contact-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.contact-bar-item:first-child { padding-left: 0; }
.contact-bar-item:last-child { border-right: none; }
.contact-bar-icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-bar-text h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
.contact-bar-text p, .contact-bar-text a { color: #ccc; font-size: 14px; }
.contact-bar-text a:hover { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 55px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover { background: var(--red); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; font-size: 13.5px; display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { color: var(--red); font-size: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   PAGE HERO BANNER
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.page-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 10px;
  position: relative;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 16px; position: relative; }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.85); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav i { font-size: 10px; }

/* =============================================
   MEMBERS PAGE
   ============================================= */
.members-filter {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.members-filter label { font-weight: 600; font-size: 14px; white-space: nowrap; }
.select-styled {
  padding: 10px 16px;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  min-width: 200px;
}
.select-styled:focus { border-color: var(--red); outline: none; }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.member-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
}
.member-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.member-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}
.member-card-img img { width: 100%; height: 100%; object-fit: cover; }
.member-photo-img { object-position: top; }
.member-lang-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  font-weight: 600;
}
.member-card-body { padding: 18px; }
.member-card-body h3 { font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 6px; }
.member-card-body .member-contact { font-size: 12.5px; color: var(--text-light); margin-bottom: 4px; }
.member-card-body .member-contact i { color: var(--red); margin-right: 4px; }
.member-card-body .member-email { font-size: 12px; color: var(--red); word-break: break-all; }

/* =============================================
   GOVERNING BODY TABLE
   ============================================= */
.gov-table-wrap { overflow-x: auto; }
.gov-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.gov-table thead th {
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.gov-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.gov-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.gov-table tbody tr { border-bottom: 1px solid var(--light-gray); transition: var(--transition); }
.gov-table tbody tr:hover { background: #fff5f5; }
.gov-table tbody td { padding: 14px 20px; color: var(--text-mid); }
.gov-table tbody td:first-child { font-weight: 700; color: var(--red); }
.gov-table tbody td a { color: var(--red); }

/* =============================================
   BLOG LISTING
   ============================================= */
.blog-list, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { height: 210px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta span { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.blog-meta i { color: var(--red); }
.blog-cat-tag {
  background: #fff0f0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.blog-read-more { color: var(--red); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.blog-read-more:hover { gap: 9px; }

/* Blog Detail */
.blog-detail-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: flex-start; }
.blog-article {}
.blog-article .blog-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 28px; }
.blog-article h1 { font-size: 2.2rem; margin-bottom: 18px; }
.blog-article .blog-meta-detail {
  display: flex; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 14px 0; margin-bottom: 28px;
}
.blog-article .blog-meta-detail span { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.blog-article .blog-meta-detail i { color: var(--red); }
.blog-article .blog-content p { margin-bottom: 18px; line-height: 1.85; color: var(--text-mid); font-size: 15.5px; }
.blog-article .blog-content h2 { font-size: 1.6rem; margin: 30px 0 14px; color: var(--text-dark); }
.blog-article .blog-content h3 { font-size: 1.3rem; margin: 24px 0 12px; color: var(--text-dark); }
.blog-article .blog-content ul { margin: 0 0 18px 24px; list-style: disc; }
.blog-article .blog-content ul li { margin-bottom: 8px; color: var(--text-mid); }
.blog-article .blog-content blockquote {
  background: #fff5f5;
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--red-dark);
  font-size: 16px;
}

.blog-sidebar {}
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  margin-bottom: 24px;
  border: 1px solid var(--light-gray);
}
.sidebar-widget h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--light-gray); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.recent-post-info h5 { font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 600; line-height: 1.4; margin-bottom: 4px; color: var(--text-dark); }
.recent-post-info span { font-size: 11.5px; color: var(--text-light); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--off-white); color: var(--text-mid); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; transition: var(--transition); cursor: pointer; border: 1px solid var(--light-gray); text-decoration: none; display: inline-block; }
.tag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* =============================================
   CONTACT FORM PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: flex-start; }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(211,0,0,0.08); }
.form-group textarea { height: 130px; resize: vertical; }
.contact-info-card {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-item h5 { color: rgba(255,255,255,0.7); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.contact-info-item p, .contact-info-item a { color: #fff; font-size: 14px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-page-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 240px;
  cursor: pointer;
}
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-item .gallery-overlay { border-radius: 0; }
.gallery-page-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 20px 16px 12px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-page-item:hover .gallery-caption { transform: translateY(0); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  border: none;
}

/* =============================================
   CHECK AVAILABILITY
   ============================================= */
.availability-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.avail-filter-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.avail-filter-card h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(211,0,0,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE — COMPREHENSIVE
   ============================================= */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .container { padding: 0 20px; }
}

/* Tablets */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-list, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-detail-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .availability-wrap { grid-template-columns: 1fr; }
  .welcome-strip { grid-template-columns: 1fr; }
  .contact-bar-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-bar-item { border-right: none; padding: 0; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: 2.2rem; }
  .section { padding: 52px 0; }
  /* Brand header on tablet */
  /*.brand-tagline { display: none; }*/
}

/* ── Mobile header + nav ── */
@media (max-width: 768px) {
  .welcome-img{display:none;}
  /* Top bar — slim social-only strip */
  .top-bar { padding: 5px 0; }
  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; }
  .top-bar-right { gap: 18px; }

  /* Brand header — logo left, hamburger right, no text wrapping */
  .brand-header { padding: 8px 0; border-bottom-width: 2px; }
  .brand-header .container-fluid { padding: 0 14px; }
  .brand-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .brand-logo-wrap { gap: 10px; flex-shrink: 0; }
  .brand-logo-wrap img { height: 48px; }
  /*.brand-text { display: block; min-width: 0; }
  .brand-text h1 {
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: normal;
    max-width: 200px;
  }*/
  .brand-text p { display: none; }
  /*.brand-tagline { display: none; }*/

  /* Sticky nav — hamburger always visible */
  nav.main-nav .container-fluid { padding: 0 14px; }
  .nav-inner { justify-content: space-between; }
  .hamburger {
    display: flex;
    align-items: center;
    padding: 8px 6px;
    font-size: 20px;
  }
  /* Mobile menu drawer — single column, clean with hr lines */
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #7a0000;
    z-index: 1001;
    box-shadow: 0 10px 32px rgba(0,0,0,0.5);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-list.open { display: flex; }
  /* Each li full width, separated by a pale line */
  .nav-list > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    height: auto;
    padding: 15px 20px;
    border-right: none;
    border-left: 3px solid transparent !important;
    border-bottom: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: rgba(255,255,255,0.9);
    background: transparent;
    transition: background 0.15s, border-left-color 0.15s;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-list > li > a i { width: 18px; text-align: center; font-size: 12px; opacity: 0.75; }
  .nav-list > li > a:hover { background: rgba(0,0,0,0.2); border-left-color: rgba(255,255,255,0.5) !important; }
  .nav-list > li > a.active { background: rgba(0,0,0,0.28); border-left-color: var(--gold) !important; color: #fff; }
  /* Has-dropdown: flex row so link + toggle btn sit side-by-side */
  .has-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .has-dropdown > a {
    flex: 1;
    min-width: 0;
    width: auto !important;
  }
  /* +/- toggle button */
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.18);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: background .15s, color .15s;
  }
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle.open {
    background: rgba(0,0,0,0.38);
    color: #fff;
  }
  /* Sub-menu: smooth expand/collapse via max-height transition.
     display:block overrides the desktop display:none so max-height/overflow
     are the only things controlling visibility on mobile. */
  .dropdown-menu-custom {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    flex-basis: 100%;
    position: static;
    background: rgba(0,0,0,0.28);
    box-shadow: none;
    border-top: 0;
    border-left: 3px solid var(--gold);
    margin: 0;
    min-width: 0;
    border-radius: 0;
  }
  .dropdown-menu-custom.open {
    max-height: 300px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  /* Rotate the + icon 45° when open — no icon swap needed in JS */
  .nav-dropdown-toggle i {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .nav-dropdown-toggle.open i { transform: rotate(45deg); }
  /* Disable the desktop hover-show rule on mobile */
  .nav-list li:hover .dropdown-menu-custom { display: block; max-height: 0; }
  .nav-list li:hover .dropdown-menu-custom.open { max-height: 300px; }
  .dropdown-menu-custom li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .dropdown-menu-custom li:last-child { border-bottom: none; }
  .dropdown-menu-custom li a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 13px 20px 13px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: none;
    transition: background .15s, padding-left .15s;
  }
  .dropdown-menu-custom li a::before { content: none; }
  .dropdown-menu-custom li a i { color: var(--gold); opacity: 1; width: 16px; text-align: center; }
  .dropdown-menu-custom li a:hover { background: rgba(255,255,255,0.07); color: #fff; padding-left: 28px; }
  /* CTA button on mobile — looks like a normal nav item */
  .nav-cta-item { margin-left: 0; }
  .nav-cta { background: var(--gold) !important; border-radius: 0; border: none; padding: 14px 20px !important; border-left: 3px solid var(--gold) !important; }
  .nav-cta:hover { background: #c8960a !important; }
  .nav-arrow { display: none; }

  /* Hero slider */
  .slide img { height: 210px; object-fit: cover; }
  .slide-caption { padding: 12px 14px; }
  .slide-caption h2 { font-size: 1rem; }
  .slide-caption p { font-size: 11.5px; }
  .hero-prev, .hero-next { width: 34px; height: 34px; font-size: 13px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 36px 16px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 14px; }
  .breadcrumb-nav { font-size: 12px; flex-wrap: wrap; gap: 6px; }

  /* Content grids */
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .news-grid { grid-template-columns: 1fr; }
  .blog-list, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Section spacing */
  .section { padding: 44px 0; }
  .section-title { font-size: 1.7rem; }

  /* Member cards */
  .member-card { padding: 18px 14px; }
  .member-avatar { width: 70px; height: 70px; font-size: 1.6rem; }
  .member-name { font-size: 1rem; }

  /* Stats */
  .stats-section { padding: 44px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2.2rem; }

  /* Welcome strip */
  .welcome-strip { grid-template-columns: 1fr; }
  .welcome-strip-img { height: 200px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 240px; border-radius: var(--radius); }
  .why-points { gap: 14px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-bar-grid { grid-template-columns: 1fr; }
  .contact-bar-item { border-right: none; padding: 12px 0; border-bottom: 1px solid var(--gray); }
  .contact-bar-item:last-child { border-bottom: none; }

  /* Blog detail */
  .blog-detail-wrap { grid-template-columns: 1fr; }
  .blog-article .blog-hero-img { height: 220px; }
  .blog-article h1 { font-size: 1.5rem; }

  /* Quotes */
  .quote-card { padding: 28px 20px; }
  .quote-text { font-size: 1rem; }
  .quote-slider-wrap { padding: 0 36px; }
  .quote-nav { width: 36px; height: 36px; font-size: 14px; }

  /* Governing body */
  .governing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding-top: 44px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Floating buttons */
  .floating-btns { bottom: 70px; right: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 20px; }

  /* Scroll top */
  .scroll-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }

  /* Availability */
  .availability-wrap { grid-template-columns: 1fr; gap: 24px; }
  .avail-filter-card { position: static; padding: 20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .brand-header .container-fluid { padding: 0 12px; }

  /* Brand header very small — logo + short title only */
  .brand-logo-wrap { gap: 8px; }
  .brand-logo-wrap img { height: 42px; }
  .brand-text h1 { font-size: 0.72rem; max-width: 160px; }
  .brand-text p { display: none; }

  /* Page hero */
  .page-hero { padding: 28px 12px; }
  .page-hero h1 { font-size: 1.35rem; }
  .page-hero p { font-size: 12.5px; }

  /* Hero slider */
  .slide img { height: 175px; }

  /* Member grid → single column */
  .members-grid { grid-template-columns: 1fr; }
  .member-card { text-align: center; }

  /* Services → single */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }

  /* Footer → single */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  /* Governing body → single */
  .governing-grid { grid-template-columns: 1fr; }

  /* Membership form */
  .membership-form-wrap { padding: 20px 14px; }

  /* Quote */
  .quote-slider-wrap { padding: 0 28px; }
  .chairman-quote-text { font-size: 1.1rem; }

  /* Section spacing */
  .section { padding: 36px 0; }
  .section-title { font-size: 1.5rem; }

  /* Blog/news */
  .news-grid { grid-template-columns: 1fr; }
  .blog-list, .blog-grid { grid-template-columns: 1fr; }

  /* Video gallery */
  .video-grid { grid-template-columns: 1fr; }

  /* Check availability */
  .results-grid-wrap { grid-template-columns: 1fr !important; }
}

/* Extra small */
@media (max-width: 360px) {
  .brand-logo-wrap img { height: 38px; }
  .page-hero h1 { font-size: 1.2rem; }
  .nav-list > li > a { padding: 12px 14px; font-size: 13px; }
}


/* =============================================================
   SECTION 2: ADDITIONS (additions.css)
   ============================================================= */

/* =============================================
   GATGA ADDITIONS CSS
   New features: floating buttons, translator,
   member popup, membership form, news, video gallery
   ============================================= */

/* ---- FLOATING BUTTONS (WhatsApp + Call) ---- */
.floating-btns {
  position: fixed;
  bottom: 90px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.15); color: #fff; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--red); }
.float-btn .float-tooltip {
  position: absolute;
  right: 64px;
  background: #222;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.float-btn .float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #222;
  border-right: none;
}
.float-btn:hover .float-tooltip { opacity: 1; }
/* Pulse ring on whatsapp */
.float-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- LANGUAGE TRANSLATOR WIDGET ---- */
.translator-widget {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
}
.translator-tab {
  background: var(--red);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 16px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
  border: none;
  font-family: 'DM Sans', sans-serif;
  box-shadow: -3px 0 14px rgba(0,0,0,0.2);
  user-select: none;
}
.translator-tab:hover { background: var(--red-dark); }
.translator-tab i { writing-mode: horizontal-tb; font-size: 16px; }
.translator-panel {
  background: #fff;
  width: 0;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  border-radius: 12px 0 0 12px;
}
.translator-panel.open { width: 220px; }
.translator-panel-inner { padding: 20px; width: 220px; }
.translator-panel-inner h4 {
  font-size: 13px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--red);
  display: flex; align-items: center; gap: 7px;
  font-family: 'DM Sans', sans-serif;
}
.translator-panel-inner h4 i { color: var(--red); }
.lang-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.lang-btn {
  padding: 7px 6px;
  border: 1.5px solid var(--light-gray);
  background: #fff;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--red); color: #fff;
  border-color: var(--red); transform: scale(1.03);
}
.lang-btn .flag { font-size: 14px; }
/* Google Translate hide default */
#google_translate_element { display: none; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ---- MEMBER DETAIL POPUP ---- */
.member-popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.member-popup-overlay.active { display: flex; }
.member-popup-box {
  background: #fff;
  border-radius: 20px;
  max-width: 600px; width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: popSlide 0.35s cubic-bezier(0.34,1.4,0.64,1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes popSlide {
  from { transform: translateY(40px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.member-popup-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 36px 32px 28px;
  text-align: center; position: relative;
}
.member-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; color: #fff; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.member-popup-close:hover { background: rgba(255,255,255,0.3); }
.member-popup-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: #fff;
  font-family: 'Playfair Display', serif; font-weight: 700;
  margin: 0 auto 16px;
}
.member-popup-name { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.member-popup-role { color: rgba(255,255,255,0.8); font-size: 13px; }
.member-popup-body { padding: 28px 32px; }
.member-popup-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--light-gray);
}
.member-popup-row:last-child { border-bottom: none; }
.member-popup-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff0f0; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.member-popup-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-weight: 600; }
.member-popup-value { font-size: 14px; color: var(--text-dark); font-weight: 500; }
.member-popup-value a { color: var(--red); }
.member-popup-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.member-popup-tag { background: #fff0f0; color: var(--red); font-size: 12px; padding: 3px 10px; border-radius: 12px; font-weight: 600; border: 1px solid #ffd0d0; }
.member-popup-footer {
  padding: 16px 32px 24px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---- MEMBERSHIP FORM PAGE ---- */
.membership-form-wrap {
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-section-title {
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 28px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffd0d0;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.form-section-title i { font-size: 16px; }
.form-section-title:first-child { margin-top: 0; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: flex-start; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.check-item {
  display: flex; align-items: center; gap: 7px;
  background: var(--off-white); padding: 8px 14px;
  border-radius: 8px; cursor: pointer;
  border: 1.5px solid var(--light-gray); transition: all 0.2s;
  font-size: 13px; font-weight: 500;
}
.check-item input[type=checkbox] { accent-color: var(--red); width: 15px; height: 15px; cursor: pointer; }
.check-item:has(input:checked) { background: #fff0f0; border-color: var(--red); color: var(--red); }
.upload-zone {
  border: 2px dashed var(--gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
}
.upload-zone:hover { border-color: var(--red); background: #fff5f5; }
.upload-zone i { font-size: 36px; color: var(--red); margin-bottom: 10px; display: block; }
.upload-zone p { font-size: 13.5px; color: var(--text-light); margin: 0; }
.upload-zone p strong { color: var(--red); }
.membership-steps {
  display: flex; gap: 0;
  margin-bottom: 36px;
  background: var(--off-white);
  border-radius: 50px;
  padding: 6px;
  overflow: hidden;
}
.m-step {
  flex: 1; padding: 10px 16px;
  border-radius: 40px;
  text-align: center;
  font-size: 12.5px; font-weight: 700;
  color: var(--text-light);
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.m-step.active { background: var(--red); color: #fff; }
.m-step.done { background: #e8f5e9; color: #2e7d32; }

/* ---- NEWS PAGE ---- */
.news-featured {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}
.news-featured-img { overflow: hidden; min-height: 340px; position: relative; }
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-body {
  padding: 44px; background: #fff;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid var(--light-gray);
  border-left: none;
}
.announcement-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px; margin-bottom: 16px;
  border: 1px solid var(--light-gray);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.announcement-card:hover { transform: translateX(5px); border-color: var(--red); box-shadow: var(--shadow); }
.announce-date-box {
  text-align: center; background: var(--red); color: #fff;
  padding: 12px 16px; border-radius: 10px;
  min-width: 64px; flex-shrink: 0;
}
.announce-date-box .day { font-size: 1.8rem; font-weight: 800; line-height: 1; font-family: 'Playfair Display', serif; }
.announce-date-box .mon { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.85; }
.announce-content h4 { font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.announce-content p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.announce-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-notice { background: #e3f2fd; color: #1565c0; }
.badge-event { background: #f3e5f5; color: #6a1b9a; }
.badge-policy { background: #fff3e0; color: #e65100; }
.badge-urgent { background: #ffebee; color: #c62828; }

/* ---- VIDEO GALLERY ---- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  border: 1px solid var(--light-gray); transition: all 0.3s;
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative; height: 200px; overflow: hidden;
  background: #111; cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; opacity: 0.85; }
.video-card:hover .video-thumb img { transform: scale(1.07); }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(211,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  transition: all 0.3s;
  border: 3px solid rgba(255,255,255,0.6);
}
.video-card:hover .video-play-btn { background: var(--red); transform: translate(-50%,-50%) scale(1.12); }
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-size: 12px; padding: 2px 8px; border-radius: 4px;
  font-weight: 600;
}
.video-card-body { padding: 18px; }
.video-card-body h3 { font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.video-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.video-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); }
.video-meta i { color: var(--red); margin-right: 3px; }
/* Video Popup */
.video-popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px;
}
.video-popup-overlay.active { display: flex; }
.video-popup-box {
  background: #000; border-radius: 12px;
  max-width: 900px; width: 100%;
  position: relative; overflow: hidden;
  animation: popSlide 0.3s ease;
}
.video-popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: #fff; border: none;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.2s;
}
.video-popup-close:hover { background: var(--red-dark); transform: scale(1.1); }
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-embed-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ---- QUOTES PAGE ---- */
.chairman-hero {
  background: linear-gradient(135deg, #0d0000 0%, #2a0000 50%, #0d0000 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.chairman-hero::before {
  content: '❝';
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 300px; color: rgba(255,255,255,0.03);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.chairman-main-quote {
  max-width: 820px; margin: 0 auto;
  padding: 0 24px;
}
.chairman-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-style: italic;
  color: #fff; line-height: 1.7;
  margin-bottom: 36px; position: relative;
}
.chairman-quote-text::before {
  content: '❝'; font-size: 80px; color: var(--gold); opacity: 0.4;
  display: block; line-height: 0.5; margin-bottom: 20px;
  font-style: normal;
}
.chairman-card-wrap {
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.chairman-avatar-lg {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 4px solid var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-family: 'Playfair Display', serif; font-weight: 700;
}
.chairman-meta-text {}
.chairman-meta-name { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.chairman-meta-role { color: var(--gold); font-size: 13px; }
.quote-rotate-btns { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.qr-btn {
  padding: 10px 24px; border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 7px;
}
.qr-btn:hover, .qr-btn.active { background: var(--gold); border-color: var(--gold); color: #111; }

/* quote tags pills */
.quote-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.quote-tag-pill {
  padding: 5px 16px; border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 12px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: all 0.2s;
}
.quote-tag-pill:hover { background: rgba(200,165,53,0.2); border-color: var(--gold); color: var(--gold); }

/* ---- CHECK AVAILABILITY RESULT CARDS ---- */
.avail-result-header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 28px;
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.avail-result-header h3 { color: #fff; font-size: 1.15rem; margin: 0; }
.avail-results-box {
  background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--light-gray); border-top: none;
  overflow: hidden;
}
.avail-guide-card {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.2s; cursor: pointer;
}
.avail-guide-card:last-child { border-bottom: none; }
.avail-guide-card:hover { background: #fff8f8; }
.avail-guide-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-family: 'Playfair Display', serif; font-weight: 700;
  border: 3px solid #ffd0d0; flex-shrink: 0;
}
.avail-guide-info h4 { font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 4px; }
.avail-lang-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.avail-lang-pill { background: #fff0f0; color: var(--red); font-size: 11px; padding: 2px 9px; border-radius: 10px; font-weight: 600; }
.avail-spec { font-size: 12.5px; color: var(--text-light); margin-top: 5px; }
.avail-status { text-align: right; }
.avail-available { color: #2e7d32; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.avail-available::before { content: ''; width: 8px; height: 8px; background: #4caf50; border-radius: 50%; display: inline-block; }
.avail-book-btn {
  background: var(--red); color: #fff;
  border: none; border-radius: 20px;
  padding: 7px 16px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.avail-book-btn:hover { background: var(--red-dark); transform: scale(1.05); }
.avail-summary-bar {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 18px 24px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--light-gray);
}
.avail-summary-item { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; }
.avail-summary-item i { color: var(--red); }
.avail-summary-sep { color: var(--gray); font-size: 18px; }

/* ---- FANCYBOX CUSTOMISATIONS ---- */
.fancybox__container { --fancybox-accent-color: var(--red) !important; }

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 992px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 220px; }
  .avail-guide-card { grid-template-columns: 72px 1fr; }
  .avail-status { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding-top: 6px; }
  .avail-available { margin-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .membership-form-wrap { padding: 24px 18px; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .translator-widget { display: none; }
  .member-popup-body { padding: 20px 18px; }
  .member-popup-footer { padding: 12px 18px 20px; flex-direction: column; }
  .member-popup-footer .btn-primary,
  .member-popup-footer .btn-wa-guide,
  .member-popup-footer .btn-outline { flex: none; width: 100%; text-align: center; justify-content: center; }
  .chairman-quote-text { font-size: 1.25rem; }
  .chairman-hero { padding: 52px 0; }
  /* Check-availability page */
  .search-row { grid-template-columns: 1fr 1fr !important; }
  .guide-result-card { grid-template-columns: 1fr !important; }
  .guide-card-avatar-col { flex-direction: row; padding: 14px 20px; }
  .guide-card-actions { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--light-gray); min-width: unset; }
  .results-grid-wrap { grid-template-columns: repeat(2, 1fr) !important; }
  .how-it-works { grid-template-columns: repeat(2, 1fr) !important; }
  /* Avail result cards */
  .avail-result-header { padding: 14px 18px; }
  .avail-guide-card { grid-template-columns: 56px 1fr; gap: 12px; padding: 14px 16px; }
  .avail-guide-avatar { width: 50px; height: 50px; font-size: 1.2rem; }
  /* Member popup */
  .member-popup-box { border-radius: 14px; max-height: 95vh; }
  .member-popup-header { padding: 28px 20px 22px; }
  .member-popup-avatar { width: 80px; height: 80px; font-size: 2.2rem; }
  .member-popup-name { font-size: 1.25rem; }
  /* Floating buttons */
  .float-btn .float-tooltip { display: none; }
  /* Video popup */
  .video-popup-box { border-radius: 8px; }
  /* Gal stats */
  .gal-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .search-row { grid-template-columns: 1fr !important; }
  .how-it-works { grid-template-columns: 1fr !important; }
  .hiw-arrow { display: none; }
  .results-grid-wrap { grid-template-columns: 1fr !important; }
  .member-popup-overlay { padding: 10px; align-items: flex-end; }
  .member-popup-box { border-radius: 18px 18px 0 0; max-height: 92vh; }
  .membership-steps { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .m-step { font-size: 11px; padding: 8px 10px; }
  /* Announcement cards */
  .announcement-card { flex-direction: column; gap: 12px; }
  .announce-date-box { align-self: flex-start; }
  /* Quote tags */
  .quote-tags { gap: 6px; }
  .quote-tag-pill { font-size: 11px; padding: 4px 12px; }
}

/* ---- GLOBAL RESPONSIVE SAFETY NET ---- */
/* Ensure no element overflows viewport on mobile */
@media (max-width: 768px) {
  /* Gallery page */
  .gallery-filter-bar { flex-wrap: wrap; gap: 8px; }
  .gallery-filter-btn { font-size: 12px; padding: 6px 14px; }
  .gallery-masonry { columns: 2 !important; }

  /* Blog detail */
  .blog-detail-wrap { grid-template-columns: 1fr !important; }
  .blog-sidebar { display: none; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-form-wrap { padding: 22px 16px !important; }
  .contact-info-wrap { padding: 22px 16px !important; }
  .map-embed { height: 260px !important; }

  /* Membership form */
  .membership-steps { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .membership-form-wrap { padding: 22px 16px !important; }
  .plan-cards { grid-template-columns: 1fr 1fr !important; }

  /* Floating btns — keep from overflowing */
  .floating-btns { right: 12px; bottom: 64px; }

  /* Tables — horizontal scroll */
  .gov-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Images — prevent overflow */
  img { max-width: 100%; height: auto; }

  /* iframe / embeds */
  iframe { max-width: 100%; }

  /* Quote page chairman section */
  .chairman-section { padding: 48px 0 36px; }
  .c-quote-wrap { padding: 0 34px; }
}

@media (max-width: 480px) {
  /* Gallery — 1 column */
  .gallery-masonry { columns: 1 !important; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr !important; }

  /* Membership plan cards */
  .plan-cards { grid-template-columns: 1fr !important; }

  /* Blog / news */
  .news-card { flex-direction: column !important; }
  .news-card-img { width: 100% !important; height: 180px !important; }

  /* All pages: prevent text overflow */
  h1, h2, h3 { word-break: break-word; overflow-wrap: break-word; }

  /* Check availability hero band */
  .avail-hero-band { padding: 28px 0 24px; }
  .avail-hero-title { font-size: 1.3rem !important; }

  /* Quotes masonry — always 1 col */
  .quotes-masonry { grid-template-columns: 1fr !important; }

  /* Section titles */
  .section-title { font-size: 1.4rem !important; }
}


/* =============================================================
   SECTION 3: PAGE STYLES (pages.css)
   ============================================================= */

/* ---- from about.html ---- */

    .about-intro { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: center; }
    .about-img-stack { position: relative; }
    .about-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
    .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .about-img-badge {
      position: absolute; bottom: -20px; left: -20px;
      background: var(--red); color: #fff;
      padding: 24px 28px; border-radius: var(--radius-lg);
      text-align: center; box-shadow: var(--shadow);
    }
    .about-img-badge .num { font-family: 'Playfair Display',serif; font-size: 2.5rem; font-weight: 800; display: block; }
    .about-img-badge span { font-size: 12px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }
    .mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .mission-card {
      background: #fff; border-radius: var(--radius-lg); padding: 32px;
      border: 1px solid var(--light-gray); text-align: center;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06); transition: var(--transition);
    }
    .mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .mission-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: #fff0f0; color: var(--red); font-size: 26px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; border: 2px solid #ffd0d0;
    }
    .mission-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
    .mission-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
    .timeline { position: relative; padding-left: 40px; }
    .timeline::before { content:''; position:absolute; left:14px; top:0; bottom:0; width:2px; background:var(--light-gray); }
    .timeline-item { position:relative; margin-bottom:36px; }
    .timeline-dot {
      position:absolute; left:-40px; top:4px;
      width:28px; height:28px; border-radius:50%;
      background: var(--red); color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-size:11px; font-weight:700;
    }
    .timeline-item h4 { font-size:15px; margin-bottom:6px; }
    .timeline-item p { font-size:13.5px; color:var(--text-light); line-height:1.7; }
    @media(max-width:992px){
      .about-intro{grid-template-columns:1fr;}
      .about-img-stack{margin-bottom:30px;}
      .mission-grid{grid-template-columns:1fr 1fr;}
    }
    @media(max-width:600px){ .mission-grid{grid-template-columns:1fr;} }
  
    /* Responsive: Journey + Scope */
    @media (max-width: 768px) {
      .journey-scope-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
      .scope-sub-grid { grid-template-columns: 1fr 1fr !important; }
    }
    @media (max-width: 480px) {
      .scope-sub-grid { grid-template-columns: 1fr !important; }
    }
    /* About intro grid */
  

/* ---- from blog-detail.html ---- */

    .share-bar {
      display: flex; align-items: center; gap: 10px;
      padding: 20px 0; border-top: 1px solid var(--light-gray);
      margin-top: 36px; flex-wrap: wrap;
    }
    .share-bar span { font-weight: 700; font-size: 14px; }
    .share-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 30px;
      font-size: 13px; font-weight: 600; cursor: pointer;
      border: none; color: #fff; transition: var(--transition);
    }
    .share-btn.fb { background: #1877f2; }
    .share-btn.tw { background: #1da1f2; }
    .share-btn.wa { background: #25d366; }
    .share-btn:hover { opacity: 0.88; transform: translateY(-2px); }
    .author-box {
      display: flex; gap: 20px; align-items: center;
      background: var(--off-white); border-radius: var(--radius-lg);
      padding: 28px; margin-top: 36px; border: 1px solid var(--light-gray);
    }
    .author-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; font-family: 'Playfair Display', serif;
      font-weight: 700; flex-shrink: 0;
      border: 3px solid #fff; box-shadow: 0 4px 14px rgba(211,0,0,0.3);
    }
    .author-info h4 { font-size: 16px; margin-bottom: 4px; }
    .author-info .author-role { color: var(--red); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
    .author-info p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }
    .related-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
    @media (max-width:768px) { .related-posts-grid { grid-template-columns: 1fr; } .author-box { flex-direction: column; text-align: center; } }
  

/* ---- from blog.html ---- */

    .blog-filter-bar {
      display: flex; gap: 10px; flex-wrap: wrap;
      margin-bottom: 36px; align-items: center;
    }
    .filter-btn {
      padding: 8px 20px; border-radius: 30px;
      border: 2px solid var(--gray); background: #fff;
      font-size: 13px; font-weight: 600; cursor: pointer;
      transition: var(--transition); color: var(--text-mid);
      font-family: 'DM Sans', sans-serif;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--red); color: #fff; border-color: var(--red);
    }
    .featured-blog {
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 0; border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow-lg);
      margin-bottom: 48px; border: 1px solid var(--light-gray);
    }
    .featured-blog-img { overflow: hidden; min-height: 360px; }
    .featured-blog-img img { width: 100%; height: 100%; object-fit: cover; }
    .featured-blog-body {
      padding: 48px; background: #fff;
      display: flex; flex-direction: column; justify-content: center;
    }
    .featured-label {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--red); color: #fff;
      font-size: 11px; font-weight: 700; padding: 5px 14px;
      border-radius: 20px; letter-spacing: 0.8px;
      text-transform: uppercase; width: fit-content; margin-bottom: 16px;
    }
    .featured-blog-body h2 {
      font-size: 1.9rem; color: var(--text-dark);
      margin-bottom: 14px; line-height: 1.3;
    }
    .featured-blog-body p { color: var(--text-light); line-height: 1.8; margin-bottom: 22px; }
    .pagination {
      display: flex; gap: 8px; justify-content: center;
      margin-top: 50px; flex-wrap: wrap;
    }
    .page-btn {
      width: 40px; height: 40px; border-radius: 50%;
      border: 2px solid var(--gray); background: #fff;
      font-size: 14px; font-weight: 600; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition); color: var(--text-mid);
      font-family: 'DM Sans', sans-serif;
    }
    .page-btn.active, .page-btn:hover {
      background: var(--red); color: #fff; border-color: var(--red);
    }
    @media (max-width: 768px) {
      .featured-blog { grid-template-columns: 1fr; }
      .featured-blog-img { min-height: 220px; }
      .featured-blog-body { padding: 28px; }
    }
  

/* ---- from check-availability.html ---- */

    /* ====== CHECK AVAILABILITY — REDESIGN ====== */

    /* Hero search band */
    .avail-hero-band {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
      padding: 44px 0 36px;
      position: relative;
      overflow: hidden;
    }
    .avail-hero-band::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    }
    .avail-hero-title { color: #fff; font-size: 2rem; margin-bottom: 6px; }
    .avail-hero-sub { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 28px; }

    /* Inline search bar */
    .avail-search-bar {
      background: #fff;
      border-radius: 14px;
      padding: 6px 6px 6px 6px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr auto;
      gap: 0;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
      overflow: hidden;
    }
    .avail-field {
      padding: 14px 18px;
      border-right: 1px solid #f0eded;
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: #fff;
      border-radius: 0;
    }
    .avail-field:first-child { border-radius: 10px 0 0 10px; }
    .avail-field label {
      font-size: 10.5px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--text-light);
    }
    .avail-field input,
    .avail-field select {
      border: none;
      outline: none;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      color: var(--text-dark);
      background: transparent;
      padding: 0;
      cursor: pointer;
    }
    .avail-field select option { color: var(--text-dark); font-weight: 400; }
    .avail-search-btn {
      background: var(--red);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
      white-space: nowrap;
      margin: 4px;
    }
    .avail-search-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

    /* How it works - horizontal steps */
    .hiw-strip {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 36px 0;
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--light-gray);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .hiw-step {
      flex: 1;
      padding: 20px 16px;
      text-align: center;
      border-right: 1px solid var(--light-gray);
      position: relative;
    }
    .hiw-step:last-child { border-right: none; }
    .hiw-step-num {
      width: 32px; height: 32px;
      background: var(--red);
      color: #fff;
      border-radius: 50%;
      font-size: 13px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 8px;
      font-family: 'DM Sans', sans-serif;
    }
    .hiw-step i { font-size: 20px; color: var(--red); display: block; margin-bottom: 6px; }
    .hiw-step h4 { font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 3px; }
    .hiw-step p { font-size: 11.5px; color: var(--text-light); line-height: 1.5; }
    .hiw-arrow-icon {
      position: absolute; right: -10px; top: 50%;
      transform: translateY(-50%);
      width: 20px; height: 20px;
      background: #fff;
      border-radius: 50%;
      border: 1px solid var(--light-gray);
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; color: var(--red);
      z-index: 2;
    }
    .hiw-step:last-child .hiw-arrow-icon { display: none; }

    /* Results header */
    .results-area { display: none; }
    .results-area.show { display: block; animation: fadeUp 0.4s ease; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

    .results-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
      padding: 16px 20px;
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--light-gray);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .results-topbar-left h2 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 4px; }
    .results-topbar-left h2 span { color: var(--red); }
    .results-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .res-tag { background: var(--off-white); border: 1px solid var(--light-gray); color: var(--text-mid); font-size: 12px; padding: 4px 10px; border-radius: 16px; display: flex; align-items: center; gap: 4px; font-weight: 600; }
    .res-tag i { color: var(--red); font-size: 10px; }
    .results-topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .guide-count-badge { background: var(--red); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 16px; }
    .sort-select { padding: 7px 12px; border: 1.5px solid var(--gray); border-radius: var(--radius); font-size: 12.5px; font-family: 'DM Sans', sans-serif; background: #fff; cursor: pointer; }
    .sort-select:focus { border-color: var(--red); outline: none; }
    .view-toggle { display: flex; gap: 5px; }
    .view-btn { width: 32px; height: 32px; border: 1.5px solid var(--gray); background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; color: var(--text-light); transition: all 0.2s; }
    .view-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

    /* List card — clean horizontal */
    .guide-result-card {
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--light-gray);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-bottom: 14px;
      overflow: hidden;
      transition: all 0.25s;
      display: grid;
      grid-template-columns: 88px 1fr auto;
    }
    .guide-result-card:hover { border-color: var(--red); box-shadow: 0 6px 24px rgba(211,0,0,0.1); transform: translateX(3px); }
    .guide-card-avatar-col {
      background: linear-gradient(135deg,#2c3e50,#3d5166);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 18px 10px; gap: 8px;
    }
    .guide-card-initials {
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2.5px solid rgba(255,255,255,0.35);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: #fff;
      font-family: 'Playfair Display', serif; font-weight: 700;
    }
    .avail-dot { display: flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: #fff; text-align: center; }
    .avail-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4caf50; flex-shrink: 0; }
    .avail-dot.busy::before { background: #ff9800; }
    .guide-card-body { padding: 18px 22px; }
    .guide-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
    .guide-card-langs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
    .glang-pill { background: #fff0f0; color: var(--red); font-size: 11px; padding: 2px 8px; border-radius: 8px; font-weight: 700; border: 1px solid #ffd0d0; }
    .guide-card-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
    .gspec-tag { background: var(--off-white); color: var(--text-mid); font-size: 11px; padding: 2px 9px; border-radius: 5px; border: 1px solid var(--light-gray); }
    .guide-card-info { display: flex; gap: 16px; flex-wrap: wrap; }
    .guide-info-item { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
    .guide-info-item i { color: var(--red); font-size: 10px; }
    .guide-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 7px; }
    .guide-rating .stars { color: #f59e0b; font-size: 11px; }
    .guide-rating .rating-num { font-size: 12.5px; font-weight: 700; color: var(--text-dark); }
    .guide-rating .rating-count { font-size: 11px; color: var(--text-light); }
    .guide-card-actions {
      padding: 18px 16px;
      display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: stretch;
      min-width: 155px; border-left: 1px solid var(--light-gray);
    }
    .guide-fee { text-align: center; padding: 6px 0 10px; border-bottom: 1px solid var(--light-gray); }
    .guide-fee .fee-amount { font-size: 1.2rem; font-weight: 800; color: var(--red); font-family: 'Playfair Display', serif; }
    .guide-fee .fee-label { font-size: 10.5px; color: var(--text-light); display: block; }
    .btn-view-profile { background: var(--off-white); color: var(--text-dark); border: 1.5px solid var(--gray); border-radius: var(--radius); padding: 8px 12px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: all 0.2s; text-align: center; }
    .btn-view-profile:hover { border-color: var(--red); color: var(--red); }
    .btn-book-now { background: var(--red); color: #fff; border: none; border-radius: var(--radius); padding: 9px 12px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: all 0.2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
    .btn-book-now:hover { background: var(--red-dark); }
    .btn-wa-guide { background: #25d366; color: #fff; border: none; border-radius: var(--radius); padding: 8px 12px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: all 0.2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; text-decoration: none; }
    .btn-wa-guide:hover { background: #1ea957; color: #fff; }

    /* Grid cards */
    .results-grid-wrap { display: none; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .results-grid-wrap.show { display: grid; }
    .guide-grid-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--light-gray); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.25s; text-align: center; }
    .guide-grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red); }
    .guide-grid-top { background: linear-gradient(135deg,#2c3e50,#3d5166); padding: 26px 14px 18px; }
    .guide-grid-avatar { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2.5px solid rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; font-family: 'Playfair Display',serif; font-weight: 700; margin: 0 auto 10px; }
    .guide-grid-name { color: #fff; font-size: 13.5px; font-weight: 700; font-family: 'DM Sans',sans-serif; }
    .guide-grid-avail { color: rgba(255,255,255,0.8); font-size: 10.5px; margin-top: 3px; display: flex; align-items: center; justify-content: center; gap: 4px; }
    .guide-grid-avail::before { content:''; width: 5px; height: 5px; border-radius: 50%; background: #4caf50; }
    .guide-grid-avail.busy::before { background: #ff9800; }
    .guide-grid-body { padding: 14px 12px; }
    .guide-grid-body .guide-card-langs { justify-content: center; }
    .guide-grid-body .guide-rating { justify-content: center; }
    .guide-grid-body .guide-fee { border: none; padding: 4px 0; }
    .guide-grid-btns { display: flex; gap: 7px; padding: 10px 12px; border-top: 1px solid var(--light-gray); }
    .guide-grid-btns .btn-view-profile { flex: 1; font-size: 11.5px; padding: 7px 8px; }
    .guide-grid-btns .btn-book-now { flex: 1; font-size: 11.5px; padding: 8px 8px; }

    /* Loading / no results */
    .loading-overlay { display: none; text-align: center; padding: 60px 20px; }
    .loading-overlay.show { display: block; }
    .ld-spinner { width: 48px; height: 48px; border: 4px solid var(--light-gray); border-top-color: var(--red); border-radius: 50%; animation: spin2 0.7s linear infinite; margin: 0 auto 16px; }
    @keyframes spin2 { to{transform:rotate(360deg)} }
    .no-results-box { text-align: center; padding: 60px 20px; display: none; }
    .no-results-box.show { display: block; }
    .no-results-box i { font-size: 52px; color: var(--gray); display: block; margin-bottom: 14px; }

    /* Responsive */
    @media(max-width:900px) {
      .avail-search-bar { grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; }
      .avail-field { border-bottom: 1px solid #f0eded; }
      .avail-field:nth-child(odd) { border-right: 1px solid #f0eded; }
      .avail-field:nth-child(even) { border-right: none; }
      .avail-search-btn { grid-column: 1 / -1; margin: 4px; border-radius: 8px; justify-content: center; }
      .results-grid-wrap { grid-template-columns: repeat(2,1fr); }
      .hiw-strip { flex-wrap: wrap; }
      .hiw-step { flex: 1 1 45%; border-bottom: 1px solid var(--light-gray); }
      .hiw-step:nth-child(2) { border-right: none; }
      .hiw-step:nth-child(3), .hiw-step:nth-child(4) { border-bottom: none; }
    }
    @media(max-width:650px) {
      .avail-hero-title { font-size: 1.5rem; }
      .avail-search-bar { grid-template-columns: 1fr; border-radius: 10px; }
      .avail-field { border-right: none !important; border-bottom: 1px solid #f0eded; }
      .avail-field:last-of-type { border-bottom: none; }
      .results-grid-wrap { grid-template-columns: 1fr; }
      .guide-result-card { grid-template-columns: 1fr; }
      .guide-card-avatar-col { flex-direction: row; padding: 14px 18px; gap: 12px; }
      .guide-card-actions { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--light-gray); min-width: unset; padding: 14px 18px; }
      .guide-card-actions .guide-fee { border-bottom: none; border-right: 1px solid var(--light-gray); padding: 0 14px 0 0; margin-right: 4px; }
      .hiw-strip { flex-direction: column; }
      .hiw-step { flex: 1 1 100%; border-right: none; }
      .hiw-arrow-icon { display: none; }
      .results-topbar { flex-direction: column; align-items: flex-start; }
      .results-topbar-right { width: 100%; justify-content: space-between; }
    }
  

/* ---- from contact.html ---- */

    .success-msg { display:none; background:#e8f5e9; border:1px solid #a5d6a7; color:#2e7d32; padding:14px 20px; border-radius:var(--radius); margin-top:16px; font-size:14px; }
    .success-msg.show { display:block; }
  

/* ---- from gallery.html ---- */

    .gallery-filter-bar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:32px;align-items:center;}
    .gal-btn{padding:8px 22px;border-radius:30px;border:2px solid var(--gray);background:#fff;font-size:13px;font-weight:600;cursor:pointer;transition:all 0.25s;color:var(--text-mid);font-family:"DM Sans",sans-serif;}
    .gal-btn.active,.gal-btn:hover{background:var(--red);color:#fff;border-color:var(--red);}
    .gallery-masonry{columns:4;column-gap:8px;}
    .gallery-masonry-item{break-inside:avoid;margin-bottom:8px;overflow:hidden;border-radius:var(--radius);position:relative;display:block;cursor:pointer;}
    .gallery-masonry-item img{width:100%;display:block;transition:transform 0.5s ease;}
    .gallery-masonry-item:hover img{transform:scale(1.07);}
    .gal-overlay{position:absolute;inset:0;background:rgba(211,0,0,0.55);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;opacity:0;transition:opacity 0.3s;}
    .gallery-masonry-item:hover .gal-overlay{opacity:1;}
    .gal-overlay i{color:#fff;font-size:28px;}
    .gal-overlay span{color:#fff;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:0.5px;padding:3px 12px;border:1.5px solid rgba(255,255,255,0.6);border-radius:20px;}
    .gal-tall img{height:420px;object-fit:cover;}
    .gal-std img{height:220px;object-fit:cover;}
    .gal-cat-pill{position:absolute;top:10px;left:10px;background:rgba(0,0,0,0.55);color:#fff;font-size:10.5px;font-weight:700;padding:3px 10px;border-radius:12px;letter-spacing:0.5px;text-transform:uppercase;}
    .gal-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:0;background:var(--red);border-radius:var(--radius-lg);overflow:hidden;margin-bottom:44px;}
    .gal-stat-item{padding:22px;text-align:center;border-right:1px solid rgba(255,255,255,0.15);}
    .gal-stat-item:last-child{border-right:none;}
    .gal-stat-num{font-family:"Playfair Display",serif;font-size:2rem;font-weight:800;color:#fff;display:block;}
    .gal-stat-label{font-size:12px;color:rgba(255,255,255,0.8);text-transform:uppercase;letter-spacing:0.5px;margin-top:2px;}
    .gal-cta{background:linear-gradient(135deg,var(--red),var(--red-dark));border-radius:var(--radius-lg);padding:44px;text-align:center;margin-top:52px;}
    .gal-cta h3{color:#fff;font-size:1.8rem;margin-bottom:12px;}
    .gal-cta p{color:rgba(255,255,255,0.85);margin-bottom:24px;font-size:15px;}
    .gal-cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
    @media(max-width:992px){.gallery-masonry{columns:3;}.gal-stats{grid-template-columns:repeat(2,1fr);}}
    @media(max-width:600px){.gallery-masonry{columns:2;}.gal-tall img{height:240px;}.gal-stats{grid-template-columns:1fr 1fr;}}
    @media(max-width:400px){.gallery-masonry{columns:1;}.gal-stats{grid-template-columns:1fr 1fr;}}
  

/* ---- from governing-body.html ---- */

    /* Exec cards responsive */
    @media (max-width: 900px) {
      .exec-cards-grid { grid-template-columns: repeat(2,1fr) !important; gap: 18px !important; }
    }
    @media (max-width: 600px) {
      .exec-cards-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    }
    /* Responsive table — card style on mobile */
    @media (max-width: 700px) {
      .gov-table-wrap { overflow-x: unset; }
      .gov-table thead { display: none; }
      .gov-table,
      .gov-table tbody,
      .gov-table tr,
      .gov-table td { display: block; }
      .gov-table { width: 100%; }

      /* Each row = a card */
      .gov-table tr {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        margin-bottom: 14px;
        padding: 12px 16px 12px 16px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        position: relative;
      }

      /* All data cells — label on left, value on right */
      .gov-table td {
        position: static;
        display: flex;
        align-items: baseline;
        gap: 10px;
        padding: 5px 44px 5px 0;
        border: none;
        font-size: 13px;
        color: #222;
        line-height: 1.5;
        width: auto;
        height: auto;
        background: transparent;
        border-radius: 0;
        font-weight: normal;
      }

      /* Label prefix from data-label */
      .gov-table td::before {
        content: attr(data-label);
        flex-shrink: 0;
        width: 108px;
        font-weight: 700;
        font-size: 10px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-top: 2px;
        align-self: flex-start;
      }

      /* Thin separator between cells */
      .gov-table td + td {
        border-top: 1px solid #f0f0f0;
      }

      /* S.No. cell — red circle badge, absolute top-right */
      .gov-table td:first-child {
        position: absolute;
        top: 12px;
        right: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-height: unset;
        padding: 0;
        border: none;
        border-top: none;
        background: var(--red);
        color: #fff;
        font-weight: 800;
        font-size: 12px;
        border-radius: 50%;
      }
      .gov-table td:first-child::before { display: none; }

      /* Name cell — no top border, no top padding */
      .gov-table td:nth-child(2) {
        border-top: none;
        padding-top: 2px;
        font-weight: 700;
        font-size: 14px;
        color: #111;
      }
      .gov-table td:nth-child(2)::before { font-size: 9px; }

      /* Contact links */
      .gov-table td a {
        color: var(--red);
        font-weight: 600;
        text-decoration: none;
      }
    }
  

/* ---- from members.html ---- */

    .members-count { font-size: 13px; color: var(--text-light); margin-left: auto; }
    .no-results { text-align: center; padding: 60px 20px; color: var(--text-light); font-size: 16px; display: none; }
    .no-results i { font-size: 48px; color: var(--gray); display: block; margin-bottom: 14px; }
    .member-card-img .avatar-init {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #2c3e50, #3d5166);
      font-size: 3rem; color: #fff;
      font-family: 'Playfair Display', serif; font-weight: 700;
    }
    .lang-tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin: 8px 0; }
    .lang-tag { background: #fff0f0; color: var(--red); font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
    .member-serial { position: absolute; top: 10px; right: 10px; background: var(--red); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
  

/* ---- from membership.html ---- */

    .benefits-strip {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
      background: var(--red); margin-bottom: 0;
    }
    .benefit-item {
      padding: 28px 20px; text-align: center; color: #fff;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .benefit-item:last-child { border-right: none; }
    .benefit-item i { font-size: 28px; margin-bottom: 10px; display: block; opacity: 0.9; }
    .benefit-item h4 { font-size: 14px; font-family: 'DM Sans',sans-serif; font-weight: 700; margin-bottom: 4px; }
    .benefit-item p { font-size: 12px; opacity: 0.8; line-height: 1.5; }

    .step-progress {
      display: flex; gap: 0; margin-bottom: 40px;
      background: var(--off-white); border-radius: 12px;
      padding: 8px; overflow: hidden;
    }
    .step-item {
      flex: 1; text-align: center; padding: 14px 8px;
      border-radius: 8px; transition: all 0.3s; cursor: pointer;
      position: relative;
    }
    .step-item.active { background: var(--red); color: #fff; }
    .step-item.done { background: #e8f5e9; color: #2e7d32; }
    .step-item.inactive { color: var(--text-light); }
    .step-num {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.25); color: inherit;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; margin: 0 auto 6px;
      font-family: 'DM Sans',sans-serif;
    }
    .step-item.active .step-num { background: rgba(255,255,255,0.3); }
    .step-item.done .step-num { background: #4caf50; color: #fff; }
    .step-item.inactive .step-num { background: var(--light-gray); color: var(--text-light); }
    .step-label { font-size: 12px; font-weight: 600; font-family: 'DM Sans',sans-serif; }

    /* Multi-step panels */
    .form-panel { display: none; }
    .form-panel.active { display: block; animation: fadeIn 0.35s ease; }
    @keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

    .form-nav-btns { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
    .btn-next { background: var(--red); color: #fff; border: none; padding: 13px 32px; border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'DM Sans',sans-serif; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
    .btn-next:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-back { background: var(--off-white); color: var(--text-dark); border: 2px solid var(--gray); padding: 11px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans',sans-serif; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
    .btn-back:hover { border-color: var(--red); color: var(--red); }

    .fee-card {
      border: 2px solid var(--light-gray); border-radius: var(--radius-lg);
      padding: 24px; text-align: center; cursor: pointer;
      transition: all 0.25s; position: relative;
    }
    .fee-card:hover, .fee-card.selected { border-color: var(--red); background: #fff5f5; }
    .fee-card.selected::after { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 12px; right: 14px; color: var(--red); font-size: 18px; }
    .fee-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
    .fee-card .price { font-size: 2rem; font-weight: 800; color: var(--red); font-family: 'Playfair Display',serif; }
    .fee-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
    .fee-card p { font-size: 13px; color: var(--text-light); margin-top: 8px; line-height: 1.6; }

    .success-screen { text-align: center; padding: 60px 40px; }
    .success-icon { width: 90px; height: 90px; border-radius: 50%; background: #e8f5e9; border: 4px solid #4caf50; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 40px; color: #4caf50; animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1); }
    @keyframes successPop { from{transform:scale(0)} to{transform:scale(1)} }
    .success-screen h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 12px; }
    .success-screen p { color: var(--text-light); font-size: 15px; max-width: 480px; margin: 0 auto 28px; line-height: 1.8; }
    .app-num { background: var(--off-white); border: 2px dashed var(--red); border-radius: var(--radius); padding: 14px 24px; font-size: 1.2rem; font-weight: 700; color: var(--red); display: inline-block; margin-bottom: 28px; letter-spacing: 2px; }

    @media(max-width:768px){
      .benefits-strip { grid-template-columns: repeat(2,1fr); }
      .step-label { display: none; }
      .membership-form-wrap { padding: 24px 18px; }
      .membership-steps { flex-wrap: wrap; }
      .m-step { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    }
    @media(max-width:480px){
      .benefits-strip { grid-template-columns: 1fr; }
      .m-step { flex: 1 1 100%; }
    }
    @media(max-width:480px){
      .review-grid { grid-template-columns: 1fr !important; }
      .membership-form-wrap .form-row { grid-template-columns: 1fr !important; }
    }
  

/* ---- from news-detail.html ---- */

    .news-detail-article { background:#fff; border-radius:var(--radius-lg); padding:44px; box-shadow:var(--shadow); border:1px solid var(--light-gray); }
    .news-detail-hero { width:100%; height:380px; object-fit:cover; border-radius:var(--radius-lg); margin-bottom:32px; }
    .news-badge-row { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:18px; }
    .news-detail-article h1 { font-size:2rem; margin-bottom:20px; line-height:1.3; }
    .news-detail-meta { display:flex; gap:20px; flex-wrap:wrap; padding:14px 0; border-top:1px solid var(--light-gray); border-bottom:1px solid var(--light-gray); margin-bottom:28px; }
    .news-detail-meta span { font-size:13px; color:var(--text-light); display:flex; align-items:center; gap:5px; }
    .news-detail-meta i { color:var(--red); }
    .news-detail-article p { font-size:15.5px; color:var(--text-mid); line-height:1.9; margin-bottom:18px; }
    .news-detail-article h2 { font-size:1.4rem; margin:28px 0 14px; color:var(--text-dark); }
    .news-detail-article ul { margin:0 0 18px 24px; list-style:disc; }
    .news-detail-article ul li { margin-bottom:9px; color:var(--text-mid); font-size:15px; line-height:1.7; }
    .info-box { background:var(--off-white); border-left:4px solid var(--red); border-radius:0 var(--radius) var(--radius) 0; padding:20px 24px; margin:24px 0; }
    .info-box h4 { font-size:14px; font-family:'DM Sans',sans-serif; font-weight:700; margin-bottom:12px; color:var(--red); }
    .info-box-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
    .info-box-item { display:flex; gap:10px; align-items:flex-start; font-size:13.5px; }
    .info-box-item i { color:var(--red); margin-top:2px; flex-shrink:0; }
    .info-box-item strong { display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.5px; color:var(--text-light); margin-bottom:2px; }
    .urgent-notice { background:#fff5f5; border:2px solid var(--red); border-radius:var(--radius); padding:20px 24px; margin:24px 0; display:flex; gap:14px; align-items:flex-start; }
    .urgent-notice i { font-size:24px; color:var(--red); flex-shrink:0; margin-top:2px; }
    .urgent-notice h4 { font-size:14px; font-weight:700; color:var(--red); margin-bottom:4px; font-family:'DM Sans',sans-serif; }
    .urgent-notice p { font-size:13.5px; color:var(--text-mid); margin:0; line-height:1.7; }
    .nav-between { display:flex; justify-content:space-between; gap:16px; margin-top:36px; flex-wrap:wrap; }
    .nav-between a { display:flex; align-items:center; gap:8px; background:var(--off-white); padding:12px 20px; border-radius:var(--radius); font-size:13.5px; font-weight:600; color:var(--text-dark); border:1px solid var(--light-gray); transition:all 0.2s; max-width:48%; }
    .nav-between a:hover { background:var(--red); color:#fff; border-color:var(--red); }
    @media(max-width:600px){ .info-box-grid{grid-template-columns:1fr;} .nav-between a{max-width:100%;} }
  

/* ---- from news.html ---- */

    .news-sidebar-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: flex-start; }
    @media(max-width: 900px) { .news-sidebar-grid { grid-template-columns: 1fr; } }
    .announce-flex { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
  

/* ---- from news.html ---- */

    @keyframes ticker{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}
    @media(max-width:768px){
      .news-sidebar-grid { grid-template-columns: 1fr !important; }
    }
  

/* ---- from quotes.html ---- */

    /* ---- CHAIRMAN ROTATING QUOTE HERO ---- */
    .chairman-section {
      background: linear-gradient(135deg, #0a0000 0%, #2a0000 45%, #0a0000 100%);
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .chairman-section::before {
      content: '\201C';
      position: absolute; top: -60px; right: 5%;
      font-size: 400px; color: rgba(255,255,255,0.025);
      font-family: Georgia,serif; line-height:1; pointer-events:none;
    }
    .chairman-section::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    /* rotating quote card */
    .c-quote-wrap {
      max-width: 860px; margin: 0 auto; position: relative; text-align: center;
    }
    .c-quote-stage { overflow: hidden; position: relative; }
    .c-quote-track { display: flex; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .c-quote-slide { min-width: 100%; padding: 0 20px; }
    .c-quote-card {
      position: relative;
      padding: 48px 52px 44px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px;
      backdrop-filter: blur(12px);
    }
    .c-quote-mark {
      font-size: 100px;
      color: var(--gold);
      opacity: 0.35;
      font-family: Georgia,serif;
      line-height: 0.6;
      display: block;
      margin-bottom: 24px;
    }
    .c-quote-text {
      font-family: 'Playfair Display',serif;
      font-size: 1.55rem;
      font-style: italic;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 0;
    }
    .c-quote-divider {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 32px auto;
    }
    .c-quote-person {
      display: flex; align-items: center; justify-content: center; gap: 18px;
    }
    .c-quote-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border: 3px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: #fff;
      font-family: 'Playfair Display',serif; font-weight: 700;
      flex-shrink: 0; box-shadow: 0 0 0 6px rgba(200,165,53,0.15);
    }
    .c-quote-name { font-size: 1.1rem; color: #fff; font-weight: 700; margin-bottom: 3px; text-align: left; }
    .c-quote-role { color: var(--gold); font-size: 13px; font-weight: 500; text-align: left; }
    .c-quote-category { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 4px; display: flex; align-items: center; gap: 5px; }

    /* nav arrows */
    .c-quote-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff; font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s; z-index: 5;
    }
    .c-quote-arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }
    .c-quote-prev { left: -24px; }
    .c-quote-next { right: -24px; }

    /* dots */
    .c-quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
    .c-quote-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(255,255,255,0.2); border: none; cursor: pointer;
      transition: all 0.3s;
    }
    .c-quote-dot.active { background: var(--gold); transform: scale(1.4); }

    /* filter tabs */
    .quote-filter-tabs {
      display: flex; justify-content: center; gap: 8px;
      flex-wrap: wrap; margin-top: 40px;
    }
    .qt-tab {
      padding: 8px 20px; border-radius: 30px;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: transparent; color: rgba(255,255,255,0.65);
      font-size: 12.5px; font-weight: 600; cursor: pointer;
      font-family: 'DM Sans',sans-serif; transition: all 0.25s;
    }
    .qt-tab:hover, .qt-tab.active { background: var(--gold); border-color: var(--gold); color: #111; }

    /* auto-progress bar */
    .c-progress-bar {
      height: 3px; background: rgba(255,255,255,0.1);
      border-radius: 2px; margin-top: 28px; overflow: hidden;
    }
    .c-progress-fill {
      height: 100%; background: var(--gold);
      width: 0%; transition: width linear;
    }

    /* ---- MEMBERS QUOTES SLIDER ---- */
    .members-quotes-section {
      background: var(--off-white);
      padding: 80px 0;
      position: relative;
    }
    .mq-slider-outer { position: relative; }
    .mq-track { overflow: hidden; }
    .mq-slides { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
    .mq-slide { min-width: 33.333%; padding: 0 12px; }
    .mq-card {
      background: #fff;
      border-radius: 18px;
      padding: 32px 28px;
      border: 1px solid var(--light-gray);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      height: 100%; position: relative;
      transition: all 0.3s;
    }
    .mq-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .mq-card::before {
      content: '\201C';
      position: absolute; top: 16px; right: 22px;
      font-size: 80px; color: rgba(211,0,0,0.06);
      font-family: Georgia,serif; line-height: 1;
    }
    .mq-card-text {
      font-family: 'Playfair Display',serif;
      font-size: 1.05rem; font-style: italic;
      color: var(--text-mid); line-height: 1.8;
      margin-bottom: 24px; min-height: 120px;
    }
    .mq-card-person { display: flex; align-items: center; gap: 12px; }
    .mq-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-family: 'Playfair Display',serif; font-weight: 700;
      flex-shrink: 0; border: 2px solid #ffd0d0;
    }
    .mq-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; font-family: 'DM Sans',sans-serif; }
    .mq-role { font-size: 12px; color: var(--red); font-weight: 600; }
    .mq-lang { font-size: 11px; color: var(--text-light); margin-top: 2px; }
    .mq-cat-tag {
      display: inline-block; background: #fff0f0; color: var(--red);
      font-size: 10.5px; padding: 2px 9px; border-radius: 10px;
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
      margin-bottom: 14px;
    }

    .mq-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: #fff; border: 2px solid var(--light-gray);
      color: var(--red); font-size: 15px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.1); z-index: 5;
    }
    .mq-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
    .mq-prev { left: -22px; }
    .mq-next { right: -22px; }
    .mq-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
    .mq-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray); border: none; cursor: pointer; transition: all 0.3s; }
    .mq-dot.active { background: var(--red); transform: scale(1.3); }

    /* quote count badge */
    .quote-count-wrap {
      display: flex; justify-content: center; gap: 40px;
      margin: 0 0 60px;
      flex-wrap: wrap;
    }
    .quote-count-item { text-align: center; }
    .quote-count-num {
      font-family: 'Playfair Display',serif; font-size: 3rem; font-weight: 800;
      color: var(--gold); line-height: 1;
    }
    .quote-count-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

    /* All Quotes Grid */
    .all-quotes-section { padding: 80px 0; background: #fff; }
    .quotes-masonry {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 22px;
    }
    .aq-card {
      background: #fff; border-radius: 16px;
      padding: 28px 24px; border: 1px solid var(--light-gray);
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .aq-card:hover { border-color: var(--red); box-shadow: 0 6px 30px rgba(211,0,0,0.12); transform: translateY(-3px); }
    .aq-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--red);
      transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
    }
    .aq-card:hover::after { transform: scaleX(1); }
    .aq-mark { font-size: 50px; color: rgba(211,0,0,0.1); font-family: Georgia,serif; line-height: 0.8; margin-bottom: 12px; display: block; }
    .aq-text { font-family: 'Playfair Display',serif; font-size: 1rem; font-style: italic; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
    .aq-person { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--light-gray); }
    .aq-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--red-dark)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; font-family:'Playfair Display',serif; font-weight:700; flex-shrink:0; }
    .aq-name { font-size: 13px; font-weight: 700; color: var(--text-dark); font-family: 'DM Sans',sans-serif; }
    .aq-role { font-size: 11.5px; color: var(--red); font-weight: 600; }
    .aq-cat { position: absolute; top: 16px; right: 16px; background: #fff0f0; color: var(--red); font-size: 10px; padding: 3px 9px; border-radius: 10px; font-weight: 700; text-transform: uppercase; }

    /* ---- FILTER BUTTONS (Quote Collection) ---- */
    .filter-btn {
      padding: 8px 20px;
      border-radius: 30px;
      border: 2px solid var(--light-gray);
      background: #fff;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      color: var(--text-mid);
      font-family: 'DM Sans', sans-serif;
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }

    @media(max-width:1024px){
      .mq-slide{min-width:50%;}
      .quotes-masonry{grid-template-columns:repeat(2,1fr);}
    }
    @media(max-width:768px){
      .mq-slide{min-width:100%;}
      .quotes-masonry{grid-template-columns:1fr;}
      .c-quote-card{padding:28px 20px;}
      .c-quote-text{font-size:1.1rem;}
      .c-quote-prev{left:-8px;}
      .c-quote-next{right:-8px;}
      .c-quote-arrow{width:38px;height:38px;font-size:14px;}
      .c-quote-wrap{padding:0 32px;}
      .chairman-section{padding:60px 0 50px;}
      .quote-count-wrap{gap:24px;margin-bottom:40px;}
      .quote-count-num{font-size:2.2rem;}
      .members-quotes-section{padding:52px 0;}
      .mq-arrow{display:none;}
      .quote-filter-tabs{gap:6px;margin-top:24px;}
      .qt-tab{padding:6px 14px;font-size:11.5px;}
      .all-quotes-section{padding:52px 0;}
      .aq-card{padding:22px 18px;}
      .aq-text{font-size:0.95rem;}
    }
    @media(max-width:480px){
      .c-quote-wrap{padding:0 20px;}
      .c-quote-text{font-size:1rem;}
      .c-quote-avatar{width:60px;height:60px;font-size:1.4rem;}
      .c-quote-name{font-size:0.95rem;}
      .quote-filter-tabs{gap:5px;}
      .filter-btn{padding:6px 14px;font-size:12px;}
    }
  

/* ---- from video-gallery.html ---- */

    .featured-video-wrap {
      position: relative; border-radius: var(--radius-lg);
      overflow: hidden; margin-bottom: 50px;
      box-shadow: var(--shadow-lg); cursor: pointer;
    }
    .featured-video-thumb {
      width: 100%; height: 480px; object-fit: cover;
      display: block; transition: transform 0.5s;
    }
    .featured-video-wrap:hover .featured-video-thumb { transform: scale(1.02); }
    .featured-video-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 40px;
    }
    .featured-play {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(211,0,0,0.9);
      border: 4px solid rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 30px;
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      transition: all 0.35s; box-shadow: 0 0 0 0 rgba(211,0,0,0.4);
      animation: pulse-play 2.5s ease-in-out infinite;
    }
    @keyframes pulse-play {
      0%,100%{ box-shadow:0 0 0 0 rgba(211,0,0,0.4);}
      50%{ box-shadow:0 0 0 18px rgba(211,0,0,0);}
    }
    .featured-video-wrap:hover .featured-play { background: var(--red); transform: translate(-50%,-50%) scale(1.1); }
    .featured-video-label { background: var(--red); color:#fff; font-size:11px; font-weight:700; padding:5px 14px; border-radius:20px; letter-spacing:0.8px; text-transform:uppercase; width:fit-content; margin-bottom:10px; }
    .featured-video-title { color:#fff; font-size:1.8rem; line-height:1.3; margin-bottom:6px; }
    .featured-video-meta { color:rgba(255,255,255,0.75); font-size:13px; display:flex; gap:16px; align-items:center; }
    .featured-video-meta i { color:var(--gold); }
    .vid-duration-badge { background:rgba(0,0,0,0.7); color:#fff; font-size:13px; font-weight:700; padding:4px 10px; border-radius:4px; position:absolute; bottom:16px; right:16px; }

    .video-cats { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
    .vid-cat-btn { padding:8px 20px; border-radius:30px; border:2px solid var(--gray); background:#fff; font-size:13px; font-weight:600; cursor:pointer; transition:all 0.2s; color:var(--text-mid); font-family:'DM Sans',sans-serif; }
    .vid-cat-btn.active,.vid-cat-btn:hover { background:var(--red); color:#fff; border-color:var(--red); }

    .views-badge { display:flex; align-items:center; gap:4px; font-size:12px; color:var(--text-light); }
    .views-badge i { color:var(--red); font-size:10px; }

    .vid-playlist {
      background:#111; border-radius:var(--radius-lg);
      overflow:hidden; margin-top:50px;
    }
    .vid-playlist-header { background:var(--red); padding:18px 24px; display:flex; align-items:center; gap:12px; }
    .vid-playlist-header h3 { color:#fff; font-size:1.1rem; margin:0; }
    .vid-playlist-header span { color:rgba(255,255,255,0.7); font-size:13px; margin-left:auto; }
    .vid-playlist-item {
      display:flex; gap:14px; padding:14px 18px;
      border-bottom:1px solid rgba(255,255,255,0.06);
      cursor:pointer; transition:background 0.2s; align-items:center;
    }
    .vid-playlist-item:hover { background:rgba(255,255,255,0.05); }
    .vid-playlist-item.playing { background:rgba(211,0,0,0.15); border-left:3px solid var(--red); }
    .vid-playlist-thumb { width:80px; height:50px; object-fit:cover; border-radius:6px; flex-shrink:0; }
    .vid-playlist-info h5 { color:#ddd; font-size:13px; font-family:'DM Sans',sans-serif; font-weight:600; margin-bottom:4px; line-height:1.4; }
    .vid-playlist-info span { color:#888; font-size:11.5px; }
    .vid-playlist-dur { color:#888; font-size:12px; margin-left:auto; flex-shrink:0; }
    .vid-playlist-item.playing .vid-playlist-info h5 { color:#fff; }
    .playing-indicator { display:none; align-items:center; gap:3px; margin-right:4px; }
    .vid-playlist-item.playing .playing-indicator { display:flex; }
    .playing-bar { width:3px; background:var(--red); border-radius:2px; animation:bar-bounce 0.8s ease-in-out infinite alternate; }
    .playing-bar:nth-child(2){ animation-delay:0.15s; height:10px; }
    .playing-bar:nth-child(3){ animation-delay:0.3s; height:14px; }
    .playing-bar:nth-child(1){ height:8px; }
    @keyframes bar-bounce{ from{transform:scaleY(0.4)} to{transform:scaleY(1)} }
  

/* =============================================================
   SECTION 4: SUPPLEMENTAL (supplemental.css)
   ============================================================= */

/* supplemental.css
   Small set of classes referenced by the dynamic front-end that were not
   already defined in the original style.css / additions.css / pages.css
   (mostly booking popup + video grid thumbnail treatment + minor utility classes). */

.table-responsive { overflow-x: auto; }

.video-thumb-wrap { position: relative; border-radius: var(--radius-md, 10px); overflow: hidden; cursor: pointer; }
.video-thumb-wrap img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); color: #fff; font-size: 22px; transition: background .2s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.45); }
.video-card { cursor: pointer; }
.video-card-title { font-size: 14.5px; font-weight: 600; margin: 10px 0 4px; line-height: 1.4; }
.video-cat-tag { font-size: 11px; background: #fff0f0; color: var(--red); padding: 2px 10px; border-radius: 10px; font-weight: 600; }

.cat-pill {
    display: inline-block; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    background: var(--off-white); color: var(--text-mid); margin: 4px 6px 4px 0; text-decoration: none;
    border: 1px solid var(--light-gray);
}
.cat-pill.active, .cat-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }

.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 8px; }

.upload-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 24px; }
.upload-box { background: var(--off-white); border-radius: var(--radius-md, 10px); padding: 16px; }
.upload-box label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.upload-btn {
    background: #fff; border: 1px dashed var(--red); color: var(--red); padding: 8px 14px;
    border-radius: 8px; font-size: 13px; cursor: pointer; width: 100%;
}
.upload-status { font-size: 12px; margin-top: 8px; color: var(--text-light); word-break: break-all; }

.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.review-grid > div { display: flex; flex-direction: column; gap: 4px; }
.review-grid strong { font-size: 11px; text-transform: uppercase; color: var(--text-light); }
.review-grid span { font-size: 15px; font-weight: 600; }

.app-num {
    display: inline-block; font-size: 22px; font-weight: 800; color: var(--red);
    background: #fff0f0; padding: 12px 28px; border-radius: 10px; letter-spacing: 1px;
}

/* ---- Guide booking popup (Check Availability page) ---- */
.guide-booking-overlay {
    position: fixed; inset: 0; background: rgba(20,20,20,0.6); display: flex;
    align-items: center; justify-content: center; z-index: 3000; opacity: 0; pointer-events: none;
    transition: opacity .2s;
}
.guide-booking-overlay.open { opacity: 1; pointer-events: auto; }
.guide-booking-box {
    background: #fff; border-radius: var(--radius-lg, 14px); padding: 32px; width: 92%; max-width: 520px;
    max-height: 88vh; overflow-y: auto; position: relative;
}

/* ---- Video popup (Video Gallery page) ---- */
.video-popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex; align-items: center;
    justify-content: center; z-index: 3000; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.video-popup-overlay.open { opacity: 1; pointer-events: auto; }
.video-popup-box { width: 90%; max-width: 900px; position: relative; }
.video-popup-frame-wrap { position: relative; padding-top: 56.25%; }
.video-popup-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 10px; }
.video-popup-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

/* ===== NEWS TICKER ===== */
.news-ticker {
    background: #111;
    color: #fff;
    display: flex;
    align-items: stretch;
    height: 44px;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
    position: relative;
    z-index: 10;
}
.ticker-label {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-track-outer {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
}
.ticker-track {
    display: flex;
    align-items: center;
    animation: ticker-scroll 35s linear infinite;
    will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s;
}
.ticker-item:hover { color: var(--gold); }
.ticker-date {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    background: rgba(212,175,55,0.12);
    padding: 2px 7px;
    border-radius: 3px;
    white-space: nowrap;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .ticker-label { padding: 0 12px; font-size: 10px; }
    .ticker-item { font-size: 12px; padding: 0 18px; }
}
