/*
Theme Name: Kings of Swing
Theme URI: https://kingsofswing.co.za
Author: Gareth du Toit
Description: Custom lightweight theme for the Kings of Swing golf club with 2026 CSI Projects.
Version: 2.1.0
License: Proprietary
Text Domain: kos-theme
*/

:root {
  /* LIGHT THEME */
  --bg-page: #f5f0e8;
  --bg-card: #ffffff;
  --text-main: #1a3d2b;
  --text-muted: #5a7c6f;

  /* Original Brand Accents */
  --green-dark: #0f2d1e;
  --green-mid: #1a3d2b;
  --green-light: #2a5c3f;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 4px 6px rgba(15, 45, 30, 0.05);
  --shadow-md: 0 10px 20px rgba(15, 45, 30, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 45, 30, 0.12);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #b8973b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-container img {
  height: 55px;
  transition: var(--transition);
  border-radius: 4px;
  filter: brightness(0) invert(1); /* Make white for transparent hero */
}

.logo-container span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header.scrolled .logo-container img {
  filter: brightness(1) invert(0); /* Revert to original colors with smooth transition interpolation */
}

header.scrolled .logo-container span {
  color: var(--green-dark);
  text-shadow: none;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header.scrolled nav ul li a {
  color: var(--text-main);
  text-shadow: none;
}

nav ul li a:hover {
  color: var(--gold);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-image: url('https://kosgolfclub.co.za/wp-content/uploads/2026/05/hero_golf_course_1778770896588.jpg');
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 45, 30, 0.4), rgba(15, 45, 30, 0.8));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--gold);
}

.hero-content p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.about-strip {
  background: var(--bg-card);
  padding: 4rem 0;
  border-bottom: 2px solid var(--gold-light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  text-align: center;
}

.about-item .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.about-item h3 {
  margin-bottom: 0.5rem;
}

section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-page);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
}

.progress-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.see-all {
  display: block;
  text-align: center;
  margin-top: 3rem;
  font-weight: 600;
  color: var(--green-dark);
}

.see-all:hover {
  color: var(--gold);
}

.bg-alt {
  background-color: #ffffff;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.member-avatar {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.member-card:hover .member-avatar {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.cta-strip {
  background: linear-gradient(135deg, var(--gold), #a88836);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
}

.cta-strip .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-strip .btn-outline:hover {
  background: #fff;
  color: var(--gold);
}

.banking-details {
  margin-top: 3rem;
  font-family: monospace;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
}

footer {
  background: var(--green-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
}

footer h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #aaa;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  nav ul { display: none; }
  .hero-buttons { flex-direction: column; }
}

/* Inner Page Hero */
.page-hero {
  height: 40vh;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(15, 45, 30, 0.6), rgba(15, 45, 30, 0.9));
  z-index: 2;
}
.page-hero .hero-content { padding-top: 60px; z-index: 10; position: relative; }
.page-hero h1 { color: var(--gold); }
.page-hero p { font-size: 1.25rem; font-style: italic; color: var(--cream); }

/* Generic Content Area (for WP Editor) */
.generic-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.generic-content p { margin-bottom: 1.5rem; }
.generic-content h2 { margin-top: 3rem; margin-bottom: 1rem; color: var(--green-dark); font-family: var(--font-head); }
.generic-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; color: var(--green-mid); font-family: var(--font-head); }
.generic-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 2rem 0; }
.generic-content ul, .generic-content ol { margin-bottom: 1.5rem; padding-left: 2rem; }
.generic-content li { margin-bottom: 0.5rem; }

/* Event Card Actions */
.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 45, 30, 0.7); /* Greenish dark overlay */
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.modal-content {
  background-color: var(--bg-card);
  margin: 2% auto;
  padding: 2.5rem;
  border-radius: var(--radius);
  max-width: 1250px;
  width: 95%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-light);
  position: relative;
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--gold);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.0fr;
  gap: 2.5rem;
  align-items: start;
}

/* Past event modal layout with highlights video */
#event-modal.has-video .modal-content {
  max-width: 1400px;
}
#event-modal.has-video .modal-grid {
  grid-template-columns: 1.2fr 1.2fr;
  gap: 2.5rem;
}
#event-modal.has-video .modal-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem;
  background: rgba(15, 45, 30, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  overflow: visible;
}
#event-modal.has-video .modal-image-container::after {
  display: none !important; /* Hide zoom indicator on video highlights */
}
#event-modal.has-video .modal-image-container .video-title {
  width: 100%;
  text-align: center;
  font-size: 1.35rem;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
#event-modal.has-video .modal-image-container .video-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  overflow: hidden;
}
#event-modal.has-video .modal-carousel {
  aspect-ratio: 16/10;
  margin-top: 1.5rem;
}

.modal-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}

.modal-image-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.modal-image-container img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: contain;
  border-radius: var(--radius);
  transition: var(--transition);
  display: block;
}

.modal-image-container img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-md);
  filter: brightness(0.95);
}

.modal-image-container::after {
  content: '🔍 Click to open full size';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 45, 30, 0.85);
  color: var(--gold-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.modal-image-container:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal-text-container h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.modal-text-container div {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* Structured CSI Details Layout */
.modal-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.modal-section-title {
  font-size: 1.2rem;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0.3rem;
  margin-top: 0.5rem;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-item {
  background-color: rgba(15, 45, 30, 0.03);
  border: 1px solid rgba(15, 45, 30, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition);
}

.info-item:hover {
  background-color: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.info-value {
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 700;
}

.modal-cta-box {
  background: linear-gradient(135deg, var(--green-dark), #1a3d2b);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
  margin-top: 0.5rem;
}

.modal-cta-box h5 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.modal-cta-box p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.banking-details-modal {
  font-family: monospace;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.modal-cta-box.completed {
  background: linear-gradient(135deg, #1b4d32, #2e6f4a);
  border-left-color: #55c57a;
}

.modal-cta-box.completed h5 {
  color: #fff;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .modal-content {
    padding: 1.5rem;
    margin: 10% auto;
  }
}

/* Carousel & Video Section */
.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 3/2;
}
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 45, 30, 0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--gold);
}
.carousel-prev { left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.carousel-next { right: 0; border-radius: var(--radius) 0 0 var(--radius); }
.carousel-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 45, 30, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

/* Scrollable modal content & event photo grid styles */
.scrollable-content {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.8rem;
}

/* Custom scrollbar for scrollable modal content */
.scrollable-content::-webkit-scrollbar {
  width: 6px;
}
.scrollable-content::-webkit-scrollbar-track {
  background: rgba(15, 45, 30, 0.05);
  border-radius: 10px;
}
.scrollable-content::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.4);
  border-radius: 10px;
}
.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.7);
}

/* Modal image carousel styling */
.modal-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}

.modal-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.modal-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-carousel-prev,
.modal-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 45, 30, 0.7);
  color: white;
  border: none;
  font-size: 1.25rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border-radius: 4px;
}

.modal-carousel-prev:hover,
.modal-carousel-next:hover {
  background: var(--gold);
}

.modal-carousel-prev {
  left: 0.5rem;
}

.modal-carousel-next {
  right: 0.5rem;
}

.modal-carousel-counter {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 45, 30, 0.8);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.modal-actions-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.modal-actions-box .btn {
  width: 100%;
  text-shadow: none;
}

/* About Page Video Grid */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.about-hero-text h2 {
  margin-bottom: 1.5rem;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
}
.about-hero-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}
.about-hero-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 45, 30, 0.15);
}
.about-hero-video video {
  width: 100%;
  display: block;
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .about-hero-video {
    order: -1;
  }
}

/* Mission & Values Grid Layout */
.about-mission-values-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.descriptive-video-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}
.descriptive-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 45, 30, 0.15);
}
.descriptive-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 992px) {
  .about-mission-values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   CSI 2026 Initiatives Styling
   ========================================================================== */

/* 2026 Strategy Theme Banner */
.csi-strategy-banner {
  background: linear-gradient(135deg, var(--green-dark), #16432b);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: #fff;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.csi-strategy-banner::after {
  content: '2026';
  position: absolute;
  right: -15px;
  bottom: -25px;
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  pointer-events: none;
  line-height: 1;
}
.csi-strategy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.csi-strategy-header .crown-icon {
  font-size: 2rem;
}
.csi-strategy-header h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 0;
}
.csi-strategy-banner p.csi-strategy-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cream);
  max-width: 950px;
  margin-bottom: 2rem;
}

/* 4 Pillars Summary Grid */
.csi-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}
.csi-pillar-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.csi-pillar-card:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.csi-pillar-card .pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.csi-pillar-card h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.csi-pillar-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 0;
}

/* CSI Filter Tabs */
.csi-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.csi-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 45, 30, 0.15);
  background: #fff;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.csi-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.csi-filter-btn.active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

/* Status Badges */
.badge-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.badge-quarter {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(15, 45, 30, 0.08);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
}
.badge-status.completed {
  background: rgba(39, 110, 68, 0.15);
  color: #1b5e35;
  border: 1px solid rgba(39, 110, 68, 0.35);
}
.badge-status.active {
  background: rgba(201, 168, 76, 0.2);
  color: #967117;
  border: 1px solid rgba(201, 168, 76, 0.5);
}
.badge-status.upcoming {
  background: rgba(15, 45, 30, 0.08);
  color: var(--green-dark);
  border: 1px solid rgba(15, 45, 30, 0.25);
}
.badge-status.partner {
  background: rgba(80, 90, 110, 0.12);
  color: #3b4a58;
  border: 1px solid rgba(80, 90, 110, 0.3);
}

/* Stat Highlight in Cards */
.card-stat-pill {
  background: rgba(201, 168, 76, 0.1);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0.8rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
}