:root {
  --brand-maroon: #701212;
  /* Core Brand Color */
  --brand-green: #1a4325;
  /* Nature/Forest */
  --brand-gold: #c59d5f;
  /* Wood Accent */
  --text-dark: #111111;
  --text-gray: #555;
  --bg-light: #f9f7f2;
  /* Warm Off-White */
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLine {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* --- 1. PREMIUM HERO SECTION --- */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background-image: url("../images/banner/abt-banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark Overlay with Gradient */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8),
    rgba(112, 18, 18, 0.4)
  );
}

.header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  /* Glass Effect */
  backdrop-filter: blur(10px);
  border-radius: 0;
  animation: fadeUp 1s ease-out;
  max-width: 800px;
}

.page-title {
  font-family: "Syne", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumb-custom {
  display: inline-flex;
  gap: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  font-weight: 700;
  margin-top: 10px;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.4);
}

/* --- 2. OUR STORY (INTERACTIVE LAYOUT) --- */
.story-section {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

/* Background Pattern */
.story-section::after {
  content: "STORY";
  position: absolute;
  top: 50px;
  right: -50px;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  font-family: "Syne", sans-serif;
  z-index: 0;
  pointer-events: none;
}

/* Image Group */
.story-img-group {
  position: relative;
  z-index: 2;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.5s ease;
}

.img-large-wrap {
  width: 85%;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.img-small-wrap {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border: 10px solid #fff;
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

/* Hover Zoom */
.story-img-group:hover .story-img {
  transform: scale(1.1);
}

/* Text Styling */
.story-content {
  position: relative;
  z-index: 2;
  padding-left: 50px;
}

.story-label {
  font-size: 0.9rem;
  color: var(--brand-maroon);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.story-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--brand-maroon);
  animation: revealLine 1s ease-out forwards;
}

.story-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

.story-text {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 300;
}

.signature-box {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.signature {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  color: var(--brand-maroon);
  font-weight: 700;
  letter-spacing: -1px;
}

/* --- 3. MISSION & VISION (DARK LUXURY CARDS) --- */
.mv-section {
  padding: 100px 0;
  background-color: #0f0f0f;
  /* Dark Theme */
  color: #fff;
  position: relative;
}

.mv-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow Effect */
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
}

.mv-card:hover::before {
  transform: scaleX(1);
}

.mv-icon {
  font-size: 3.5rem;
  color: var(--brand-gold);
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(10deg);
}

.mv-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.mv-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* --- 4. STATS (MODERN GRID) --- */
.stats-section {
  padding: 80px 0;
  background: var(--brand-maroon);
  color: #fff;
  position: relative;
}

.stats-grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  /* Gap for border effect */
  background: rgba(255, 255, 255, 0.1);
  /* Divider color */
}

.stat-box {
  background: var(--brand-maroon);
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s;
}

.stat-box:hover {
  background: #5a0e0e;
  /* Slightly darker */
}

.counter-num {
  font-family: "Syne", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.counter-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .page-title {
    font-size: 3rem;
  }

  .img-small-wrap {
    width: 50%;
    right: -10px;
    bottom: -20px;
  }

  .story-content {
    padding-left: 0;
    margin-top: 60px;
  }

  .stats-grid-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 2.2rem;
  }

  .stats-grid-box {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 40px 20px;
  }
}
