/* ==========================================================================
   ADROIT AGRI TRADE - Main Stylesheet
   Design System & Responsive CSS Variables
   ========================================================================== */

:root {
  /* Font Specifications */
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'Sora', sans-serif;

  /* Color Palette & Themes */
  --bg-about: linear-gradient(180deg, #ffe7d3 0%, #faf6f0 100%);
  --bg-light: #FAF6F0;
  --primary-orange: #E06C2B;
  --primary-orange-hover: #F08038;
  --accent-orange: #D96E14;
  --text-dark: #1E1E1E;
  --text-heading-dark: #222222;
  --text-body: #4A4A4A;
  --accent-green: #12753E;
  --border-color: rgba(0, 0, 0, 0.1);
  --orange-glow: rgba(224, 108, 43, 0.35);
  --orange-glow-heavy: rgba(224, 108, 43, 0.65);
  --bg-dark: #0A0908;
  --text-white: #FFFFFF;
  --text-muted: #A1A1AA;
  --border-dark: #444444;
  --card-radius: 16px;

  /* Header Height */
  --header-height: 90px;

  /* Section Title & Eyebrow Typography Variables */
  --section-title-size: clamp(2.8rem, 4.5vw, 4.2rem);
  --section-title-lh: 1;
  --section-title-ls: -0.5px;
  --eyebrow-size: 0.85rem;
  --eyebrow-ls: 2.5px;
  --eyebrow-weight: 700;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.heading-serif {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* Shared Design System Rules for Section Titles & Eyebrows */
.section-title,
.about-title,
.operations-title {
  font-family: var(--font-heading);
  font-size: var(--section-title-size);
  line-height: var(--section-title-lh);
  letter-spacing: var(--section-title-ls);
  font-weight: 400;
}

.section-eyebrow-text,
.eyebrow-text,
.about-eyebrow-text,
.operations-eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #27272A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* ==========================================================================
   Preloader Component
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--primary-orange));
}

.preloader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-hover));
  box-shadow: 0 0 10px var(--orange-glow-heavy);
}

/* ==========================================================================
   Particle Canvas Background
   ========================================================================== */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Header / Navigation (Sticky Overlay)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 9, 8, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgb(0 0 0 / 45%);
  height: 75px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo Image */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  opacity: 0.9;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: clamp(1.2rem, 2.2vw, 2.8rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-white);
  text-decoration: none;
  opacity: 0.85;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.nav-link.active {
  opacity: 1;
  color: var(--primary-orange);
  font-weight: 700;
}

/* ==========================================================================
   Navigation Dropdown Menu Styling (About Us -> Overview & Teams)
   ========================================================================== */
.nav-item.nav-has-dropdown {
  position: relative;
}

.nav-item.nav-has-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item.nav-has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--primary-orange);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: rgba(14, 16, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--primary-orange);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(224, 108, 43, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-smooth);
  z-index: 1005;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
}

.nav-item.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(224, 108, 43, 0.14);
}

.dropdown-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.dropdown-item:hover .dropdown-title {
  color: var(--primary-orange);
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* Mobile Drawer Submenu */
.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-submenu-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.mobile-submenu-link:hover {
  color: var(--primary-orange);
}

/* Header Contact Button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #E06C2B 0%, #F08038 100%);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-contact:hover {
  box-shadow: 0 8px 28px var(--orange-glow-heavy);
  background: linear-gradient(135deg, #F08038 0%, #E06C2B 100%);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #12100E;
  padding: 100px 30px 40px;
  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--primary-orange);
}

.btn-mobile-contact {
  margin-top: 1rem;
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--primary-orange);
  color: var(--text-white) !important;
  border-radius: 50px;
}

/* ==========================================================================
   Hero Section Main Layout (Laptop Optimized Grid)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Hero Background & Vignette Overlay */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.05);
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 40%, rgba(10, 9, 8, 0.15) 0%, rgba(10, 9, 8, 0.75) 55%, rgba(10, 9, 8, 0.98) 90%),
    linear-gradient(90deg, rgba(10, 9, 8, 0.96) 0%, rgba(10, 9, 8, 0.85) 45%, rgba(10, 9, 8, 0.3) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.7) 0%, transparent 30%, rgba(10, 9, 8, 0.95) 100%);
}

.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-orange {
  background: rgba(224, 108, 43, 0.25);
  bottom: -10%;
  left: -5%;
}

/* Hero Grid Container */
.hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Left Content Area
   ========================================================================== */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.2vh, 1.6rem);
  max-width: 680px;
}

/* Eyebrow Sub-heading */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.orange-accent-line {
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-hover));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-orange);
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-orange);
  text-transform: uppercase;
}

/* Main Title - Responsive Instrument Serif */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.5px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
}

.title-row {
  display: block;
}

.bullet-dot {
  color: var(--primary-orange);
  font-size: 0.6em;
  vertical-align: middle;
  margin: 0 8px;
  display: inline-block;
  text-shadow: 0 0 12px var(--primary-orange);
}

/* Subtitle / Tagline - Responsive Sora */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: -0.2rem;
}

/* CTA Buttons Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.btn-primary-container {
  position: relative;
  display: inline-block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #E06C2B 0%, #F08038 100%);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px var(--orange-glow);
  transition: all var(--transition-fast);
  white-space: nowrap;
  transform: none !important;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover {
  box-shadow: 0 12px 35px var(--orange-glow-heavy);
  background: linear-gradient(135deg, #F08038 0%, #E06C2B 100%);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(3px);
}

.primary-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 65%;
  background: var(--primary-orange);
  filter: blur(20px);
  opacity: 0.5;
  border-radius: 50px;
  z-index: 1;
}

/* Secondary CTA - OUR PRODUCTS Button */
.btn-secondary-container {
  display: inline-block;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 50px;
  background: rgba(10, 9, 8, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transform: none !important;
}

.btn-secondary:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: rgba(224, 108, 43, 0.12);
  box-shadow: 0 0 20px rgba(224, 108, 43, 0.3);
}

/* Trust Badges Row */
.trust-badges {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(224, 108, 43, 0.15);
  border: 1px solid rgba(224, 108, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle svg {
  width: 12px;
  height: 12px;
}

.badge-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-white);
  opacity: 0.9;
  white-space: nowrap;
}

/* ==========================================================================
   Right Content Area - Farmer Cutout (Laptop Fit)
   ========================================================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.farmer-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
}

.farmer-backlight-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(224, 108, 43, 0.28) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.farmer-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.farmer-img {
  width: 100%;
  max-width: 490px;
  max-height: 72vh;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
}

.farmer-fade-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}

/* Performance hints for GSAP Hardware Acceleration */
.hero-bg-img,
.farmer-img,
.hero-content,
.farmer-backlight-glow,
.hero-scroll-indicator,
.about-watermark,
.metric-card,
.metric-divider,
.about-title,
.leadership-card,
.leader-img,
.experience-badge,
.section-separator {
  will-change: transform, opacity;
}

/* ==========================================================================
   Hero Scroll Indicator Component
   ========================================================================== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-scroll-indicator:hover {
  transform: translateX(-50%) translateY(3px);
}

.scroll-indicator-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-indicator-text {
  color: var(--primary-orange);
}

.scroll-mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(224, 108, 43, 0.6);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-shadow: 0 0 12px rgba(224, 108, 43, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-mouse-icon {
  border-color: var(--primary-orange);
  box-shadow: 0 0 16px rgba(224, 108, 43, 0.4);
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--primary-orange);
  border-radius: 2px;
  animation: scrollWheelBounce 2s infinite ease-in-out;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  color: var(--primary-orange);
  animation: scrollArrowPulse 2s infinite ease-in-out;
  margin-top: -2px;
}

@keyframes scrollWheelBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scrollArrowPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

/* ==========================================================================
   About Us Section Styling (Figma Design Specification)
   ========================================================================== */
.about-section {
  background: var(--bg-about);
  font-family: var(--font-body);
  color: var(--text-dark);
  padding: 140px 8% 100px 8%;
  position: relative;
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  top: 40px;
  left: 25%;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 16vw, 15.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgb(92 70 58 / 8%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.about-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Top Content Row (2 Columns) */
.about-top-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-headline-col {
  position: relative;
}

.about-desc-col {
  padding-top: 50px;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.about-eyebrow-text {
  color: var(--primary-orange);
}

.title-line {
  display: block;
}

.title-dark {
  color: var(--text-heading-dark);
}

.title-orange {
  color: var(--accent-orange);
}

.about-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-body);
  font-weight: 400;
  max-width: 530px;
}

/* Bottom Metrics Grid (3 Columns with vertical dividers) */
.about-metrics-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  padding-top: 20px;
}

.metric-card {
  padding: 10px 32px;
  display: flex;
  flex-direction: column;
}

.about-metrics-grid .metric-card:first-child {
  padding-left: 0;
}

.about-metrics-grid .metric-card:last-child {
  padding-right: 0;
}

.metric-divider {
  width: 1px;
  background-color: var(--border-color);
  align-self: stretch;
  margin: 0 10px;
}

.metric-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 14px;
}

.metric-number {
  font-family: var(--font-body);
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1;
  letter-spacing: -1px;
}

.metric-plus {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading-dark);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.metric-subtext {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555555;
  font-weight: 400;
}

/* Responsive Overrides for About Section */
@media (max-width: 1023px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 50px;
  }

  .about-desc-col {
    padding-top: 0;
  }

  .about-metrics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .metric-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .metric-card {
    padding: 0;
  }
}

/* ==========================================================================
   Comprehensive Laptop & Device Responsive Media Queries
   ========================================================================== */

/* Standard Laptops (1366px - 1440px) */
@media (max-width: 1440px) {

  .header-container,
  .hero-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .farmer-img {
    max-width: 440px;
  }

  .about-section {
    padding: 120px 6% 85px 6%;
  }

  .about-top-row {
    gap: 3.5rem;
    margin-bottom: 70px;
  }

  .section-title,
  .about-title,
  .operations-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
  }

  .about-watermark {
    font-size: clamp(6rem, 13vw, 13rem);
  }

  .metric-card {
    padding: 10px 24px;
  }
}

/* Medium Laptops & 13" MacBooks (1199px - 1365px) */
@media (max-width: 1365px) {
  .nav-list {
    gap: 1.8rem;
  }

  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  }

  .farmer-img {
    max-width: 410px;
    max-height: 68vh;
  }

  .about-section {
    padding: 105px 5% 75px 5%;
  }

  .about-top-row {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    margin-bottom: 60px;
  }

  .section-title,
  .about-title,
  .operations-title {
    font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  }

  .about-description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-watermark {
    font-size: clamp(5rem, 11vw, 10.5rem);
    top: 20px;
  }

  .metric-card {
    padding: 10px 18px;
  }

  .metric-number {
    font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  }

  .metric-plus {
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  }

  .metric-label {
    font-size: 1.05rem;
  }

  .metric-subtext {
    font-size: 0.88rem;
  }
}

/* Compact Laptops & Landscape Tablets (1024px - 1198px) */
@media (max-width: 1198px) {
  .nav-list {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .btn-contact {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

  .farmer-img {
    max-width: 370px;
  }

  .about-section {
    padding: 95px 4% 65px 4%;
  }

  .about-top-row {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    margin-bottom: 50px;
  }

  .section-title,
  .about-title,
  .operations-title {
    font-size: clamp(2.1rem, 3.2vw, 3rem);
  }

  .about-description {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-watermark {
    font-size: clamp(4.2rem, 9.5vw, 8.5rem);
    top: 25px;
  }

  .metric-card {
    padding: 8px 12px;
  }

  .metric-divider {
    margin: 0 4px;
  }

  .metric-number {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
  }

  .metric-plus {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  }

  .metric-label {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }

  .metric-subtext {
    font-size: 0.84rem;
    line-height: 1.6;
  }
}

/* Tablet & Mobile Breakpoints (<= 1023px) */
@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-top: 1.5rem;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
  }

  .hero-eyebrow,
  .trust-badges,
  .hero-visual {
    justify-content: center;
  }

  .farmer-img {
    max-width: 380px;
    max-height: 55vh;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 0 1.2rem;
  }

  .hero-container {
    padding: 1rem 1.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-container,
  .btn-primary,
  .btn-secondary-container,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.8rem;
  }

  .about-watermark {
    display: none;
  }
}

/* ==========================================================================
   Global Operations & Infrastructure Section Styling
   ========================================================================== */
.operations-section {
  background-color: var(--bg-light);
  font-family: var(--font-body);
  padding: 110px 8%;
  position: relative;
  overflow: hidden;
}

.operations-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Column Content */
.operations-content-col {
  display: flex;
  flex-direction: column;
}

.operations-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.operations-accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.operations-eyebrow-text {
  color: var(--accent-orange);
}

.operations-title {
  color: var(--text-heading-dark);
}

.operations-title .title-line {
  display: block;
}

.operations-title .title-orange {
  color: var(--accent-orange);
}

.operations-para {
  font-family: var(--font-body);
}

.para-primary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 24px;
}

.para-secondary {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-top: 20px;
}

/* Right Column: Interactive Processing Unit Cards */
.operations-cards-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  perspective: 1200px;
}

.unit-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
  background-color: #111111;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Mouse Glare Overlay */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 75%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

.card-malkapur {
  height: clamp(520px, 45vw, 660px);
}

/* Stagger Offset for Card 2 (Asangaon) */
.card-asangaon {
  height: clamp(470px, 40vw, 610px);
  transform: translateY(65px);
}

.unit-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(224, 108, 43, 0.4);
}

.unit-card:hover .card-glare {
  opacity: 1;
}

.card-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateZ(0);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: filter 0.5s ease;
}

.unit-card:hover .card-img {
  transform: scale(1.12);
  filter: brightness(1.08);
}

/* Floating Glassmorphism Status Badges */
.facility-badges-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.facility-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.facility-badge.badge-green {
  border-color: rgba(46, 204, 113, 0.4);
}

.facility-badge.badge-orange {
  border-color: rgba(224, 108, 43, 0.4);
  color: #F08038;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #2ECC71;
  box-shadow: 0 0 10px #2ECC71;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.8);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.unit-card:hover .facility-badge {
  transform: translateY(-2px);
}

.card-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.88) 85%, rgba(0, 0, 0, 0.96) 100%);
}

.card-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateZ(30px);
}

.unit-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.unit-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #D0D0D0;
  margin-top: 4px;
}

.card-footer {
  margin-top: 16px;
}

.card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.18);
  margin-bottom: 16px;
}

.btn-explore-wrap {
  display: flex;
  justify-content: flex-end;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 22px;
  border-radius: 50px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.arrow-icon-circle svg {
  width: 14px;
  height: 14px;
}

.btn-explore:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(217, 110, 20, 0.5);
}

.btn-explore:hover .arrow-icon-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Facility Lightbox & Specs Modal Styling
   ========================================================================== */
.facility-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.facility-modal.active {
  opacity: 1;
  visibility: visible;
}

.facility-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.facility-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-modal.active .facility-modal-card {
  transform: scale(1) translateY(0);
}

.facility-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.facility-modal-close svg {
  width: 22px;
  height: 22px;
}

.facility-modal-close:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: rotate(90deg);
}

.facility-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
}

.facility-modal-visual {
  position: relative;
  overflow: hidden;
  background: #0B0B0B;
}

.facility-visual-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.facility-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.facility-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(224, 108, 43, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.facility-modal-info {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}

.facility-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.eyebrow-accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
}

.eyebrow-text-small {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  text-transform: uppercase;
}

.facility-modal-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.facility-modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #B0B0B0;
  margin-bottom: 28px;
}

.facility-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.spec-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
}

.spec-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.facility-modal-features {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.features-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.features-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #E0E0E0;
}

@media (max-width: 900px) {
  .facility-modal-grid {
    grid-template-columns: 1fr;
  }

  .facility-modal-visual {
    height: 220px;
  }

  .facility-modal-info {
    padding: 30px 24px;
  }
}

/* Operations Responsive Media Queries */
@media (max-width: 1365px) {
  .operations-section {
    padding: 90px 5%;
  }

  .operations-container {
    gap: 3rem;
  }

  .card-malkapur {
    height: 520px;
  }

  .card-asangaon {
    height: 460px;
    transform: translateY(50px);
  }
}

@media (max-width: 1023px) {
  .operations-section {
    padding: 75px 5%;
  }

  .operations-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .card-malkapur,
  .card-asangaon {
    height: 480px;
  }

  .card-asangaon {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .operations-cards-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .unit-card {
    height: 420px;
  }
}

/* ==========================================================================
   WHAT WE SUPPLY / PRODUCTS SECTION STYLES
   ========================================================================== */

.products-section {
  padding: 100px 5%;
  background-color: #FAF6F0;
  position: relative;
  overflow: hidden;
}

.products-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Area */
.products-header {
  margin-bottom: 48px;
}

.products-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #C87A2A;
  border-radius: 1px;
}

.eyebrow-text {
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #C87A2A;
}

.products-title {
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.products-title .title-gray {
  color: #4A4A4A;
}

.products-title .title-orange {
  color: #D96E14;
}

/* Header Area with Nav Controls */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.products-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #EADBCE;
  background: #FAF3EB;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.products-nav-btn svg {
  width: 20px;
  height: 20px;
}

.products-nav-btn:hover:not(:disabled) {
  background: #D96E14;
  border-color: #D96E14;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 110, 20, 0.25);
}

.products-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #EADBCE;
  background: #F5EAE0;
  color: #A1A1AA;
}

/* Carousel Viewport & Dynamic Track Layout */
.products-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0 24px 0;
  /* Padding for card lift hover effect */
  margin: -12px 0 -24px 0;
  touch-action: pan-y;
}

.products-carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.products-carousel-track.dragging {
  cursor: grabbing;
}

/* Card Container & Styling */
.products-carousel-track .product-card {
  flex: 0 0 calc(25% - 15px);
  /* 4 columns on Desktop */
  min-width: 0;
  height: 380px;
  border-radius: 18px;
  background: linear-gradient(180deg, #EFC498 0%, #F7DCBF 30%, #FAF2E8 68%, #FAF6F0 100%);
  border: 1px solid #E6CAB0;
  box-shadow: 0 4px 18px rgba(180, 110, 50, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: grab;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Non-Active Card Hover State (Gentle Lift & Soft Border - Distinct from Active Card) */
.product-card:hover:not(.active) {
  border-color: #D8A574;
  box-shadow: 0 8px 22px rgba(180, 110, 50, 0.12);
}

.product-card:hover:not(.active) .product-title {
  color: #333333;
}

/* Active Selected Card State (Exclusive Highlight) */
.product-card.active {
  border: 2px solid #D96E14 !important;
  box-shadow: 0 12px 32px rgba(217, 110, 20, 0.25) !important;
  background: linear-gradient(180deg, #F3CFAB 0%, #F9E2C8 30%, #FAF2E8 68%, #FAF6F0 100%);
}

.product-card.active .product-title {
  color: #D96E14 !important;
  font-weight: 700 !important;
}

/* Image Area Top 70% */
.card-image-wrapper {
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 10px 20px;
  position: relative;
}

.product-img {
  display: block;
  margin: 0 auto;
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Title Area Bottom 30% */
.card-content {
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 20px 16px;
  text-align: center;
}

.product-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  transition: color 0.3s ease;
}

/* Carousel Indicators / Dynamic Pagination Dots (Bottom Centered) */
.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E0D5C8;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
  background-color: #D96E14;
  transform: scale(1.25);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .products-carousel-track .product-card {
    flex: 0 0 calc(50% - 10px);
    /* 2 columns on Tablet */
  }
}

@media (max-width: 600px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .products-carousel-track .product-card {
    flex: 0 0 100%;
    /* 1 column on Mobile */
  }

  .products-title {
    font-size: 2.5rem;
  }

  .products-section {
    padding: 60px 5%;
  }
}

/* ==========================================================================
   PRODUCT DETAIL / INTERACTIVE FOCUS VIEW SECTION (ULTRA 4-SIDE MELT DESIGN)
   ========================================================================== */
.product-focus-view {
  margin-top: 48px;
  padding: 80px 24px 70px 24px;
  background-color: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  perspective: 1000px;

  /* Ultra-Smooth 4-Side Multi-Layer Feather Melt Mask */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.85) 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0.85) 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

/* Background Parallax Grid Layer */
.product-focus-parallax-bg {
  position: absolute;
  top: -35%;
  left: -10%;
  width: 120%;
  height: 170%;
  pointer-events: none;
  z-index: 0;

  /* Soft Subtle Grid Overlay Pattern */
  background-image:
    linear-gradient(rgba(200, 180, 155, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 180, 155, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center center;
  will-change: transform;
}

.focus-circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px auto;
  position: relative;
  z-index: 2;
}

/* Delicate Thin Circular Frame matching screenshot */
.focus-circle-frame {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1.5px solid #8FA382;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(250, 245, 238, 0) 72%);
  transform-style: preserve-3d;
  will-change: transform;
}

.focus-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.focus-image-container .detail-image {
  width: 88%;
  height: 88%;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.focus-circle-frame:hover .detail-image {
  transform: scale(1.08);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.16));
}

/* Green Circular Navigation Arrows on Circle Perimeter */
.focus-circle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4E6930;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(78, 105, 48, 0.3);
  outline: none;
}

.focus-circle-nav svg {
  width: 18px;
  height: 18px;
}

.focus-circle-nav.prev-nav {
  left: -20px;
}

.focus-circle-nav.next-nav {
  right: -20px;
}

.focus-circle-nav:hover {
  background-color: #3B5223;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 16px rgba(59, 82, 35, 0.4);
}

/* Centered Main Product Title matching screenshot */
.focus-product-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  color: #3C572D;
  line-height: 1.15;
  margin: 0 auto 16px auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Centered Product Description matching screenshot */
.focus-product-description {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #555555;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
  .product-focus-view {
    padding: 50px 16px 40px 16px;
    margin-top: 36px;
    border-radius: 24px;
  }

  .focus-circle-frame {
    width: 280px;
    height: 280px;
  }

  .focus-image-container .detail-image {
    max-width: 230px;
    max-height: 230px;
  }

  .focus-circle-nav.prev-nav {
    left: -14px;
  }

  .focus-circle-nav.next-nav {
    right: -14px;
  }

  .focus-product-title {
    font-size: 2.4rem;
  }

  .focus-product-description {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* ==========================================================================
   Section Separator Divider Line (Matching Figma / Mockup Design)
   ========================================================================== */
.section-separator-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  padding-bottom: 10px;
}

.section-separator {
  width: 40%;
  max-width: 600px;
  height: 1px;
  background-color: #D3C4B3;
  opacity: 0.35;
  border-radius: 1px;
}

.leadership-section .section-separator {
  width: 35%;
  max-width: 500px;
}

@media (max-width: 768px) {
  .section-separator-wrap {
    margin-top: 45px;
  }

  .section-separator,
  .leadership-section .section-separator {
    width: 65%;
  }
}

/* ==========================================================================
   OUR LEADERSHIP SECTION STYLES
   ========================================================================== */

.leadership-section {
  padding: 100px 5%;
  background-color: #FAF6F0;
  position: relative;
  overflow: hidden;
}

/* Leadership Background Watermark */
.leadership-watermark {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(200, 122, 42, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.leadership-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Area */
.leadership-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 54px;
}

.leadership-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.leadership-eyebrow .eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange, #E06C2B), #F08038);
  border-radius: 2px;
}

.leadership-eyebrow .eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-orange, #E06C2B);
  text-transform: uppercase;
}

.leadership-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: #1A1816;
  margin: 0 0 20px 0;
}

.leadership-title .title-orange {
  color: var(--primary-orange, #E06C2B);
}

.leadership-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #666666;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}

/* Cards Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Individual Leader Card */
.leadership-card {
  background-color: #FAF6F0;
  border: 1px solid #E6DCCD;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.leadership-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Leader Image Box & Overlay */
.leader-image-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
  background-color: #E8DFD3;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.5s ease;
}

.leadership-card:hover .leader-img {
  transform: scale(1.03);
}

/* Experience Pill Badge */
.experience-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D96E14;
  box-shadow: 0 0 6px #D96E14;
}

.badge-text {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Dark Bottom Gradient for Image Text Readability */
.leader-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Leader Name & Role Overlay */
.leader-overlay-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #FFFFFF;
}

.leader-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 2px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.leader-role {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Card Bottom Text Body */
.leader-card-body {
  padding: 20px 14px 16px 14px;
  display: flex;
  flex-direction: column;
}

.leader-location {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
}

.leader-bio {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

/* Responsive Media Queries for Leadership Section */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .leader-image-wrapper {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .leadership-section {
    padding: 60px 5%;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .leader-image-wrapper {
    height: 380px;
  }

  .leadership-title {
    font-size: 2.4rem;
  }

  .leadership-subtitle {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   Leadership Section Footer CTA Block
   ========================================================================== */
.leadership-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 36px;
  gap: 18px;
}

.leadership-footer-text {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #555555;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
}

.btn-meet-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 6px 12px;
  position: relative;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-meet-team:hover {
  color: #D96E14;
}

.btn-meet-team:hover .team-arrow-icon {
  transform: translate(3px, -3px);
}

@media (max-width: 640px) {
  .leadership-footer {
    margin-top: 28px;
    gap: 14px;
  }

  .leadership-footer-text {
    font-size: 13.5px;
    padding: 0 10px;
  }
}

/* ==========================================================================
   PRODUCT CATEGORIES MARQUEE SECTION STYLES (DYNAMIC SCROLL ENGINE)
   ========================================================================== */

.marquee-section {
  padding: 36px 0;
  background-color: #FAF6F0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 122, 42, 0.12);
  border-bottom: 1px solid rgba(200, 122, 42, 0.12);
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  padding: 14px 0;
  /* Prevents top/bottom hover clipping */
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 6px 0;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 6px 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 34px;
  border: 1.5px dashed #C87A2A;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  will-change: transform;
}

.marquee-item:hover {
  background-color: #FFFFFF;
  border-color: #D96E14;
  border-style: solid;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(217, 110, 20, 0.22);
}

.marquee-icon {
  font-size: 1.3rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover .marquee-icon {
  transform: scale(1.25) rotate(-6deg);
}

.marquee-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: #C87A2A;
  letter-spacing: 0.4px;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.marquee-item:hover .marquee-text {
  color: #D96E14;
}

/* Responsive adjustments for Marquee */
@media (max-width: 768px) {
  .marquee-section {
    padding: 24px 0;
  }

  .marquee-track,
  .marquee-group {
    gap: 18px;
  }

  .marquee-item {
    padding: 9px 24px;
    border-radius: 40px;
    gap: 8px;
  }

  .marquee-icon {
    font-size: 1.1rem;
  }

  .marquee-text {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   TESTIMONIALS & OPERATIONS VIDEO COMBINED SECTION
   ========================================================================== */

.testimonials-video-section {
  width: 100%;
  position: relative;
  background-color: #FAF6F0;
  overflow: hidden;
}

/* Top Area: Testimonial */
.testimonial-top-area {
  padding: 90px 5% 100px 5%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.testimonials-eyebrow .eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #C87A2A;
  border-radius: 1px;
}

.testimonials-eyebrow .eyebrow-text {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #C87A2A;
  text-transform: uppercase;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.testimonial-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.45;
  color: #383838;
  max-width: 780px;
  margin: 0 0 34px 0;
  padding: 0;
  letter-spacing: -0.2px;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E8DFD3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.author-name {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #333333;
}

/* Bottom Area: Operations Video Hero Block */
.video-operations-area {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5% 40px 5%;
}

.video-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.video-bg-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Gradient Fade Top: Blends from #FAF6F0 down into the image */
.video-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, #FAF6F0 0%, rgba(250, 246, 240, 0.65) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Gradient Fade Bottom: Dark overlay for crisp contrast and CTA background */
.video-gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 25, 10, 0.35) 60%, rgba(7, 21, 14, 0.9) 85%, #07150E 100%);
  pointer-events: none;
}

/* Content Container Over Image */
.video-operations-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Green Play Button Container & Interactive Pulsing Rings */
.video-play-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.video-play-wrap::before,
.video-play-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.65);
  pointer-events: none;
  animation: greenPulseWave 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}

.video-play-wrap::after {
  animation-delay: 1.2s;
}

@keyframes greenPulseWave {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }

  50% {
    opacity: 0.45;
  }

  100% {
    transform: scale(1.68);
    opacity: 0;
  }
}

.video-play-btn-green {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16A34A 0%, #0F6E33 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(19, 138, 68, 0.45), 0 0 25px rgba(22, 163, 74, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  outline: none;
}

.play-icon-white {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-btn-green:hover {
  background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
  transform: scale(1.12);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 42px rgba(22, 163, 74, 0.7), 0 0 35px rgba(34, 197, 94, 0.55);
}

.video-play-btn-green:hover .play-icon-white {
  transform: scale(1.2);
}

.video-play-btn-green:active {
  transform: scale(0.95);
  box-shadow: 0 6px 20px rgba(19, 138, 68, 0.4);
}

/* Section Title */
.video-operations-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Section Description */
.video-operations-desc {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Inline Embedded YouTube Iframe Container */
.video-iframe-embed-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 36px auto 0 auto;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(224, 108, 43, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: #000000;
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-iframe-embed-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(224, 108, 43, 0.45);
}

.video-iframe-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Supply Chain "Let's Work Together" CTA Banner */
.supply-chain-cta-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin-top: 140px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.supply-chain-cta-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.cta-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cta-eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background-color: #C87A2A;
  border-radius: 1px;
}

.cta-eyebrow-text {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #C87A2A;
  text-transform: uppercase;
}

.cta-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-right-col {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.btn-talk-team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #F27429 0%, #D9531E 100%);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 0 35px rgba(242, 116, 41, 0.65), 0 6px 20px rgba(217, 83, 30, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-talk-team:hover {
  background: linear-gradient(135deg, #F9813A 0%, #E65D26 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(242, 116, 41, 0.85), 0 8px 28px rgba(217, 83, 30, 0.6);
  color: #FFFFFF;
}

.btn-talk-team:hover .cta-arrow-icon {
  transform: translateX(4px);
}

.btn-talk-team:active {
  transform: translateY(0);
  box-shadow: 0 0 25px rgba(242, 116, 41, 0.5), 0 4px 12px rgba(217, 83, 30, 0.3);
}

/* Horizontal Bottom Separator Line */
.cta-bottom-line {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 55px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-top-area {
    padding: 60px 5% 65px 5%;
  }

  .video-operations-area {
    min-height: 540px;
    padding: 60px 5% 40px 5%;
  }

  .video-play-btn-green {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }

  .play-icon-white {
    width: 18px;
    height: 18px;
  }

  .video-operations-title {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }

  .video-operations-desc {
    font-size: 13.5px;
  }

  .supply-chain-cta-wrapper {
    margin-top: 60px;
    padding: 0 10px;
  }

  .supply-chain-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-title {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
  }
}

/* ==========================================================================
   SITE FOOTER SECTION
   ========================================================================== */

.site-footer {
  position: relative;
  width: 100%;
  background-color: #07150E;
  color: #FFFFFF;
  padding: 50px 5% 70px 5%;
  overflow: hidden;
}

.footer-inner-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Top Navigation Bar */
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 45px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #E06C2B;
}

/* Social Icons */
.footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-icon:hover {
  color: #E06C2B;
  transform: translateY(-2px);
}

/* Main Title: Adroit Overseas */
.footer-title-wrap {
  text-align: center;
  margin: 10px 0 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.footer-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  transition: text-shadow 0.4s ease, transform 0.4s ease;
}

.footer-title-wrap:hover .footer-title {
  text-shadow: 0 0 20px rgba(224, 108, 43, 0.4);
}

.footer-title-glow {
  position: relative;
  width: 160px;
  height: 2.5px;
  background: linear-gradient(90deg,
      rgba(224, 108, 43, 0) 0%,
      rgba(217, 110, 20, 0.35) 12%,
      #D96E14 30%,
      #FFC285 50%,
      #D96E14 70%,
      rgba(217, 110, 20, 0.35) 88%,
      rgba(224, 108, 43, 0) 100%);
  background-size: 200% 100%;
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(224, 108, 43, 0.6), 0 0 28px rgba(224, 108, 43, 0.25);
  animation: liquidGradientFlow 5s ease-in-out infinite alternate;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

/* Subtle, soft backlight aura under the line */
.footer-title-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(224, 108, 43, 0.5) 0%, rgba(224, 108, 43, 0) 75%);
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

/* Elegant, refined hover state without harsh jumping */
.footer-title-wrap:hover .footer-title-glow {
  box-shadow: 0 0 22px rgba(224, 108, 43, 0.9), 0 0 45px rgba(224, 108, 43, 0.45);
  transform: scaleX(1.06);
}

.footer-title-wrap:hover .footer-title-glow::before {
  opacity: 1;
}

/* Liquid Flow Keyframe Animation */
@keyframes liquidGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Card Column Section Headers */
.footer-card-headers {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 14px auto;
}

.head-offices-header,
.india-office-header {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* Cards Grid */
.footer-cards-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Individual Card Styling */
.footer-card {
  background: rgba(12, 30, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.head-offices-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}

.india-office-card {
  display: flex;
  flex-direction: column;
}

.office-subcol {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.office-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  flex-shrink: 0;
}

.office-name {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.office-detail {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 14px 0;
  font-weight: 300;
}

.office-detail strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.office-detail a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.office-detail a:hover {
  color: #E06C2B;
}

/* Footer Responsive Adjustments */
@media (max-width: 992px) {
  .footer-top-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-card-headers,
  .footer-cards-grid {
    grid-template-columns: 1fr;
  }

  .head-offices-card {
    flex-direction: column;
    gap: 30px;
  }

  .office-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 50px 5% 50px 5%;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-card {
    padding: 26px 24px;
  }
}

/* ==========================================================================
   YouTube Video Modal Lightbox
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 2;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(224, 108, 43, 0.25);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0A0908;
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(6px);
  outline: none;
}

.video-modal-close:hover {
  background: #E06C2B;
  border-color: #E06C2B;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(224, 108, 43, 0.7);
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
}

.video-modal-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000000;
}

.video-modal-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Banner */
.contact-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 24px 70px;
  background: radial-gradient(circle at 50% 20%, rgba(224, 108, 43, 0.15) 0%, rgba(10, 9, 8, 1) 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--primary-orange);
  display: inline-block;
}

.contact-eyebrow-text {
  color: var(--primary-orange);
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-ls);
  font-weight: var(--eyebrow-weight);
  text-transform: uppercase;
}

.contact-hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
}

.contact-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* Main Contact Section */
.contact-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 44px;
  backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 24px 20px;
  }
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text-white);
  margin-bottom: 8px;
}

.contact-form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #E2E8F0;
  text-transform: uppercase;
}

.form-label span {
  color: var(--primary-orange);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(224, 108, 43, 0.3);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E06C2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.form-select option {
  background: #1A1A1A;
  color: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit-form {
  margin-top: 12px;
  width: 100%;
  padding: 16px 28px;
  background: var(--primary-orange);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(224, 108, 43, 0.35);
}

.btn-submit-form:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 108, 43, 0.5);
}

.btn-submit-form svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-submit-form:hover svg {
  transform: translateX(4px);
}

/* Contact Side Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}

.sidebar-card:hover {
  border-color: rgba(224, 108, 43, 0.4);
}

.sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(224, 108, 43, 0.15);
  border: 1px solid rgba(224, 108, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.sidebar-icon svg {
  width: 24px;
  height: 24px;
}

.sidebar-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.sidebar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #D1D5DB;
}

.contact-info-item strong {
  color: var(--primary-orange);
}

.contact-info-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #12753E;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Google Maps Section */
.maps-section {
  padding: 80px 24px 100px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.maps-container {
  max-width: 1280px;
  margin: 0 auto;
}

.maps-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.maps-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: #FFFFFF;
  margin-bottom: 12px;
}

.maps-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Map Filter Tabs */
.maps-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.map-tab-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-tab-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.map-tab-btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(224, 108, 43, 0.4);
}

/* Maps Grid */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .maps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }
}

.map-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 108, 43, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.map-card.hidden {
  display: none;
}

.map-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.05) saturate(1.1);
}

.map-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.map-location-tag {
  align-self: flex-start;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(224, 108, 43, 0.15);
  border: 1px solid rgba(224, 108, 43, 0.3);
  color: var(--primary-orange);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.map-office-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.map-office-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.map-office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.map-office-detail-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-office-detail-item a {
  color: #E5E7EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-office-detail-item a:hover {
  color: var(--primary-orange);
}

.btn-get-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-get-directions:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-get-directions svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   TEAM PAGE STYLING
   ========================================================================== */

/* Hero Banner */
.team-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 24px 60px;
  background: radial-gradient(circle at 50% 30%, rgba(217, 110, 20, 0.12) 0%, rgba(10, 9, 8, 1) 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Team hero header row styled via unified hero-header-row rules */

.team-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 400;
}

.team-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

/* Department Filter Bar */
.team-filter-section {
  padding: 40px 24px 20px;
  background-color: #0A0908;
}

.team-filter-container {
  max-width: 1240px;
  margin: 0 auto;
}

.team-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  backdrop-filter: blur(10px);
}

.team-filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: 40px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.team-filter-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.team-filter-btn.active {
  background: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--orange-glow);
}

/* Team Grid Section */
.team-grid-section {
  padding: 40px 24px 80px;
  background-color: #0A0908;
}

.team-grid-container {
  max-width: 1240px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

/* Team Card */
.team-card {
  background: rgba(20, 24, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 108, 43, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(224, 108, 43, 0.15);
}

.team-card.hide {
  display: none !important;
}

.team-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #151916;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.team-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 9, 8, 0.95) 100%);
  pointer-events: none;
}

.team-experience-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 108, 43, 0.4);
  border-radius: 20px;
}

.team-experience-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.team-experience-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.team-overlay-content {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.team-dept-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  margin-bottom: 4px;
}

.team-member-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: #FFFFFF;
  line-height: 1.1;
  font-weight: 400;
}

.team-member-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Card Body */
.team-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-member-bio {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-location {
  font-size: 0.8rem;
  color: var(--primary-orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.team-social-links {
  display: flex;
  gap: 10px;
}

.team-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.team-social-icon:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.team-social-icon svg {
  width: 14px;
  height: 14px;
}

/* Stats Section */
.team-stats-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, #0A0908 0%, #121813 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-stats-container {
  max-width: 1240px;
  margin: 0 auto;
}

.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--card-radius);
  transition: border-color var(--transition-fast);
}

.team-stat-card:hover {
  border-color: rgba(224, 108, 43, 0.4);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Team CTA Section */
.team-cta-section {
  padding: 80px 24px;
  background-color: #0A0908;
}

.team-cta-container {
  max-width: 1240px;
  margin: 0 auto;
}

.team-cta-card {
  padding: 60px 40px;
  background: radial-gradient(circle at 0% 0%, rgba(224, 108, 43, 0.2) 0%, rgba(20, 24, 20, 0.9) 70%);
  border: 1px solid rgba(224, 108, 43, 0.3);
  border-radius: 24px;
  text-align: center;
}

.team-cta-eyebrow {
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-ls);
  color: var(--primary-orange);
  display: block;
  margin-bottom: 12px;
}

.team-cta-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.team-cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Responsive Breakpoints for Team Page */
@media (max-width: 1024px) {
  .team-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-filter-bar {
    border-radius: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }

  .team-stats-grid {
    grid-template-columns: 1fr;
  }

  .team-cta-card {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   About Us Page Styles & Hero Section (Reference Matched)
   ========================================================================== */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 120px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 110%;
  height: 130%;
  background-image: url('assets/images/about-processing.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  transform: scale(1.1);
  pointer-events: none;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 9, 5, 0.88) 0%,
      rgba(18, 12, 7, 0.75) 40%,
      rgba(35, 24, 15, 0.65) 65%,
      rgba(250, 246, 240, 0.85) 88%,
      #FAF6F0 100%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.about-hero-content {
  max-width: 780px;
}

/* Back to Home Button & Eyebrow Header Row */
.about-hero-header-row,
.team-hero-header-row,
.contact-hero-header-row {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 24px !important;
  flex-wrap: wrap !important;
}

.about-hero-back,
.team-hero-back,
.contact-hero-back {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 0 !important;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.about-hero-back:hover,
.team-hero-back:hover,
.contact-hero-back:hover {
  color: var(--primary-orange);
  transform: translateX(-4px);
}

.about-hero-back .arrow,
.team-hero-back .arrow,
.contact-hero-back .arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.about-hero-back:hover .arrow,
.team-hero-back:hover .arrow,
.contact-hero-back:hover .arrow {
  transform: translateX(-3px);
}

/* Eyebrow Tag with Dash */
.about-hero-eyebrow,
.team-eyebrow,
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.about-hero-dash,
.team-eyebrow-line,
.contact-eyebrow-line {
  width: 28px;
  height: 2px;
  background-color: var(--primary-orange);
  display: inline-block;
  border-radius: 1px;
  flex-shrink: 0;
}

.about-hero-eyebrow-text,
.team-eyebrow-text,
.contact-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-orange);
}

/* Hero Main Title */
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.about-hero-title .title-line-1 {
  color: #FFFFFF;
  font-style: normal;
  font-weight: 400;
}

.about-hero-title .title-line-2 {
  color: var(--primary-orange);
  font-style: italic;
  font-weight: 400;
}

/* Hero Description */
.about-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 660px;
  font-weight: 400;
}

/* ==========================================================================
   About Page Body Sections
   ========================================================================== */

/* Our Story Section (Reference Matched) */
.about-story-section {
  padding: 100px 24px 120px;
  background-color: #FAF6F0;
  color: var(--text-dark);
}

.about-story-container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: flex-start;
}

/* Left Column */
.about-story-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-story-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #1E1E1E;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-story-line {
  width: 64px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 1px;
}

/* Right Column */
.about-story-lead {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
  line-height: 1.65;
  color: #222222;
  font-weight: 400;
  margin-bottom: 28px;
}

.about-story-p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.75;
  color: #555555;
  margin-bottom: 24px;
}

/* Inline Stats Grid */
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 10px;
}

.story-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease;
}

.story-stat-item:hover {
  transform: translateY(-4px);
}

.story-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1;
  color: #1E1E1E;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.story-counter-num {
  font-variant-numeric: tabular-nums;
}

.story-counter-suffix {
  display: inline-block;
  color: var(--primary-orange, #E05A10);
  font-style: normal;
}

.story-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777777;
  text-transform: uppercase;
}

/* ==========================================================================
   Processing Facilities Gallery & Lightbox Pop-up Modal
   ========================================================================== */
.about-gallery-section {
  padding: 100px 24px 120px;
  background-color: #0A0908;
  color: #FFFFFF;
}

.about-gallery-container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-gallery-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.about-gallery-header {
  text-align: left;
  max-width: 760px;
}

.about-gallery-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0;
}

/* Gallery Controls */
.about-gallery-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.about-gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.about-gallery-nav-btn svg {
  width: 20px;
  height: 20px;
}

.about-gallery-nav-btn:hover:not(:disabled) {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--orange-glow-heavy);
}

.about-gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

/* Gallery Carousel Track & Viewport */
.about-gallery-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0 24px 0;
  margin: -12px 0 -24px 0;
  touch-action: pan-y;
}

.about-gallery-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-gallery-track.dragging {
  cursor: grabbing;
  transition: none !important;
}

.about-gallery-track .gallery-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: calc((100% - 56px) / 3);
}

/* Pagination Dots */
.about-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  margin: 36px auto 0;
  flex-wrap: wrap;
}

.about-gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-gallery-dots .dot.active {
  background-color: var(--primary-orange);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 14px var(--orange-glow-heavy);
}

@media (max-width: 1024px) {
  .about-gallery-track .gallery-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 640px) {
  .about-gallery-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-gallery-track .gallery-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 108, 43, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.gallery-card-inner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

/* Overlay & Zoom Icon */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
  background: rgba(10, 9, 8, 0.55);
}

.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.gallery-zoom-icon svg {
  width: 22px;
  height: 22px;
}

.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 0 20px var(--orange-glow-heavy);
}

.gallery-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  text-transform: uppercase;
}

.gallery-card-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.25;
}

/* Lightbox Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(8px);
}

.gallery-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal.active .gallery-modal-content {
  transform: scale(1);
}

.gallery-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-modal-close:hover {
  background: var(--primary-orange);
  transform: rotate(90deg);
}

.gallery-modal-close svg {
  width: 22px;
  height: 22px;
}

.gallery-modal-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
  max-height: 80vh;
}

.gallery-modal-img-wrap img {
  display: block;
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-modal-caption {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ==========================================================================
   Vision, Mission & 3 P's Values Section
   ========================================================================== */
.about-purpose-section {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 160px;
  background-color: #0d0d0d;
  color: #FFFFFF;
}

.purpose-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.purpose-bg-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-orange);
  top: -150px;
  left: -200px;
}

.purpose-bg-shape.shape-2 {
  width: 500px;
  height: 500px;
  background: #5c3515;
  bottom: 0;
  right: -100px;
}

.about-purpose-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.about-purpose-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.about-purpose-title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-purpose-subtitle {
  font-size: 1.15rem;
  color: #BBBBBB;
  line-height: 1.7;
}

/* Vision & Mission 2-Column Cards */
.purpose-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.purpose-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 44px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(224, 108, 43, 0.15);
  border-color: rgba(224, 108, 43, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.purpose-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(224, 108, 43, 0.15);
  border-radius: 30px;
  color: var(--primary-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(224, 108, 43, 0.2);
}

.purpose-card-badge svg {
  width: 18px;
  height: 18px;
}

.purpose-card-heading {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

.purpose-card-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #BBBBBB;
}

/* Values (3 P's) Block */
.purpose-values-wrapper {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 70px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.purpose-values-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.values-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 20px;
}

.values-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.purpose-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(224, 108, 43, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 108, 43, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover .value-icon-box {
  transform: scale(1.15) rotate(8deg);
  background: #FFFFFF;
  color: var(--primary-orange);
  box-shadow: 0 10px 24px rgba(224, 90, 16, 0.4);
}

.value-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-orange);
  color: #FFFFFF;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px var(--orange-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.value-icon-box svg {
  width: 28px;
  height: 28px;
}

.value-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.value-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 2;
}

.value-name {
  font-size: 1.8rem;
  color: #FFFFFF !important;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #DDDDDD !important;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Responsive Media Queries for About Page */
@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-vm-grid {
    grid-template-columns: 1fr;
  }

  .purpose-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .purpose-values-wrapper {
    padding: 36px 24px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 75vh;
    padding: 130px 20px 90px;
  }
}

@media (max-width: 640px) {
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Floating Back To Hero Button (Triggers at 25% Scroll)
   ========================================================================== */
.back-to-hero-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  outline: none;
}

.back-to-hero-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-hero-btn:hover {
  background: var(--primary-orange-hover);
  box-shadow: 0 12px 30px var(--orange-glow-heavy);
  transform: translateY(-4px) scale(1.08);
}

.back-to-hero-btn:active {
  transform: translateY(0) scale(0.95);
}

.back-to-hero-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.back-to-hero-btn:hover .back-to-hero-icon {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-hero-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .back-to-hero-icon {
    width: 18px;
    height: 18px;
  }
}