/* =========================================================
   HOME.CSS (LIGHT THEME) — HOME / INDEX ONLY
   - Light premium UI
   - Soft, close colors (not too many)
   - Video hero readable overlay
   - About section (new content + placeholders + leadership)
   - Pillars slider (Vision/Mission/Values) horizontal
   - Brand videos grid + modal
   - Instagram placeholders
   - Footer
========================================================= */


/* =========================================================
   1) THEME VARIABLES (LIGHT)
========================================================= */
:root{
  --bg: #f8f9fa;
  --bg2: #f3f4f6;        /* subtle section contrast */
  --card: rgba(255,255,255,.92);
  --card2: rgba(255,255,255,.75);
  --border: rgba(15,23,42,.12);
  --border2: rgba(15,23,42,.16);
  --text: rgba(15,23,42,.92);
  --muted: rgba(15,23,42,.65);

  /* soft accents (close, not too many) */
  --a1:#7c3aed;  /* purple */
  --a2:#06b6d4;  /* cyan */
  --a3:#ec4899;  /* pink */
  --a4:#f97316;  /* orange */
}


/* =========================================================
   2) GLOBAL RESET + BASE
========================================================= */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 18% 8%, rgba(124,58,237,.12), transparent 60%),
    radial-gradient(850px 520px at 85% 16%, rgba(236,72,153,.10), transparent 62%),
    radial-gradient(900px 520px at 55% 92%, rgba(6,182,212,.08), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
.muted{ color: var(--muted); }

.section-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}


/* =========================================================
   3) SCROLL PROGRESS BAR
========================================================= */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--a2), var(--a3), var(--a4));
  z-index: 100000;
}


/* =========================================================
   4) BUTTONS (LIGHT)
========================================================= */
.btn-primary{
  display: inline-block;
  background: linear-gradient(90deg, var(--a1), var(--a3));
  border: 0;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(124,58,237,.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(236,72,153,.18);
  filter: brightness(1.03);
}

.btn-outline{
  display:inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  color: var(--text);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-outline:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,42,.22);
}

.btn-instagram{
  display: inline-block;
  background: #e1306c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  transition: opacity .2s ease, transform .2s ease;
}
.btn-instagram:hover{
  opacity: .92;
  transform: translateY(-2px);
}


/* =========================================================
   5) HEADER (LIGHT)
========================================================= */
.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 9000;
}

.site-header nav a{
  color: rgba(15,23,42,.78);
  margin-left: 14px;
  font-weight: 800;
  font-size: .95rem;
}
.site-header nav a:hover{ color: rgba(15,23,42,.95); }

.logo{ height: 40px; width: auto; }


/* =========================================================
   6) HERO (VIDEO BACKGROUND) — LIGHT THEME VERSION
   Note: Even on light theme, hero is still darkened for readability.
========================================================= */
.hero-section{
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000; /* fallback behind video */
}

.hero-fallback{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Keep overlay strong so white text reads */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(900px 450px at 18% 18%, rgba(124,58,237,.35), transparent 62%),
    radial-gradient(850px 450px at 82% 30%, rgba(236,72,153,.28), transparent 62%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.70));
}

.hero-content{
  position: relative;
  z-index: 3;
  height: 100%;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
}

.hero-content h1{
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 10px;
}

.hero-content p{
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: rgba(255,255,255,.88);
}

.hero-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 6px;
}

/* badge */
.hero-badge{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.45rem .85rem;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(124,58,237,.40), rgba(236,72,153,.30), rgba(6,182,212,.28));
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
}
.hero-badge .dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(90deg, var(--a2), var(--a3));
  box-shadow: 0 0 18px rgba(255,255,255,.35);
}


/* =========================================================
   7) ABOUT SECTION (NEW CONTENT + PLACEHOLDERS)
========================================================= */
.about-pro{ padding-top: 60px; }

.about-pro-top{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.about-pro-mid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 22px;
  align-items: start;
  margin-top: 26px;
}

/* Placeholder image blocks */
.about-pro-image{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card2);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}
.about-pro-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  min-height: 320px;
}
.ph-caption{
  position:absolute;
  left:14px;
  bottom:14px;
  background: rgba(255,255,255,.70);
  color: rgba(15,23,42,.90);
  padding:6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  border: 1px solid rgba(15,23,42,.12);
}

/* About text */
.about-pro-text h2{
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 0 0 10px;
}
.crown{ filter: drop-shadow(0 10px 18px rgba(236,72,153,.18)); }

/* “What we do” cards grid */
.about-pro-cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

/* Cards */
.about2-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.about2-card:hover{
  transform: translateY(-4px);
  border-color: rgba(15,23,42,.18);
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
}

.about2-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 900;
  color: rgba(15,23,42,.86);
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(124,58,237,.12), rgba(236,72,153,.10), rgba(6,182,212,.10));
}

.about2-card h3{ margin: 10px 0 10px; font-size: 1.18rem; }
.about2-card p{ margin: 0; color: rgba(15,23,42,.70); line-height: 1.7; }

/* Clothing CTA row */
.about-pro-cta{
  margin-top: 28px;
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:center;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

@media (max-width: 900px){
  .about-pro-top, .about-pro-mid{ grid-template-columns: 1fr; }
  .about-pro-cta{ flex-direction: column; align-items: flex-start; }
}


/* =========================================================
   8) LEADERSHIP (CEO + MANAGER)
========================================================= */
.leadership-head{
  text-align: center;
  margin-bottom: 14px;
}

.leaders-text{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.leader-text-only{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.leader-text-only h3{
  margin: 10px 0 10px;
  color: rgba(15,23,42,.92);
}

.leader-text-only p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
}

.leader-tag{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(124,58,237,.10), rgba(236,72,153,.08), rgba(6,182,212,.08));
  color: rgba(15,23,42,.86);
}

@media (max-width: 992px){
  .leaders-text{ grid-template-columns: 1fr; }
}


/* =========================
  9) OUR PILLARS (COMPACT ROW)
========================= */
.pillars { padding-top: 10px; }

.pillars-head { text-align: center; margin-bottom: 14px; }

.pillars-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pillars-mini{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.pillars-badge{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(124,58,237,.10), rgba(236,72,153,.09), rgba(6,182,212,.08));
  color: rgba(15,23,42,.86);
  margin-bottom: 10px;
}

.pillars-mini p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.65;
  font-size: .98rem;
}

.values-mini{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
  font-size: .98rem;
}

.values-mini li{ margin-bottom: 6px; }

/* Responsive: stack nicely on smaller screens */
@media (max-width: 992px){
  .pillars-row{ grid-template-columns: 1fr; }
}


/* =========================================================
   10) BRAND VIDEOS GRID (INDEX)
========================================================= */
.media-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.video-card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.video-card video{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 0.5s ease;
}
.video-card:hover video{ transform: scale(1.05); }

.video-overlay{
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  background: rgba(0,0,0,0.55);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}


/* =========================================================
   11) VIDEO MODAL (LONG VIDEOS)
========================================================= */
#video-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#video-modal.active{ display: flex; }

.video-modal-content{
  width: 90%;
  max-width: 900px;
  position: relative;
}

#modal-video{ width: 100%; height: auto; }

#video-close{
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* =========================================================
   12) INSTAGRAM PLACEHOLDERS (INDEX)
========================================================= */
.insta-head{ text-align:center; margin-bottom: 16px; }

.insta-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 15px;
  margin-top: 20px;
}

.insta-item img{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.insta-actions{
  display:flex;
  justify-content:center;
  margin-top: 16px;
}


/* =========================================================
   13) FOOTER (LIGHT)
========================================================= */
.site-footer{
  background: rgba(255,255,255,.85);
  border-top: 1px solid var(--border);
  color: rgba(15,23,42,.78);
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand p{
  margin-top: 15px;
  line-height: 1.6;
  color: rgba(15,23,42,.68);
}

.footer-logo{ height: 40px; }

.footer-links h4,
.footer-social h4{
  color: rgba(15,23,42,.92);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.footer-links a{
  display: block;
  color: rgba(15,23,42,.70);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-links a:hover{ color: rgba(15,23,42,.92); }

.footer-social .instagram-link{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #e1306c;
  color: #fff;
  border-radius: 30px;
  font-weight: 800;
  transition: opacity 0.3s ease;
}
.footer-social .instagram-link:hover{ opacity: .88; }

.footer-bottom{
  margin-top: 40px;
  border-top: 1px solid rgba(15,23,42,.10);
  padding-top: 20px;
  text-align: center;
  color: rgba(15,23,42,.55);
  font-size: 0.85rem;
}


/* =========================================================
   14) SAFETY
========================================================= */
/* Prevent AOS from permanently hiding content if JS fails */
[data-aos]{ opacity: 1; visibility: visible; }

/* =========================
   CONTACT / SUPPORT SECTION
========================= */
.contact { padding-top: 10px; }

.contact-head { text-align: center; margin-bottom: 16px; }

.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.contact-card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.contact-info h3{ margin-top: 0; }
.contact-info p{ line-height: 1.7; }

.contact-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(124,58,237,.10), rgba(236,72,153,.08), rgba(6,182,212,.08));
  font-weight: 800;
  font-size: .86rem;
  color: rgba(15,23,42,.85);
}

.contact-links{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.link-pill{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.90);
  font-weight: 800;
  color: rgba(15,23,42,.85);
}

.contact-note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(15,23,42,.04);
  border: 1px dashed rgba(15,23,42,.16);
  color: rgba(15,23,42,.75);
  font-size: .92rem;
}

.contact-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{ margin-bottom: 12px; }
label{
  display: block;
  font-weight: 900;
  font-size: .92rem;
  margin-bottom: 6px;
  color: rgba(15,23,42,.85);
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.95);
  outline: none;
  font-size: 1rem;
}

textarea{ resize: vertical; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(124,58,237,.35);
  box-shadow: 0 0 0 4px rgba(124,58,237,.10);
}

.form-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-hint{ margin: 10px 0 0; }

.support-status{
  margin-top: 12px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  display: none;
}

.support-status.ok{
  display: block;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
  color: rgba(15,23,42,.85);
}

.support-status.err{
  display: block;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.22);
  color: rgba(15,23,42,.85);
}

@media (max-width: 992px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form .form-row{ grid-template-columns: 1fr; }
}

/* =========================
   STICKY WHATSAPP BUTTON
========================= */
.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

/* Pulse ring */
.whatsapp-float::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.4s infinite;
  z-index: -1;
}

@keyframes wa-pulse{
  0%{
    transform: scale(1);
    opacity: 0.7;
  }
  70%{
    transform: scale(1.6);
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}

/* Icon center */
.wa-icon{
  line-height: 1;
}

/* Mobile adjustment */
@media (max-width: 576px){
  .whatsapp-float{
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

/* =========================
   HOME NAV — MOBILE RESPONSIVE
========================= */

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* desktop nav */
.site-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}

/* hamburger button */
/* hamburger button */
/* Hide hamburger on desktop/laptop by default */
.nav-toggle{
  display: none;
}

/* Mobile/tablet only */
@media (max-width: 900px){
  .nav-toggle{
    display: flex;
    width:44px;
    height:44px;
    border-radius:12px;
    border:1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.75);
    cursor:pointer;

    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
  }

  .nav-toggle span{
    display:block;
    width:22px;
    height:2px;
    background: rgba(15,23,42,.90);
    border-radius:2px;
  }

  /* hide desktop nav on mobile */
  .site-nav{ display:none; }

  /* show the mobile shop button if you added it */
  .mobile-shop-btn{ display:inline-block; }
}

/* Desktop/laptop: show normal nav, hide mobile shop button */
@media (min-width: 901px){
  .site-nav{ display:flex; }
  .mobile-shop-btn{ display:none; }
}


/* Mobile-only shop button in header */
.mobile-shop-btn{
  display:none;
  padding: 10px 16px;
  font-weight: 900;
  white-space: nowrap;
}

/* responsive break */
@media (max-width: 900px){
  .site-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-shop-btn{ display:inline-block; }
}


/* overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  display: none;
  z-index: 9500;
}

/* drawer */
.nav-drawer{
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: rgba(255,255,255,.92);
  border-left: 1px solid rgba(15,23,42,.12);
  backdrop-filter: blur(12px);
  z-index: 9600;
  padding: 18px;
  transition: right .28s ease;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.nav-drawer a{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.80);
  font-weight: 900;
  color: rgba(15,23,42,.86);
}

.nav-drawer a:hover{
  border-color: rgba(15,23,42,.18);
}

.nav-drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 6px;
}

.nav-drawer-title{
  font-weight: 900;
  color: rgba(15,23,42,.86);
}

.nav-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 18px;
  color: rgba(15,23,42,.86);
}

/* open state */
body.nav-open .nav-overlay{ display:block; }
body.nav-open .nav-drawer{ right: 0; }

/* responsive break */
@media (max-width: 900px){
  .site-nav{ display:none; }
  .nav-toggle{ display:flex; }
}

/* =========================
   SPONSOR / SUPPORT SECTION (HOME)
========================= */
.sponsor-head{ text-align:center; margin-bottom: 16px; }

.sponsor-card{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.sponsor-badge{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(90deg, rgba(124,58,237,.10), rgba(236,72,153,.08), rgba(6,182,212,.08));
  color: rgba(15,23,42,.86);
  margin-bottom: 12px;
}

.sponsor-row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.sponsor-row .label{
  color: rgba(15,23,42,.65);
  font-weight: 800;
  font-size: .95rem;
}

.sponsor-row .value{
  color: rgba(15,23,42,.88);
  font-weight: 900;
  text-align: right;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.sponsor-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.sponsor-note{ margin-top: 10px; }

.sponsor-right{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(0,0,0,.05);
  min-height: 260px;
}

.sponsor-right img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

@media (max-width: 992px){
  .sponsor-card{ grid-template-columns: 1fr; }
  .sponsor-right{ min-height: 220px; }
}

/* =========================
   ABOUT — "WHAT WE DO" TITLE
========================= */
.about-section-title{
  text-align: center;
  margin-top: 40px;
  margin-bottom: 14px;
}

.about-section-title h2{
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: rgba(15,23,42,.92);
}

/* .about-section-title p{
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.7;
} */

/* =========================
   LEADERSHIP (TEXT ONLY)
========================= */

/* =========================
   VIDEO GALLERY MODAL (3 videos)
========================= */
.gallery-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 12000;
}

.gallery-modal.active{ display: block; }

.gallery-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.gallery-panel{
  position: relative;
  width: min(920px, calc(100% - 26px));
  margin: 5vh auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  overflow: hidden;
}

.gallery-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.gallery-title{
  font-weight: 900;
  color: rgba(15,23,42,.9);
}

.gallery-x{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 18px;
  color: rgba(15,23,42,.85);
}

.gallery-player{
  background: #000;
}

.gallery-player video{
  width: 100%;
  height: auto;
  max-height: 55vh;
  display: block;
}

.gallery-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: rgba(15,23,42,.02);
  border-top: 1px solid rgba(15,23,42,.10);
}

.gallery-thumb{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: block;
}

.gallery-thumb video{
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: brightness(.92);
}

.gallery-thumb .thumb-label{
  padding: 10px 10px;
  font-weight: 800;
  color: rgba(15,23,42,.85);
  font-size: .92rem;
}

.gallery-thumb.active{
  outline: 3px solid rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.25);
}

@media (max-width: 768px){
  .gallery-strip{
    grid-template-columns: 1fr;
  }
  .gallery-thumb video{ height: 160px; }
}

/* Media gallery image preview */
.gallery-player img{
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  display: none;
  background: #000;
}

/* =========================
   WHAT WE DO — JOIN US CTA
========================= */
.whatwedo-cta{
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.whatwedo-cta-text h3{
  margin: 0 0 6px;
  color: rgba(15,23,42,.92);
  font-size: 1.15rem;
}

.whatwedo-cta-text p{
  margin: 0;
  line-height: 1.7;
}

.whatwedo-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px){
  .whatwedo-cta{
    flex-direction: column;
    align-items: flex-start;
  }
  .whatwedo-cta-actions{
    justify-content: flex-start;
  }
}

.business-footer{
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 40px 20px;
  margin-top: 60px;
}

.business-footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-block h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.footer-block p{
  margin: 0;
  line-height: 1.6;
}

.social-links{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social i{
  font-size: 18px;
}

.btn-cert{
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
}

.social-link{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0;
  text-decoration:none;
  color:inherit;
  opacity:.9;
}
.social-link:hover{ opacity:1; }
.social-link i{ width:18px; }

/* =========================
   FOOTER: tighter on mobile
========================= */
@media (max-width: 600px) {
  .site-footer{
    padding: 28px 16px 14px;  /* was 60px top */
    font-size: 0.92rem;
  }

  .footer-container{
    gap: 16px;                /* was 40px */
    grid-template-columns: 1fr; /* stack nicely */
  }

  .footer-brand p{
    margin-top: 8px;          /* was 15px */
    line-height: 1.45;
  }

  .footer-links h4,
  .footer-social h4{
    margin-bottom: 8px;       /* was 15px */
    font-size: 1rem;
  }

  .footer-links a{
    margin-bottom: 6px;       /* was 10px */
  }

  .footer-social .instagram-link{
    margin-top: 6px;
    padding: 8px 14px;        /* smaller button */
  }

  .footer-bottom{
    margin-top: 16px;         /* was 40px */
    padding-top: 12px;        /* was 20px */
  }
}
/* =========================
   MOBILE: REDUCE SECTION SPACING
========================= */
@media (max-width: 600px) {

  /* Reduce general section padding */
  section,
  .section,
  .container-section,
  .page-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Reduce big margins on headings/paragraphs */
  h1, h2, h3, h4 {
    margin-bottom: 10px !important;
  }
  p {
    margin-bottom: 10px !important;
  }

  /* Reduce spacing between stacked blocks/cards */
  .grid,
  .row,
  .stack,
  .cards,
  .pillars,
  .media-grid {
    gap: 12px !important;
  }

  /* Reduce spacing between major blocks inside sections */
  .content,
  .content-wrap,
  .section-content,
  .inner,
  .wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* If you used <br> a lot, it causes big gaps on mobile */
  br {
    display: none;
  }
}
/* =========================================================
   6) HERO BADGE (INDEX)
========================================================= */
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  /* background: rgba(255,255,255,.85); */
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 8px 24px rgba(255,255,255,.18);
  font-size: .95rem;
  font-weight: 900;
  color: rgba(15,23,42,.90);
}

.hero-badge i{
  font-size: 1.2rem;
  color: rgba(236,72,153,.92);
}

/* MOBILE ONLY social buttons */
.mobile-social-links{
  display: none; /* hidden on laptop/desktop */
}

/* MOBILE ONLY social buttons */
.mobile-social-links{
  display: none; /* hidden by default (laptop/desktop) */
}

@media (max-width: 600px){
  .mobile-social-links{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin: 18px auto 0;
    padding: 0 16px;
  }

  .social-pill{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }

  /* same style feel, different colors per platform */
  .social-pill.ig{ background: #e1306c; }
  .social-pill.tt{ background: #111; }
  .social-pill.x{  background: #000; }
  .social-pill.fb{ background: #1877f2; }
}


/* =========================
   FIX: Media inside video-card (mobile)
   - prevents video/img from collapsing or being cropped badly
========================= */
@media (max-width: 600px){

 

}

/* MEDIA slider controls (mobile only) */
/* @media (max-width: 600px){ */
  /* .media-slider{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #mediaGrid{
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 14px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px;
  }

  #mediaGrid > .video-card{
    scroll-snap-align: start;
  }

  .media-nav{
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.15);
    background: rgba(255,255,255,.85);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
  }
} */

/* Hide buttons on laptop/desktop (optional) */
@media (min-width: 601px){
  .media-nav{ display:none; }
}

/* Gallery main stage: keep a stable frame on mobile */
#galleryModal .gallery-stage,
#galleryModal .media-stage,
#galleryModal .gallery-main{
  width: 100%;
  aspect-ratio: 4 / 5;  /* tall for phones */
  background: rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
}

#galleryModal video,
#galleryModal img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Thumbs: keep them tidy */
#galleryStrip{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}
#galleryStrip .gallery-thumb img,
#galleryStrip .gallery-thumb video{
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}
