/* =============================================
   SOAA - Sindh Outdoor Advertisers Association
   Premium Authority Website Stylesheet
   ============================================= */

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

:root {
  --primary: #0A2540;
  --primary-light: #122f50;
  --accent: #C9A14A;
  --accent-light: #e0b85a;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --light-gray: #EEF0F4;
  --mid-gray: #8A9BB0;
  --dark-gray: #4A5568;
  --text: #1A2B40;
  --shadow: 0 4px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 12px 48px rgba(10, 37, 64, 0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

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

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 600px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 18px 0 26px;
  border-radius: 2px;
}

.divider.center {
  margin: 18px auto 26px;
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 161, 74, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ─── Navbar ─────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
}

#navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 30px rgba(10, 37, 64, 0.25);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.nav-logo-tagline {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 12px 30px;
  width: 100%;
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ─── Hero ─────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #071d33 0%, #0A2540 50%, #0e2e4d 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 161, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 161, 74, 0.06) 0%, transparent 40%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.hero-geo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.12);
  pointer-events: none;
}

.hero-geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.08);
}

.hero-geo::after {
  content: '';
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 161, 74, 0.15);
  border: 1px solid rgba(201, 161, 74, 0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title .gold {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── Stats Bar ─────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--accent);
}

.stat-item-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ─── About Preview ─────────────────────── */
.about-preview {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.4));
}

.about-img-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.about-img-quote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-img-attr {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-lg);
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}

.value-card p {
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ─── Membership Benefits ─────────────── */
.membership-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 37, 64, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ─── Leadership Cards ─────────────────── */
.leadership-section {
  background: var(--off-white);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.leader-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
}

.leader-info {
  padding: 20px;
}

.leader-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-bio {
  font-size: 13px;
  color: var(--dark-gray);
  margin-top: 10px;
  line-height: 1.6;
}

/* ─── Events ─────────────────────────── */
.events-section {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.event-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.event-banner {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-banner-icon {
  font-size: 56px;
  opacity: 0.2;
  position: absolute;
}

.event-date-badge {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.event-date-badge .day {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.event-date-badge .month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.event-desc {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
  flex: 1;
}

.event-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--mid-gray);
}

/* ─── News ─────────────────────────────── */
.news-section {
  background: var(--off-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.15);
}

.news-body {
  padding: 24px;
}

.news-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.news-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-date {
  font-size: 12px;
  color: var(--mid-gray);
}

/* ─── CTA Banner ─────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #071d33 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201, 161, 74, 0.12), transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────── */
footer {
  background: #071d33;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item span:first-child {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Page Hero ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #071d33 0%, #0A2540 100%);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 161, 74, 0.08), transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}

/* ─── Members Directory ─────────────── */
.members-section {
  background: var(--off-white);
  padding: 70px 0;
}

.search-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.search-input:focus {
  border-color: var(--accent);
}

.filter-select {
  padding: 14px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  border-color: var(--accent);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.member-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.member-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.member-company {
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.member-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201, 161, 74, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── Membership Plans ─────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.plan-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--light-gray);
  position: relative;
  transition: var(--transition);
}

.plan-card.featured {
  background: var(--primary);
  border-color: var(--accent);
  color: var(--white);
}

.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured .plan-feature {
  color: var(--white);
}

.plan-card.featured .plan-name {
  color: var(--accent);
}

.plan-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid-gray);
}

.plan-desc {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.65);
}

.plan-features {
  margin-bottom: 32px;
}

.plan-feature {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.plan-feature-check {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Contact ─────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--light-gray);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 14px;
  margin-top: 24px;
  border: 2px dashed var(--mid-gray);
  flex-direction: column;
  gap: 10px;
}

/* ─── Forms ─────────────────────────── */
.form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-gray);
}

.form-title {
  font-size: 24px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-success {
  background: #f0fff4;
  border: 1px solid #68d391;
  border-radius: 8px;
  padding: 16px 20px;
  color: #276749;
  font-size: 14px;
  font-weight: 600;
  display: none;
  margin-top: 16px;
}

/* ─── Scroll Animations ─────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Responsive ─────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 60px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* === SOAA requested theme/logo/header/slider updates === */
:root {
  --primary: #2F398A;
  --primary-light: #349DCA;
  --accent: #349DCA;
  --accent-light: #5ab5df;
  --text: #000000;
  --shadow: 0 4px 24px rgba(47, 57, 138, 0.10);
  --shadow-lg: 0 12px 48px rgba(47, 57, 138, 0.16);
}

#navbar {
  background: rgba(47, 57, 138, 0.96);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .12)
}

#navbar.scrolled {
  background: #2F398A;
  box-shadow: 0 2px 30px rgba(47, 57, 138, .28)
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.footer-logo-img {
  max-width: 170px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 18px
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition)
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu li {
  display: block
}

.dropdown-menu a {
  display: block;
  color: var(--primary) !important;
  padding: 10px 12px
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--accent) !important
}

.nav-links a.active {
  color: #fff;
  background: rgba(52, 157, 202, .28)
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 10s infinite
}

.hero-slide:nth-child(1) {
  animation-delay: 0s
}

.hero-slide:nth-child(2) {
  animation-delay: 5s
}

.hero-slider:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(356deg, rgba(47, 57, 138, .5), rgba(47, 57, 138, .5), rgba(0, 0, 0, .70))
}

@keyframes heroFade {

  0%,
  45% {
    opacity: 1
  }

  50%,
  95% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.hero-bg-pattern,
.hero-geo {
  z-index: 1
}

.hero-content {
  z-index: 2
}

.btn-primary {
  background: #349DCA;
  color: #fff;
  border-color: #349DCA
}

.btn-primary:hover {
  background: #2F398A;
  border-color: #2F398A;
  color: #fff
}

.section-title span,
.hero-title .gold {
  color: #349DCA
}

.stats-bar,
footer {
  background: #2F398A
}

.stat-item-num,
.hero-stat-num,
.section-label,
.footer-col h4,
.about-img-attr {
  color: #349DCA
}

.divider,
.benefit-card::before {
  background: #349DCA
}

.value-card {
  border-left-color: #349DCA
}

.page-hero {
  background: linear-gradient(135deg, #2F398A 0%, #349DCA 100%)
}

 .vision-mission-large {
  display: grid;
  grid-template-columns: 1fr 1fr; /* side by side */
  gap: 36px;
}

.vision-mission-large > div {
  padding: 60px 48px !important;
}

.vision-mission-large .section-title {
  font-size: clamp(34px, 5vw, 56px) !important;
}

.vision-mission-large p {
  font-size: 18px !important;
}

.leadership-message-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px
}

.message-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 4px solid #349DCA
}

.message-card h3 {
  font-size: 22px;
  margin-bottom: 18px
}

.message-card p,
.message-card li {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 10px
}

.message-card ol {
  padding-left: 20px
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px
}

.gallery-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--light-gray)
}

.gallery-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #2F398A, #349DCA);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700
}

.gallery-card h4 {
  font-size: 16px;
  margin-bottom: 4px
}

.gallery-card p {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow)
}

@media(max-width:900px) {
  .nav-logo-img {
    height: 54px
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

   .vision-mission-large {
    grid-template-columns: 1fr;
  }
}


.message-slider {
  max-width: 900px;
  margin: auto;
  background: var(--white);
  padding: 20px 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  cursor: grab;
}

.message-slider:active {
  cursor: grabbing;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
}

.slide {
  min-width: 100%;
  flex: 0 0 100%;
  text-align: center;
}

.quote, .desc {
  max-width: 700px;
  margin: auto;
}

.quote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.desc {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.author {
  margin-top: 20px;
  font-weight: 700;
}

.author span {
  display: block;
  font-size: 13px;
  color: var(--accent);
}

/* Mobile */
@media (max-width: 768px) {
  .message-slider {
    padding: 30px 20px;
  }
  .quote {
    font-size: 16px;
  }
}

 /* SECTION */
.section {
  padding: 70px 20px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  color: var(--primary);
}

/* member-benefits-cardS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.member-benefits-card {
  background: #fff;
  padding: 25px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.member-benefits-card:hover {
  transform: translateY(-5px);
}

.member-benefits-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.member-benefits-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* LIST */
.list {
  margin-top: 15px;
}

.list li {
  margin-bottom: 8px;
}

/* ===== TABLE STYLING ===== */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* Header */
.table thead {
  background: #2578bb;
  color: #fff;
}

.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* Row numbers center */
.table th:first-child,
.table td:first-child {
  text-align: center;
  width: 60px;
}

/* Hover effect */
.table-hover tbody tr:hover {
  background-color: #f5f9ff;
  transition: 0.3s;
}

/* Zebra rows */
.table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Section headings */
.leadership-section h3 {
  margin-bottom: 10px;
  color: #2e73b6;
}

/* Responsive table */
@media (max-width: 768px) {
  .table thead {
    display: none;
  }

  .table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }

  .table td {
    display: block;
    text-align: right;
    padding: 10px;
    position: relative;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    text-align: left;
    font-weight: bold;
  }
}

  /* <!-- Download Forms --> */

.footer-subheading {
  margin: 10px 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #fff; /* adjust according to your footer theme */
}

.footer-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subheading {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* Button Style */
.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover Effect */
.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #0b5ed7, #084298);
}

/* Click Effect */
.footer-btn:active {
  transform: scale(0.97);
}

/* ─── Member Directory: Excel Data Layout ─────────────── */
.member-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.member-card .member-avatar {
  flex: 0 0 60px;
  margin-bottom: 0;
}

.member-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-info-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--mid-gray);
  word-break: break-word;
}

.member-info-row strong {
  color: var(--dark-gray);
}

.member-info-icon {
  flex: 0 0 18px;
}

.members-grid {
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}
