:root {
  --navy: #0b1c2d;
  --gold: #2e7847;
  --gold-hover: #2e7847;
  --white: #ffffff;
  --light-grey: #f5f7fa;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);

  --space-xl: 140px;
  --space-lg: 100px;
  --space-md: 60px;
  --space-sm: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

/* ==========================================================================
   2. GLOBAL UTILITIES & COMPONENTS
   ========================================================================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center {
  text-align: center;
}
.bg-dark {
  background-color: var(--navy);
  color: var(--white);
}
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}
.bg-light {
  background-color: var(--light-grey);
}

.section-padding {
  padding: var(--space-xl) 0;
}
.section-header {
  margin-bottom: var(--space-md);
}

.accent-text {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(11, 28, 45, 0.95);
  backdrop-filter: blur(5px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 35px;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition);
  opacity: 0.8;
}
.nav-links .active-link {
  color: green;
  font-weight: 600;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Side Nav */
.sidenav {
  position: fixed !important;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
}

.sidenav.open {
  right: 0;
}

.sidenav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sidenav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sidenav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.sidenav-close:hover {
  opacity: 1;
  color: var(--gold);
}

.sidenav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidenav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.sidenav-links a:hover,
.sidenav-links a.active-link {
  opacity: 1;
  color: var(--gold);
}

/* Mobile: show hamburger, hide nav-links */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--navy) 10%,
    rgba(11, 28, 45, 0.7) 50%,
    transparent 100%
  );
  z-index: 2;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  font-size: clamp(4.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 4.5rem;
  letter-spacing: -2px;
  text-transform: uppercase;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Hero Floating Cards */
/* Hero Floating Cards */
.hero-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0;
  width: 100%;
  align-self: center;
}

.floating-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.floating-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 3px;
}

.card-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  white-space: nowrap;
}

.fc1 {
  animation: float1 8s ease-in-out infinite;
}
.fc2 {
  animation: float2 10s ease-in-out infinite;
  animation-delay: 2s;
}
.fc3 {
  animation: float3 9s ease-in-out infinite;
  animation-delay: 4s;
}
.fc4 {
  animation: float4 11s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float4 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .hero-card-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .floating-card {
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    min-width: 0; /* prevents cards from overflowing grid cells */
  }

  .card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .card-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .card-value {
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

/* ==========================================================================
   5. TRUST STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--light-grey);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(11, 28, 45, 0.6);
  transition: var(--transition);
}

.trust-item:hover {
  color: var(--gold);
  transform: scale(1.05);
}
/* ==========================================================================
   MOBILE FIXES: HERO & TRUST STRIP (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
  /* --- HERO SECTION FIX --- */
  .hero {
    height: auto; /* Allows section to grow with text and cards */
    min-height: 100vh;
    padding-top: 120px; /* Space for the fixed navbar */
    padding-bottom: 60px;
    display: block; /* Change from flex to block for easier stacking */
  }

  .hero-content {
    grid-template-columns: 1fr; /* Stacks text on top of cards */
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.4rem; /* Significantly smaller for mobile screens */
    line-height: 1.2; /* FIX: Prevents lines from overlapping */
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .btn-group {
    justify-content: center; /* Centers buttons on mobile */
  }

  .hero-bg-text {
    font-size: 40vw; /* Scale down the background "FITZGERALD" text */
    opacity: 0.02;
  }

  /* --- HERO CARDS FIX --- */
  .hero-card-wrapper {
    grid-template-columns: 1fr; /* One card per row */
    max-width: 350px;
    margin: 0 auto;
  }

  .floating-card {
    animation: none !important; /* Stop floating on mobile to prevent layout jumps */
    padding: 15px;
  }

  /* --- TRUST STRIP FIX --- */
  .trust-strip {
    padding: 40px 0;
  }

  .trust-grid {
    display: grid; /* MUST change flex to grid for columns to work */
    grid-template-columns: 1fr 1fr; /* 2 items per row */
    gap: 20px;
    text-align: center;
  }

  .trust-item {
    font-size: 0.75rem;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Optional: adds structure */
    border-radius: 4px;
  }
}

/* Extra small mobile fix */
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr; /* 1 item per row on very small phones */
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}
/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
  transition: var(--transition);
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--navy);
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* ==========================================================================
   7. CORE SERVICES
   ========================================================================== */
.services {
  background-color: var(--navy);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 30px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 800;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.service-number {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  color: #999;
  position: absolute;
  right: 20px;
  top: 10px;
  transition: var(--transition);
}
.service-card:hover .service-number {
  color: rgba(201, 162, 39, 0.8);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(46, 120, 71, 0.15);
  border: 1px solid rgba(46, 120, 71, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: var(--transition);
}

.service-card:hover .service-link {
  gap: 14px;
}

/* ==========================================================================
   8. INDUSTRIAL E-SHOP
   ========================================================================== */
.e-shop {
  background-color: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.shop-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.shop-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.shop-list {
  list-style: none;
  margin-bottom: 40px;
}

.shop-list li {
  margin-bottom: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.shop-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  background: var(--light-grey);
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-item:hover .product-overlay {
  opacity: 1;
}
.product-item:hover img {
  transform: scale(1.1);
}
.product-overlay span {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: var(--transition);
}
.product-item:hover .product-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-block {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

.feature-block h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
/* ==========================================================================
   NEWS SECTION
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.news-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
}

.news-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.8rem;
  color: rgba(11, 28, 45, 0.4);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-body p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: var(--transition);
}

.news-card:hover .news-link {
  gap: 14px;
}

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

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

/* ==========================================================================
   10. PROCUREMENT PROCESS
   ========================================================================== */
.process {
  background: var(--navy);
  position: relative;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 80px;
  padding: 0 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 2;
  transition: width 2s ease-in-out;
}

.timeline.active::after {
  width: 100%;
}

.timeline-step {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 18%;
}

.step-dot {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.timeline-step:hover .step-dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.step-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.timeline-step:hover .step-title {
  color: var(--gold);
}

/* ==========================================================================
   11. PARTNERS
   ========================================================================== */
.partners {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.partners-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

/* ==========================================================================
   12. CTA SECTIONS
   ========================================================================== */
.supplier-cta {
  background:
    linear-gradient(rgba(11, 28, 45, 0.95), rgba(11, 28, 45, 0.95)),
    url("supplier-bg.jpg") center/cover;
  text-align: center;
  padding: var(--space-xl) 0;
  color: var(--white);
}

.supplier-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
}
.supplier-cta p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

.final-cta {
  padding: calc(var(--space-xl) * 1.5) 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 4.5rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.1;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 15px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ==========================================================================
   14. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .about-image {
    height: 400px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  .timeline::before {
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  .timeline::after {
    left: 20px;
    top: 0;
    width: 2px;
    height: 0;
    transition: height 2s;
  }
  .timeline.active::after {
    height: 100%;
  }
  .timeline-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  .step-dot {
    margin: 0;
  }
  .hero-card-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .service-grid,
  .features-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .final-cta h2 {
    font-size: 2.5rem;
  }
  .hero {
    min-height: 100vh;
    padding-top: 100px;
  }
  .hero-card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Partner Scroll */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.animate-scroll-left {
  animation: scrollLeft 35s linear infinite;
}
.animate-scroll-right {
  animation: scrollRight 35s linear infinite;
}

/* ======================================================================
   ABOUT PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--gold);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ── Mission / Vision ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.mv-card {
  padding: 50px 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card.dark {
  background: var(--navy);
  color: var(--white);
}
.mv-card.light {
  background: var(--light-grey);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.mv-card .mv-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
}
.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.mv-card.dark h3 {
  color: var(--white);
}
.mv-card.light h3 {
  color: var(--navy);
}
.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
}
.mv-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}
.mv-card.light p {
  color: #555;
}
.mv-bg-number {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
}
.mv-card.light .mv-bg-number {
  color: rgba(0, 0, 0, 0.04);
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--white);
}
.value-card h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
}

/* ── Team ── */
.team-leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.leader-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}
.leader-image {
  height: 320px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.leader-card:hover .leader-image img {
  transform: scale(1.05);
}
.leader-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    rgba(46, 120, 71, 0.4) 100%
  );
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
}
.leader-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
}
.leader-body {
  padding: 32px;
}
.leader-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.leader-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
}
.leader-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.qual-tag {
  background: var(--light-grey);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Staff Grid ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.staff-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.staff-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.staff-avatar {
  width: 50px;
  height: 50px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.staff-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.staff-info p {
  font-size: 0.78rem;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Impact ── */
.impact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(46, 120, 71, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.impact-text h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.impact-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}
.impact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.impact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}
.impact-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.impact-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.impact-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .mv-grid,
  .team-leaders-grid,
  .impact-content {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .values-grid,
  .staff-grid,
  .impact-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================================================
   CONTACT PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Contact Info Cards ── */
.contact-info-strip {
  background: var(--gold);
  padding: 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact-info-item {
  padding: 40px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}
.contact-info-item:last-child {
  border-right: none;
}
.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-text h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-text p,
.contact-info-text a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
  transition: var(--transition);
}
.contact-info-text a:hover {
  opacity: 0.8;
}

/* ── Main Contact Layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ── Contact Form ── */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}
.form-header {
  margin-bottom: 36px;
}
.form-header h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-header p {
  font-size: 0.95rem;
  color: #888;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--light-grey);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 120, 71, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.form-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ── Right Side Info ── */
.contact-side h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-side > p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Office Card */
.office-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.office-card h4 {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
}
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.office-detail:last-child {
  margin-bottom: 0;
}
.office-detail i {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.office-detail p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}
.office-detail a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition);
}
.office-detail a:hover {
  color: var(--gold);
}

/* Hours Card */
.hours-card {
  background: var(--light-grey);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}
.hours-card h4 {
  color: var(--navy);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:first-child {
  color: #666;
  font-weight: 500;
}
.hours-row span:last-child {
  color: var(--navy);
  font-weight: 700;
}
.hours-row .closed {
  color: #e74c3c;
}

/* Social Links */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── Map ── */
.map-section {
  background: var(--navy);
}
.map-wrapper {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
  opacity: 0.9;
}
.map-overlay-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 280px;
}
.map-overlay-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.map-overlay-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}
.map-pin {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .contact-info-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 30px 24px;
  }
  .map-overlay-card {
    display: none;
  }
}

/* ======================================================================
   CONSULTATION PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Type Selector ── */
.type-strip {
  background: var(--white);

  padding: 0;
}
.type-tabs {
  display: flex;
}
.type-tab {
  flex: 1;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  color: #aaa;
  border-bottom: 3px solid transparent;
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
}
.type-tab i {
  font-size: 1.1rem;
}
.type-tab:hover {
  color: var(--navy);
  background: var(--light-grey);
}
.type-tab.active {
  color: var(--gold);
}

/* ── Main Layout ── */
.consult-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

/* ── Form Panels ── */
.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
}
.form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}
.form-header {
  margin-bottom: 36px;
}
.form-header h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-header p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.7;
}
.form-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--light-grey);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 120, 71, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Calendar Grid ── */
.calendar-wrapper {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-nav h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--navy);
  transition: var(--transition);
}
.cal-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #aaa;
  padding: 6px 0;
}
.cal-day {
  text-align: center;
  padding: 10px 4px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) {
  border-color: var(--gold);
  color: var(--gold);
}
.cal-day.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.cal-day.today {
  border-color: var(--navy);
  font-weight: 900;
}
.cal-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  background: transparent;
}
.cal-day.empty {
  background: transparent;
  cursor: default;
}

/* ── Time Slots ── */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.time-slot {
  padding: 10px 8px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}
.time-slot:hover:not(.booked) {
  border-color: var(--gold);
  color: var(--gold);
}
.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.time-slot.booked {
  color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
  background: var(--light-grey);
}

/* ── Consultation Type Cards ── */
.consult-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.consult-type-card {
  padding: 18px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--light-grey);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.consult-type-card:hover {
  border-color: var(--gold);
}
.consult-type-card.selected {
  border-color: var(--gold);
  background: rgba(46, 120, 71, 0.05);
}
.consult-type-card i {
  font-size: 1.3rem;
  color: #aaa;
  margin-bottom: 8px;
  display: block;
  transition: var(--transition);
}
.consult-type-card.selected i,
.consult-type-card:hover i {
  color: var(--gold);
}
.consult-type-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

/* ── Submit Button ── */
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.form-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ── Success Message ── */
.success-msg {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.success-msg .check-circle {
  width: 80px;
  height: 80px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
}
.success-msg h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-msg p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Side Info ── */
.consult-side h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.consult-side > p {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Info cards */
.info-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.info-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.info-card:hover .info-card-icon {
  background: var(--gold);
  color: var(--white);
}
.info-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}
.info-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* What to expect */
.expect-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 16px;
}
.expect-card h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.expect-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.expect-item:last-child {
  margin-bottom: 0;
}
.expect-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.expect-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Expertise tags */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.expertise-tag {
  background: var(--light-grey);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.expertise-tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── Why consult section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .consult-layout {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consult-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 28px 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .type-tab span {
    display: none;
  }
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================================================
   ESHOP PAGE
   ====================================================================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* Shop bar */
.shop-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
  position: sticky;
  top: 80px;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.shop-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  min-width: 260px;
  position: relative;
}
.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}
.search-box input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--light-grey);
  outline: none;
  transition: var(--transition);
}
.search-box input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 120, 71, 0.08);
}
.cat-filter-btn {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: #888;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
}
.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.result-count {
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
}

/* Intro */
.intro-strip {
  background: var(--gold);
  padding: 50px 0;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.intro-strip h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
}
.intro-strip p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

/* Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 140px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 14px 0 14px 0 !important;
}
.sidebar-widget h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-cat:last-child {
  border-bottom: none;
}
.sidebar-cat i {
  width: 28px;
  height: 28px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.sidebar-cat:hover i,
.sidebar-cat.active i {
  background: var(--gold);
  color: var(--white);
}
.sidebar-cat span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  flex: 1;
}
.sidebar-cat:hover span,
.sidebar-cat.active span {
  color: var(--gold);
}
.cat-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--light-grey);
  color: #888;
  padding: 2px 7px;
  border-radius: 10px;
}
.subcats {
  padding-left: 38px;
  margin-top: 2px;
  display: none;
}
.subcats.open {
  display: block;
}
.subcat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.78rem;
  color: #999;
  font-weight: 600;
}
.subcat-item:last-child {
  border-bottom: none;
}
.subcat-item:hover,
.subcat-item.active {
  color: var(--gold);
}
.sub-badge {
  font-size: 0.62rem;
  background: var(--light-grey);
  color: #bbb;
  padding: 1px 6px;
  border-radius: 8px;
}
.enquiry-widget {
  background: var(--navy);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.enquiry-widget i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.enquiry-widget h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.enquiry-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Products area */
.products-area-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.products-area-header h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.sort-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sort-bar select {
  padding: 7px 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.view-toggle button {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #aaa;
  transition: var(--transition);
}
.view-toggle button.active,
.view-toggle button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.active-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(46, 120, 71, 0.1);
  border: 1px solid rgba(46, 120, 71, 0.2);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
}
.filter-tag:hover {
  background: rgba(46, 120, 71, 0.2);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-grid.list-view {
  grid-template-columns: 1fr;
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: var(--gold);
}
.product-img {
  position: relative;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.product-img i {
  font-size: 2rem;
  color: rgba(11, 28, 45, 0.12);
}
.product-img .sub-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(11, 28, 45, 0.2);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 5px;
}
.badge-instock {
  background: rgba(46, 120, 71, 0.15);
  color: var(--gold);
}
.badge-onrequest {
  background: rgba(11, 28, 45, 0.08);
  color: #666;
}
.product-enquire-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-enquire-overlay {
  opacity: 1;
}
.product-enquire-overlay a {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transform: translateY(8px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card:hover .product-enquire-overlay a {
  transform: translateY(0);
}
.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-subcat {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-body h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.product-body p {
  font-size: 0.76rem;
  color: #999;
  line-height: 1.6;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.product-id {
  font-size: 0.62rem;
  font-weight: 700;
  color: #ccc;
  font-family: monospace;
}
.product-enquire-btn {
  padding: 4px 10px;
  background: rgba(46, 120, 71, 0.1);
  color: var(--gold);
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.product-enquire-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* List view */
.product-grid.list-view .product-card {
  flex-direction: row;
}
.product-grid.list-view .product-img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
}
.product-grid.list-view .product-body {
  padding: 18px;
}

/* Section headers */
.cat-section {
  margin-bottom: 50px;
}
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}
.cat-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.cat-section-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}
.cat-section-header p {
  font-size: 0.8rem;
  color: #aaa;
}
.cat-section-header .pcount {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(46, 120, 71, 0.1);
  color: var(--gold);
  padding: 4px 11px;
  border-radius: 14px;
  border: 1px solid rgba(46, 120, 71, 0.2);
  white-space: nowrap;
}
.subcat-section {
  margin-bottom: 30px;
}
.subcat-title {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bbb;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.subcat-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 50px;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.page-btn:hover,
.page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* No results / loading */
.no-results {
  text-align: center;
  padding: 80px 40px;
}
.no-results i {
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.no-results h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.no-results p {
  color: #aaa;
  font-size: 0.88rem;
}
.loading {
  text-align: center;
  padding: 80px;
}
.loading i {
  font-size: 2rem;
  color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-strip-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .cat-filter-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
  }
}

/* ======================================================================
   NEWS PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Category Filter ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  position: sticky;
  top: 50px;
  z-index: 99;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: #888;
  font-family: "DM Sans", sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Featured Article ── */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
  transition: var(--transition);
  text-decoration: none;
}
.featured-article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}
.featured-image {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--navy);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.featured-article:hover .featured-image img {
  transform: scale(1.05);
}
.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-body {
  background: var(--navy);
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body .news-tag {
  display: inline-block;
  background: rgba(46, 120, 71, 0.2);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(46, 120, 71, 0.3);
  margin-bottom: 20px;
  width: fit-content;
}
.featured-body h2 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}
.featured-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.featured-meta span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-meta span i {
  color: var(--gold);
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.news-link:hover {
  gap: 14px;
}

/* ── News Grid ── */
.news-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}
.news-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.08);
}
.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.news-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 0.78rem;
  color: rgba(11, 28, 45, 0.4);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-body p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
}
.card-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: var(--transition);
}
.news-card:hover .card-news-link {
  gap: 14px;
}

/* ── Sidebar Layout ── */
.news-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

/* ── Sidebar ── */
.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-category:last-child {
  border-bottom: none;
}
.sidebar-category:hover {
  padding-left: 8px;
}
.sidebar-category span:first-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.sidebar-category:hover span:first-child {
  color: var(--gold);
}
.sidebar-category .cat-count {
  background: var(--light-grey);
  color: #888;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.recent-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: var(--transition);
}
.recent-post:last-child {
  border-bottom: none;
}
.recent-post:hover {
  padding-left: 6px;
}
.recent-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-grey);
  flex-shrink: 0;
}
.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}
.recent-post:hover .recent-info h5 {
  color: var(--gold);
}
.recent-info span {
  font-size: 0.75rem;
  color: #aaa;
}
.newsletter-widget {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}
.newsletter-widget h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  margin-bottom: 10px;
  outline: none;
}
.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover {
  background: rgba(46, 120, 71, 0.8);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}
.page-btn:hover,
.page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .news-with-sidebar {
    grid-template-columns: 1fr;
  }
  .news-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-article {
    grid-template-columns: 1fr;
  }
  .featured-image {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .news-main-grid {
    grid-template-columns: 1fr;
  }
  .filter-inner {
    gap: 8px;
  }
}

/* ======================================================================
   POST PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 30%, transparent 80%);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 60px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

.hero-category {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  max-width: 820px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-meta span i {
  color: var(--gold);
}

/* ── Article Layout ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  padding: 70px 0 80px;
}

/* ── Article Body ── */
.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a3a3a;
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 44px 0 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p {
  margin-bottom: 22px;
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 36px 0;
  padding: 20px 32px;
  background: #fffbf2;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

/* ── Article Share / Tags ── */
.article-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 20px;
}
.share-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-right: 12px;
}
.share-btns {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.share-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}
.back-btn:hover {
  gap: 12px;
}

/* ── Related Posts ── */
.related-section {
  background: var(--light-grey);
  padding: 70px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}
.news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.08);
}
.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.news-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 0.76rem;
  color: rgba(11, 28, 45, 0.4);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body p {
  font-size: 0.86rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
}
.card-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 18px;
  transition: var(--transition);
}
.news-card:hover .card-news-link {
  gap: 14px;
}

/* ── Sidebar ── */
.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.recent-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: var(--transition);
}
.recent-post:last-child {
  border-bottom: none;
}
.recent-post:hover {
  padding-left: 6px;
}
.recent-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-grey);
  flex-shrink: 0;
}
.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-info h5 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}
.recent-post:hover .recent-info h5 {
  color: var(--gold);
}
.recent-info span {
  font-size: 0.72rem;
  color: #aaa;
}

.newsletter-widget {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}
.newsletter-widget h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.newsletter-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.newsletter-btn:hover {
  background: #c69c3a;
}

/* ── Not Found ── */
.not-found {
  text-align: center;
  padding: 100px 20px;
}
.not-found h2 {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 16px;
}
.not-found p {
  color: #777;
  margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================================
   SERVICES PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Intro Strip ── */
.intro-strip {
  background: var(--gold);
  padding: 50px 0;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-strip h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
}
.intro-strip p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Phase Label ── */
.phase-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.phase-label i {
  color: var(--gold);
}

/* ── Phase Header ── */
.phase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.phase-header.white-border {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.phase-header h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.phase-number {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}
.phase-number.white {
  color: rgba(255, 255, 255, 0.05);
}

/* ── Service Detail Card ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.service-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-detail-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.service-detail-card:hover::after {
  transform: scaleY(1);
}

/* Dark variant for middle section */
.service-detail-card.dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-detail-card.dark-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.service-detail-card.dark-card h3 {
  color: var(--white);
}
.service-detail-card.dark-card p {
  color: rgba(255, 255, 255, 0.65);
}
.service-detail-card.dark-card .svc-icon {
  background: rgba(46, 120, 71, 0.2);
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-detail-card:hover .svc-icon {
  background: var(--gold);
  color: var(--white);
}
.service-detail-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-detail-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}
.service-detail-card ul {
  list-style: none;
  margin-top: 16px;
}
.service-detail-card ul li {
  font-size: 0.9rem;
  color: #666;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-detail-card ul li:last-child {
  border-bottom: none;
}
.service-detail-card ul li i {
  color: var(--gold);
  font-size: 0.75rem;
}
.service-detail-card.dark-card ul li {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* ── Full width card ── */
.service-full-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  transition: var(--transition);
  margin-bottom: 30px;
}
.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.service-full-card .svc-icon {
  margin-bottom: 20px;
}
.service-full-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-full-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

/* ── Why lean section ── */
.lean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.lean-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}
.lean-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}
.lean-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.lean-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.lean-card p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-strip-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .phase-number {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .lean-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   SUPPLIER PAGE
   ====================================================================== */
/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 40%,
    rgba(46, 120, 71, 0.3) 100%
  );
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #2e7847 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ── Intro Strip ── */
.intro-strip {
  background: var(--gold);
  padding: 50px 0;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.intro-strip h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
}
.intro-strip p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

/* ── Registration Form Section ── */
.registration-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* ── Form ── */
.reg-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}
.form-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.form-section-title i {
  color: var(--gold);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--light-grey);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 120, 71, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Checkbox group */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--light-grey);
}
.checkbox-item:hover {
  border-color: var(--gold);
  background: rgba(46, 120, 71, 0.05);
}
.checkbox-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.checkbox-item span {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

/* File upload */
.file-upload {
  width: 100%;
  padding: 20px;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: var(--light-grey);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.file-upload:hover {
  border-color: var(--gold);
  background: rgba(46, 120, 71, 0.04);
}
.file-upload i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.file-upload p {
  font-size: 0.85rem;
  color: #888;
}
.file-upload span {
  font-size: 0.75rem;
  color: #bbb;
}

/* Terms */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(46, 120, 71, 0.05);
  border: 1.5px solid rgba(46, 120, 71, 0.15);
  border-radius: 10px;
  margin-bottom: 24px;
  margin-top: 10px;
}
.terms-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.terms-check p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}
.terms-check a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ── Side Info ── */
.reg-side h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.reg-side > p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 30px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--gold);
  color: var(--white);
}
.benefit-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-text p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}
.steps-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 30px;
  margin-top: 24px;
}
.steps-card h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.step-item:last-child {
  margin-bottom: 0;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.step-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  padding-top: 4px;
}

/* ── Policies Section ── */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.policy-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.policy-card:hover::before {
  transform: scaleX(1);
}
.policy-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 120, 71, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.policy-card:hover .policy-icon {
  background: var(--gold);
  color: var(--white);
}
.policy-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.policy-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}
.download-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.download-btn i {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-strip-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
  }
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .reg-form-wrapper {
    padding: 28px 20px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
}

/* Grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
.footer-brand img {
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(46, 120, 71, 0.1);
}

/* Nav columns */
.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Contact list */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px !important;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.5;
}

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

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Watermark */
.footer-watermark {
  text-align: center;
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 8px;
  line-height: 1;
  padding: 0 5%;
  margin-top: -10px;
  user-select: none;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
