/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --saffron: #E8832A;
  --deep-saffron: #C4611A;
  --gold: #D4A017;
  --forest: #2D5016;
  --sage: #4A7C2F;
  --mint: #8FBF6A;
  --cream: #FDF6EC;
  --warm-white: #FFFBF5;
  --charcoal: #1C1C1C;
  --mid: #5A5A5A;
  --light-border: rgba(232, 131, 42, 0.2);
}

/* ============================================
   BASE
============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.py-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-cream {
  background-color: var(--cream) !important;
}

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.section-h2 em {
  font-style: normal;
  color: var(--saffron);
}

.section-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-gsd-solid {
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s;
}

.btn-gsd-solid:hover {
  opacity: 0.85;
  color: #fff;
}

.btn-gsd-outline {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
}

.btn-gsd-outline:hover {
  background: var(--saffron);
  color: #fff;
}

/* ============================================
   NAVBAR
============================================ */
.gsd-navbar {
  height: 72px;
  background: rgba(255, 251, 245, 0.97) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light-border);
  padding: 0 !important;
}

.gsd-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-icon.small {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--saffron);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text.small {
  font-size: 15px;
}

/* Desktop nav links */
.gsd-link {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  padding: 8px 13px !important;
  border-radius: 8px;
  transition: all 0.2s !important;
}

.gsd-link:hover,
.gsd-link.active {
  color: var(--saffron) !important;
  background: rgba(232, 131, 42, 0.07) !important;
}

/* Dropdown */
.gsd-dropdown {
  border-radius: 14px !important;
  border: 1px solid var(--light-border) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
  padding: 8px !important;
  min-width: 220px !important;
  margin-top: 8px !important;
}

.gsd-dd-item {
  border-radius: 8px !important;
  padding: 9px 14px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  transition: all 0.15s !important;
}

.gsd-dd-item:hover {
  background: rgba(232, 131, 42, 0.08) !important;
  color: var(--saffron) !important;
}

.gsd-dd-item i {
  color: var(--saffron);
}

.gsd-divider {
  background: var(--light-border) !important;
  margin: 6px 0 !important;
}

/* Hamburger button */
.gsd-toggler {
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  box-shadow: none !important;
}

.gsd-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.gsd-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.gsd-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.gsd-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Offcanvas */
.gsd-offcanvas {
  width: 320px !important;
  max-width: 90vw;
}

.gsd-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-link {
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s;
}

.mob-link:hover {
  background: rgba(232, 131, 42, 0.07);
  color: var(--saffron);
}

.mob-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  border: none;
  transition: all 0.15s;
  cursor: pointer;
}

.mob-acc-btn:hover {
  background: rgba(232, 131, 42, 0.07);
  color: var(--saffron);
}

.mob-acc-btn .acc-icon {
  font-size: 12px;
  transition: transform 0.25s;
}

.mob-acc-btn[aria-expanded="true"] .acc-icon {
  transform: rotate(180deg);
}

.mob-sub {
  padding: 4px 0 4px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mob-sub a {
  display: block;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  color: var(--mid);
  transition: all 0.15s;
}

.mob-sub a:hover {
  color: var(--saffron);
  background: rgba(232, 131, 42, 0.05);
}

/* ============================================
   OWL CAROUSEL GLOBAL CUSTOM ARROWS
============================================ */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid var(--light-border) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: var(--saffron) !important;
  border-color: var(--saffron) !important;
}

.owl-nav button.owl-prev span,
.owl-nav button.owl-next span {
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1;
  margin-top: -2px;
}

.owl-nav button:hover span {
  color: #fff;
}

.owl-nav .owl-prev {
  left: -23px;
}

.owl-nav .owl-next {
  right: -23px;
}

.owl-dots {
  text-align: center;
  margin-top: 28px;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #ddd;
  margin: 0 4px;
  transition: all 0.3s;
  display: block;
}

.owl-dots .owl-dot.active span {
  width: 28px;
  background: var(--saffron);
}

/* ============================================
   HERO CAROUSEL
============================================ */
.hero-wrap {
  position: relative;
}

.hero-owl .owl-nav .owl-prev {
  left: 20px;
}

.hero-owl .owl-nav .owl-next {
  right: 20px;
}

.hero-owl .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}

.hero-slide {
  min-height: calc(100vh - 72px);
  background: var(--warm-white);
  position: relative;
}

.hero-slide .container-xxl {
  height: calc(100vh - 72px);
}

.hero-left {
  padding: 72px 56px 72px 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 131, 42, 0.12);
  border: 1px solid rgba(232, 131, 42, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  color: var(--deep-saffron);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  color: var(--saffron);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--saffron);
}

.hero-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 32px;
}

.hero-stats {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--light-border);
}

.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--saffron);
  margin-bottom: 2px;
}

.hero-stat p {
  font-size: 11px;
  color: var(--mid);
  margin: 0;
}

/* Hero right panel */
.hero-right {
  overflow: hidden;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-img-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-img-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--saffron);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-img-badge span {
  font-size: 11px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  right: 24px;
}

.fc-top {
  top: 80px;
  animation: float 3s ease-in-out infinite;
}

.fc-bot {
  bottom: 130px;
  animation: float 3s ease-in-out infinite 1s;
}

.fc-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.floating-card div strong {
  display: block;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 600;
}

.floating-card div span {
  font-size: 11px;
  color: var(--mid);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   PILLARS SECTION
============================================ */
.pillars-section {
  background: var(--forest);
}

.pillar-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 44px 36px;
  transition: background 0.3s;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pillar-icon-wrap {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(232, 131, 42, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--saffron);
}

.pillar-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pillar-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   ABOUT
============================================ */
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-accent-badge {
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: var(--saffron);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232, 131, 42, 0.4);
}

.about-accent-badge strong {
  display: block;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

.about-accent-badge span {
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.about-list li i {
  color: var(--saffron);
  font-size: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ============================================
   STATS BAND
============================================ */
.stats-band {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '🐄';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  opacity: 0.08;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-num sup {
  font-size: 0.45em;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-top: 8px;
}

/* ============================================
   SERVICES / WHAT WE DO
============================================ */
.service-card {
  border: 1.5px solid var(--light-border);
  border-radius: 20px;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(232, 131, 42, 0.12);
  transform: translateY(-4px);
  border-color: rgba(232, 131, 42, 0.4);
}

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

.service-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 9px;
}

.service-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
}

.service-link:hover {
  color: var(--deep-saffron);
}

/* ============================================
   CAMPAIGNS CAROUSEL
============================================ */
.campaigns-owl .owl-nav .owl-prev { left: -23px; }
.campaigns-owl .owl-nav .owl-next { right: -23px; }

.campaign-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 8px 12px 24px;
  transition: transform 0.3s;
}

.campaign-card:hover {
  transform: translateY(-4px);
}

.campaign-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.campaign-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.campaign-card:hover .campaign-img-wrap img {
  transform: scale(1.06);
}

.campaign-tag-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--saffron);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.campaign-body {
  padding: 22px;
}

.campaign-body h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 7px;
}

.campaign-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

.gsd-progress {
  height: 6px;
  border-radius: 100px;
  background: #eee;
}

.gsd-progress .progress-bar {
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 100px;
}

.btn-donate {
  border-radius: 100px;
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 10px;
  transition: background 0.2s;
}

.btn-donate:hover {
  background: var(--saffron);
  color: #fff;
}

/* ============================================
   TESTIMONIALS CAROUSEL
============================================ */
.testi-owl .owl-nav .owl-prev { left: -23px; }
.testi-owl .owl-nav .owl-next { right: -23px; }

.testi-card {
  border: 1.5px solid var(--light-border);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  margin: 8px 12px 24px;
  position: relative;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--saffron);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 18px;
  left: 28px;
}

.testi-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, #ffcc80, #ff9800); }
.av2 { background: linear-gradient(135deg, #a5d6a7, #4caf50); }
.av3 { background: linear-gradient(135deg, #90caf9, #2196f3); }
.av4 { background: linear-gradient(135deg, #f48fb1, #e91e63); }
.av5 { background: linear-gradient(135deg, #ffe082, #ffc107); }
.av6 { background: linear-gradient(135deg, #80cbc4, #009688); }

.stars {
  color: var(--gold);
  font-size: 13px;
}

/* ============================================
   MEDIA LOGOS CAROUSEL
============================================ */
.media-owl .owl-nav { display: none; }

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--mid);
  letter-spacing: 1px;
  background: #fff;
  min-height: 68px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.media-logo:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  box-shadow: 0 4px 20px rgba(232, 131, 42, 0.12);
}

/* ============================================
   PHOTO GALLERY
============================================ */
.btn.gallery-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: #fff;
  transition: all 0.2s;
}

.btn.gallery-tab:hover,
.btn.gallery-tab.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.gallery-item {
  overflow: hidden;
}

.gallery-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-thumb:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-radius: 16px;
}

.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* Lightbox modal dark bg */
#lightboxModal .modal-dialog {
  max-width: 92vw;
}

#lightboxModal .modal-content {
  background: transparent;
  border: none;
}

/* ============================================
   VIDEO SECTION
============================================ */
.videos-owl .owl-nav .owl-prev { left: -23px; }
.videos-owl .owl-nav .owl-next { right: -23px; }

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin: 8px 12px 24px;
  transition: transform 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  padding-left: 4px;
}

.video-card:hover .play-btn {
  background: var(--saffron);
  color: #fff;
  transform: scale(1.1);
}

.video-dur {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.video-body {
  padding: 18px 20px;
}

.video-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232, 131, 42, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.video-body h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.4;
}

.video-body p {
  font-size: 12px;
  color: var(--mid);
  margin: 0;
  line-height: 1.5;
}

/* Video modal */
#videoModal .modal-content {
  background: transparent;
  border: none;
}

#videoModal .modal-dialog {
  max-width: 92vw;
}

/* ============================================
   BLOG CAROUSEL
============================================ */
.blog-owl .owl-nav .owl-prev { left: -23px; }
.blog-owl .owl-nav .owl-next { right: -23px; }

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--light-border);
  margin: 8px 12px 24px;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-body {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 9px;
  flex-wrap: wrap;
}

.blog-body h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 7px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
  color: var(--deep-saffron);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '🐄';
  position: absolute;
  right: 400px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  opacity: 0.07;
  pointer-events: none;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
}

.btn-cta-white {
  padding: 13px 28px;
  border-radius: 100px;
  background: #fff;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: opacity 0.2s;
}

.btn-cta-white:hover {
  opacity: 0.9;
  color: var(--forest);
}

.btn-cta-outline {
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ============================================
   FOOTER
============================================ */
.gsd-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--saffron);
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.2s;
}

.social-btn:hover {
  background: var(--saffron);
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
  .hero-left {
    padding: 48px 24px 60px;
  }

  .hero-h1 {
    font-size: clamp(30px, 6vw, 42px);
  }

  .about-accent-badge {
    right: 0;
    bottom: -20px;
  }

  .pillar-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none !important;
  }

  .pillar-item:last-child {
    border-bottom: none;
  }

  .cta-section::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .py-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-stats {
    margin-top: 28px;
    padding-top: 20px;
  }

  .stats-band::before {
    display: none;
  }

  .cta-section {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .gsd-footer {
    padding: 48px 0 24px;
  }
}
