:root {
  --primary: #f5d97e;
  --secondary: #daac60;
  --accent: #ecc794;
  --darker: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ============================= */
/* PREMIUM ANIMATIONS */
/* ============================= */

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

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes pulse-slow {
  0%, 100% { opacity: 0.05; transform: scale(1); }
  50%      { opacity: 0.08; transform: scale(1.1); }
}

@keyframes particle-float {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(100px, -70vh) rotate(360deg); opacity: 0; }
}

.fade-in { animation: fadeIn 1.2s ease-out; }
.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }

/* Shine class neutralized (hero shimmer removed) */
.shine-effect {
  animation: none !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: inherit !important;
}

/* Floating particles */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--primary);
}
.particle:nth-child(1) { left: 20%; animation: particle-float 12s ease-in infinite; animation-delay: 0s; }
.particle:nth-child(2) { left: 50%; animation: particle-float 15s ease-in infinite; animation-delay: 2s; }
.particle:nth-child(3) { left: 80%; animation: particle-float 13s ease-in infinite; animation-delay: 4s; }

/* ============================= */
/* HERO SECTION */
/* ============================= */

.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('images/savana.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ============================= */
/* IMAGE EFFECTS */
/* ============================= */

.image-reveal { animation: fadeIn 1s ease-out 0.3s both; }

.image-wrapper { position: relative; overflow: hidden; }

/* Disable hover sweep on non-clickable images */
.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 217, 126, 0.3), transparent);
  transition: left 0.7s;
  z-index: 1;
}
.image-wrapper:hover::before { left: -100%; }

/* ============================= */
/* STAT CARDS (non-clickable; no hover) */
/* ============================= */

.stat-card {
  background: linear-gradient(135deg, rgba(245, 217, 126, 0.1), transparent);
  padding: 1.5rem;
  border: 1px solid rgba(245, 217, 126, 0.2);
  text-align: center;
  transition: none;
  border-radius: 0.75rem;
  cursor: default;
}
.stat-card:hover {
  transform: none;
  border-color: rgba(245, 217, 126, 0.2);
  box-shadow: none;
}

/* ============================= */
/* VISION & MISSION CARDS (non-clickable; no hover) */
/* ============================= */

.vision-card {
  position: relative;
  overflow: hidden;
  transition: none;
  border: 1px solid rgba(75, 75, 75, 1);
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 217, 126, 0.1), transparent);
  transition: none;
}

/* ============================= */
/* COMPANY OVERVIEW — NEW LOOK   */
/* ============================= */

.about-overview .eyebrow{
  display:inline-block;
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  padding:.25rem .6rem;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

/* Feature list (no hover, non-clickable) */
.about-overview .feature-list{
  display:grid;
  gap:.6rem;
  margin:0 0 1.25rem 0;
  padding:0;
  list-style:none;
}
.about-overview .feature-list li{
  color:#d1d1d1;
  display:flex; align-items:center; gap:.6rem;
  font-size:1rem;
}
.about-overview .feature-list i{
  color:var(--primary);
  font-size:.95rem;
}

/* Stat pills (non-clickable, subtle) */
.about-overview .pill-row{
  display:flex; flex-wrap:wrap; gap:.6rem;
  margin-top:1.25rem;
}
.about-overview .pill{
  display:inline-flex; align-items:baseline; gap:.4rem;
  padding:.6rem .85rem;
  border:1px solid rgba(245,217,126,.22);
  background:linear-gradient(135deg, rgba(245,217,126,.08), rgba(255,255,255,0));
  color:#fff;
  border-radius:.75rem;
}
.about-overview .pill-num{
  font-weight:800; color:var(--primary);
}
.about-overview .pill-label{
  color:#cfcfcf; font-weight:600; letter-spacing:.2px;
}

/* Media stack (no hover) */
.media-stack{
  position:relative;
  width:100%;
  max-width: 640px;
  margin-inline:auto;
}
.media-main{
  width:100%;
  height: 440px;
  object-fit:cover;
  border-radius: 1.25rem;
  display:block;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}
@media (max-width: 640px){
  .media-main{ height: 340px; }
}

/* Make sure the container clips the walker's travel */
.media-stack{
  position: relative;
  overflow: hidden; /* important so it disappears when off left */
}

/* Secondary floated image (walker) — slides right → left on a loop */
.media-float{
  position: absolute;
  bottom: 0;
  left: 100%;                  /* start just outside the right edge */
  width: 46%;
  height: 50%;
  object-fit: cover;
  z-index: 2;
  will-change: transform, opacity;
  animation: walk-slide 9s linear infinite;
}

/* Motion keyframes */
@keyframes walk-slide{
  /* start: just off the right; fade in quickly */
  0%   { transform: translateX(0);       opacity: 0; }
  5%   { transform: translateX(-5vw);    opacity: 1; }

  /* traverse left across container */
  95%  { transform: translateX(-50vw);  opacity: 1; }

  /* fully off the left side, fade out */
  100% { transform: translateX(-70vw);  opacity: 0; }
}

/* Mobile tweaks: slightly shorter distance/time */
@media (max-width: 768px){
  .media-float{
    width: 52%;
    height: 180px;
    left: 100%;
    animation: walk-slide-sm 12s linear infinite;
  }
  @keyframes walk-slide-sm{
    0%   { transform: translateX(0);       opacity: 0; }
    7%   { transform: translateX(-4vw);    opacity: 1; }
    92%  { transform: translateX(-120vw);  opacity: 1; }
    100% { transform: translateX(-130vw);  opacity: 0; }
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .media-float{ animation: none !important; opacity: 1; left: 54%; transform: none; }
}


/* Gold label */
.media-tag{
  position:absolute;
  left:-6%;
  top: -10%;
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.55rem .9rem;
  font-weight:700; font-size:.9rem;
  color:#000;
  background: var(--primary);
  border-radius:.75rem;
  box-shadow: 0 10px 30px rgba(245,217,126,.35);
  border: 1px solid rgba(0,0,0,.15);
}
.media-tag i{ font-size:.95rem; }

/* Decorative ring */
.media-ring{
  position:absolute;
  inset:auto -8% 30% auto; /* right offset */
  width: 180px; height:180px;
  border-radius:9999px;
  pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(245,217,126,.18), transparent 70%),
    radial-gradient(closest-side, rgba(245,217,126,.12), transparent 80%);
  filter: blur(10px);
  opacity:.5;
}
@media (max-width: 768px){
  .media-ring{ width:140px; height:140px; right:-4%; bottom:34%; }
}

/* Respect reduced-motion + keep non-clickables static */
@media (prefers-reduced-motion: reduce){
  .media-ring{ display:none; }
}



/* ============================= */
/* VALUE CARDS (CLICK TO OPEN) */
/* ============================= */

.value-card {
  background: linear-gradient(135deg, rgba(31, 31, 31, 1), rgba(0, 0, 0, 1));
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(75, 75, 75, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(245, 217, 126, 0.05));
  opacity: 0;
  transition: opacity .3s ease;
}

/* Remove ALL hover-driven animations for values */
.value-card:hover,
.value-card:hover::after,
.value-card:hover .value-icon-wrapper,
.value-card:hover i {
  transform: none;
  box-shadow: none;
  border-color: rgba(75, 75, 75, 1);
  opacity: inherit;
}

/* Icon wrapper */
.value-icon-wrapper {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245, 217, 126, 0.1), transparent);
  border-radius: 50%;
  border: 2px solid rgba(245, 217, 126, 0.3);
  transition: all .3s ease;
}
.value-card i { transition: transform .3s ease; }

/* Body collapsed by default */
.value-card .value-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
}

/* OPEN state (applies animations when clicked) */
.value-card.is-open {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(245, 217, 126, 0.3);
}
.value-card.is-open::after { opacity: 1; }
.value-card.is-open .value-icon-wrapper {
  background: linear-gradient(135deg, rgba(245, 217, 126, 0.2), transparent);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(245, 217, 126, 0.4);
}
.value-card.is-open i { transform: scale(1.125) rotate(12deg); }
.value-card.is-open .value-body {
  max-height: 300px;
  opacity: 1;
}

/* Keyboard focus */
.value-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-card {
  background: linear-gradient(135deg, rgba(31,31,31,1), rgba(0,0,0,1));
  border: 1px solid rgba(75,75,75,1);
  padding: 2rem;
  /* Non-clickable container: no hover transforms */
  transition: none;
}

/* Form fields */
.form-field { display: block; }
.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(120,120,120,0.35);
  background: rgba(12,12,12,0.85);
  color: #eaeaea;
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-control::placeholder { color: #8b8b8b; }

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,217,126,0.18);
  background: rgba(18,18,18,0.95);
}

/* Info list */
.contact-info { display: flex; flex-direction: column; justify-content: space-between; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  /* Non-clickable: no hover transforms */
}
.info-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  display: grid; place-items: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(245,217,126,0.12), transparent);
  border: 1px solid rgba(245,217,126,0.35);
  color: var(--primary);
}
.info-title { font-weight: 700; color: #fff; margin-bottom: 0.15rem; }
.info-text { color: #c9c9c9; }

/* Map placeholder (replace with real iframe when ready) */
.map-placeholder {
  height: 240px;
  background:
    radial-gradient(closest-side, rgba(245,217,126,0.12), transparent 60%),
    linear-gradient(135deg, rgba(245,217,126,0.06), rgba(255,255,255,0.02));
  border: 1px dashed rgba(245,217,126,0.35);
  display: grid; place-items: center;
  color: #bfbfbf;
  letter-spacing: 0.4px;
}

/* If you embed an actual map: */
.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .contact-card { padding: 1.5rem; }
  .map-placeholder, .map-embed iframe { height: 200px; }
}


/* ============================= */
/* DIFFERENCE CARDS (non-clickable; no hover) */
/* ============================= */

.difference-card {
  background: linear-gradient(135deg, rgba(31, 31, 31, 1), rgba(0, 0, 0, 1));
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(75, 75, 75, 1);
  position: relative;
  overflow: hidden;
  transition: none;
  cursor: default;
}
.difference-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 217, 126, 0.1), transparent);
  transition: none;
}

/* ============================= */
/* BUTTONS (clickable: keep hover) */
/* ============================= */

.cta-button {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 1px;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.cta-button:hover::before { width: 400px; height: 400px; }

.btn-outline-gold {
  border: 2px solid var(--primary);
  color: white;
  background: transparent;
  transition: all 0.5s ease;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(245, 217, 126, 0.2);
}
.btn-outline-gold:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 217, 126, 0.6);
}

/* ============================= */
/* MOBILE RESPONSIVENESS */
/* ============================= */

@media (max-width: 992px) {
  .about-hero { height: 60vh; background-attachment: scroll; }
  h1 { font-size: 3rem; }
  .grid.md\:grid-cols-2 { grid-template-columns: 1fr; }
  .grid.lg\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .about-hero { height: 50vh; background-attachment: scroll; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid.md\:grid-cols-2,
  .grid.md\:grid-cols-3,
  .grid.lg\:grid-cols-4 { grid-template-columns: 1fr; }
  .stat-card { padding: 1rem; }
  .value-card, .difference-card, .vision-card { padding: 1.5rem; }
  .particle { display: none; }
  .cta-button, .btn-outline-gold { padding: 0.875rem 2rem; font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .animate-fade-in, .animate-float, .animate-pulse-slow { animation: none !important; }
  .value-card, .value-icon-wrapper, .value-body { transition: none !important; }
}
