/* =============================================
   OSLA – Oasis Ladies, Dharashiv
   Color palette derived from OSLA logo
   ============================================= */
:root {
  --primary:       #50b0b0;
  --primary-dark:  #3a8a8a;
  --primary-light: #7fcfcf;
  --primary-pale:  #e8f7f7;
  --accent:        #f08070;
  --accent-dark:   #d06050;
  --gold:          #f0c050;
  --gold-dark:     #c89e30;
  --dark:          #1e1e1e;
  --body-text:     #555555;
  --light-bg:      #f8fffe;
  --white:         #ffffff;
  --border:        #e0eeee;
  --nav-h:         72px;
  --top-h:         36px;
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto Slab', serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ---- Utilities ---- */
.section-pad   { padding: 80px 0; }
.bg-light-teal { background: var(--light-bg); }
.text-gold     { color: var(--gold) !important; }
.text-white-75 { color: rgba(255,255,255,0.85); }

.section-badge {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-badge.light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  color: var(--body-text);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
}

.body-text {
  font-family: 'Roboto', sans-serif;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 4px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 4px;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  border-radius: 4px;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
}

.btn-hero-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  transition: all .2s;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  transition: all .2s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-get-verified {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--white) !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
  transition: all .2s;
}
.btn-get-verified:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  height: var(--top-h);
  line-height: var(--top-h);
  overflow: hidden;
}
.top-bar a {
  color: rgba(255,255,255,0.9);
  transition: color .2s;
}
.top-bar a:hover { color: var(--gold); }
.top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 11px;
  margin-left: 4px;
  transition: background .2s;
}
.top-social:hover { background: var(--primary-light); }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(80,176,176,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
  height: var(--nav-h);
}
#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.navbar-brand { padding: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 1px;
}
.brand-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  color: var(--body-text);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 12px;
  transition: color .2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
}
.dropdown-item {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding: 8px 20px;
  color: var(--dark);
  transition: background .15s, color .15s;
}
.dropdown-item:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

/* =============================================
   HERO
   ============================================= */
.hero-swiper { width: 100%; }

.hero-slide {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58,136,136,0.72) 0%,
    rgba(30,30,30,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-prev, .hero-next {
  color: var(--white) !important;
  background: rgba(80,176,176,0.4);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: background .2s;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--primary) !important;
}
.hero-prev::after, .hero-next::after { font-size: 16px !important; }

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  width: 10px;
  height: 10px;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: var(--primary-pale);
  padding: 10px 14px;
  border-radius: 8px;
}
.about-feat i { color: var(--primary); font-size: 16px; }

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-wrap img { border-radius: 12px; }

.about-members-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  border: 2px solid var(--primary-pale);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.about-members-badge i { color: var(--primary); font-size: 24px; }
.about-members-badge strong { display: block; font-size: 1.4rem; color: var(--dark); line-height: 1; }
.about-members-badge small { font-family: 'Roboto', sans-serif; font-size: 12px; color: var(--body-text); }

/* =============================================
   OVS SECTION
   ============================================= */
.ovs-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a6060 100%);
}
.ovs-section .section-title { color: var(--white); }

.ovs-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding: 6px 0;
}
.ovs-benefit i { font-size: 16px; flex-shrink: 0; }

.ovs-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.ovs-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ovs-badge-label {
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.4rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ovs-logo { height: 60px; }
.ovs-card h4 { color: var(--dark); font-weight: 700; margin-bottom: 8px; }
.ovs-card p { font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--body-text); margin-bottom: 20px; }
.ovs-card-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  gap: 8px;
}
.ovs-stat strong { display: block; font-size: 1.6rem; color: var(--primary-dark); }
.ovs-stat span { font-family: 'Roboto', sans-serif; font-size: 12px; color: var(--body-text); }

/* =============================================
   PILLARS
   ============================================= */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(80,176,176,0.18);
}
.pillar-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pillar-card.featured h3, .pillar-card.featured p { color: var(--white); }
.pillar-card.featured .pillar-link { color: var(--gold); }

.pillar-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--primary);
}
.pillar-card.featured .pillar-icon-wrap {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.pillar-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}
.pillar-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: gap .2s;
}
.pillar-link:hover { color: var(--primary-dark); }

/* =============================================
   DIRECTORY
   ============================================= */
.dir-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-align: center;
  color: var(--dark);
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  min-height: 100px;
  transition: all .2s;
}
.dir-card i {
  font-size: 26px;
  color: var(--primary);
  transition: transform .2s;
}
.dir-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(80,176,176,0.25);
}
.dir-card:hover i { color: var(--white); transform: scale(1.15); }

/* =============================================
   STATISTICS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline;
  margin-left: 2px;
}
.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-swiper { padding-bottom: 50px !important; }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  margin: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; gap: 2px; display: flex; }
.testi-text {
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  color: var(--body-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 14px; color: var(--dark); }
.testi-author span { font-family: 'Roboto', sans-serif; font-size: 12px; color: var(--primary); }

.testi-pagination .swiper-pagination-bullet { background: var(--primary-light); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--primary); }

/* =============================================
   SUCCESS STORIES
   ============================================= */
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}
.story-img-wrap { position: relative; overflow: hidden; }
.story-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.story-card:hover .story-img-wrap img { transform: scale(1.05); }
.story-date-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
.story-body { padding: 20px; }
.story-body h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.story-body p { font-family: 'Roboto', sans-serif; font-size: 13.5px; color: var(--body-text); margin-bottom: 14px; line-height: 1.7; }
.story-link { font-family: 'Roboto', sans-serif; font-size: 13px; font-weight: 600; color: var(--primary); }
.story-link:hover { color: var(--primary-dark); }

/* =============================================
   EVENTS
   ============================================= */
.events-swiper { padding: 8px 4px 20px !important; }

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(80,176,176,0.2);
}
.event-img-wrap { position: relative; overflow: hidden; }
.event-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }

.event-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  padding: 6px 12px;
  line-height: 1.1;
}
.ev-day { display: block; font-size: 1.4rem; font-weight: 800; }
.ev-mon { display: block; font-family: 'Roboto', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

.event-body { padding: 18px; }
.event-body h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.event-body p { font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--body-text); margin-bottom: 14px; }

.events-prev, .events-next {
  color: var(--primary) !important;
  background: var(--white);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  top: 45% !important;
}
.events-prev::after, .events-next::after { font-size: 14px !important; font-weight: 800 !important; }

/* =============================================
   MEDIA COVERAGE
   ============================================= */
.media-logo-item {
  padding: 14px 24px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #888;
  transition: all .2s;
  letter-spacing: 0.5px;
}
.media-logo-item:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-pale);
}

/* =============================================
   JOIN COMMUNITY SECTION
   ============================================= */
.community-section {
  background: linear-gradient(135deg, #0f3535 0%, var(--primary-dark) 100%);
}
.community-section .section-title { color: var(--white); }

.comm-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  transition: all .2s;
  text-decoration: none;
}
.comm-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); transform: translateX(4px); }
.comm-btn i:first-child { font-size: 24px; width: 32px; text-align: center; flex-shrink: 0; }
.comm-btn div strong { display: block; font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 600; }
.comm-btn div small { color: rgba(255,255,255,0.65); font-family: 'Roboto', sans-serif; font-size: 12px; }
.comm-wa i:first-child { color: #25D366; }
.comm-fb i:first-child { color: #1877f2; }
.comm-ig i:first-child { color: #e1306c; }

.community-visual { display: flex; justify-content: center; }
.community-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.cc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.cc-head strong { display: block; font-size: 14px; color: var(--dark); }
.cc-head small { color: var(--body-text); font-family: 'Roboto', sans-serif; font-size: 12px; }
.cc-members { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.cc-members img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); }
.cc-more {
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.cc-text { font-family: 'Roboto', sans-serif; font-size: 13.5px; color: var(--body-text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }

/* =============================================
   CONTACT TEAM SECTION
   ============================================= */
.cteam-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: all .25s;
}
.cteam-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(80,176,176,0.15);
  transform: translateY(-4px);
}
.cteam-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
}
.cteam-card h6 { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cteam-card p { font-family: 'Roboto', sans-serif; font-size: 12.5px; color: var(--body-text); margin-bottom: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0f2f2f; }

.footer-main { border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-brand-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

.footer-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-list a {
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.footer-list a:hover { color: var(--primary-light); }

.footer-contacts p {
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts a { color: rgba(255,255,255,0.8); }
.footer-contacts a:hover { color: var(--primary-light); }
.footer-contacts i { width: 16px; }

.newsletter-form .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 4px 0 0 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { box-shadow: none; border-color: var(--primary); background: rgba(255,255,255,0.12); }

.social-row { display: flex; gap: 8px; }
.soc-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all .2s;
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-bottom {
  background: #0a2020;
  padding: 16px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .hero-slide { height: 480px; }
  .section-pad { padding: 60px 0; }
  .about-members-badge { right: 10px; }
  .top-bar-left { display: none; }
}

@media (max-width: 767.98px) {
  .hero-slide { height: 400px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .stats-section { padding: 50px 0; }
  .stat-number { font-size: 2.4rem; }
  .top-bar { display: none; }
  .about-members-badge { display: none; }
}

@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: auto; }
  .dir-card { min-height: 90px; font-size: 11.5px; }
  .dir-card i { font-size: 22px; }
}
