/* =====================================================
   HOA LONG INVEST Ã¢â‚¬â€ Design System & Styles
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ===================== CSS Variables ===================== */
:root {
  /* Primary Colors */
  --eco-green: #018045;
  --dark-navy: #0A274B;
  --cool-gray: #D5D5D5;

  /* Supplementary Colors */
  --green-dark: #005629;
  --green-bright: #00B752;
  --green-neon: #00FF6D;
  --green-lime: #72BD44;
  --white: #FFFFFF;
  --navy-blue: #0E4E9A;
  --steel-blue: #6F8FA7;
  --light-blue-gray: #E5E9F2;
  --orange: #F79429;
  --gold: #FFD700;

  /* Derived */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F7FA;
  --bg-dark: #0A274B;
  --bg-darker: #061A33;
  --text-primary: #0A274B;
  --text-secondary: #4A5568;
  --text-muted: #6F8FA7;
  --text-light: #E5E9F2;
  --border-color: rgba(213, 213, 213, 0.5);

  /* Gradients */
  --gradient-green: linear-gradient(135deg, #005629 0%, #018045 50%, #00B752 100%);
  --gradient-navy: linear-gradient(135deg, #061A33 0%, #0A274B 50%, #0E4E9A 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 39, 75, 0.92) 0%, rgba(1, 128, 69, 0.85) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(229, 233, 242, 0.6) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 39, 75, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 39, 75, 0.1);
  --shadow-lg: 0 8px 40px rgba(10, 39, 75, 0.15);
  --shadow-xl: 0 16px 60px rgba(10, 39, 75, 0.2);
  --shadow-green: 0 4px 30px rgba(1, 128, 69, 0.25);
  --shadow-glow: 0 0 30px rgba(0, 255, 109, 0.3);

  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Spacing */
  --section-padding: 40px 0;
  --container-width: 1280px;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.3, 1);
  --transition-base: 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  --transition-spring: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ===================== CSS Reset ===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================== Utility Classes ===================== */
.mobile-break {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center !important;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eco-green);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-green);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.8;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.btn-pulse {
  animation: btnPulse 2s infinite ease-in-out;
  display: inline-flex;
  align-items: center;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================== Scroll Animations ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1), transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1), transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1), transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.3, 1), transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--bg-darker);
  height: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.top-bar-left a:hover {
  color: var(--green-neon);
}

.top-bar-left svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white) !important;
  font-weight: 600;
  transition: color var(--transition-fast) !important;
}

.auth-link:hover {
  color: var(--green-neon) !important;
}

.auth-link svg {
  width: 14px;
  height: 14px;
}

.auth-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--eco-green);
  color: var(--white);
  transform: translateY(-1px);
}

.social-links a svg {
  width: 13px;
  height: 13px;
}

.lang-selector {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-selector:hover .lang-current {
  background: rgba(255, 255, 255, 0.15);
}

.lang-current svg {
  width: 14px;
  height: 14px;
}

.lang-current .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.lang-selector:hover .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 8px;
  background: var(--dark-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 120px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-option {
  display: block;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-neon);
}

/* ===================== HEADER / NAVBAR ===================== */
.header {
  position: sticky;
  top: -41px;
  /* Height of top-bar (40px) + border (1px) */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  /* JS will still add this class for navbar background/shadow changes */
}

.header.scrolled .navbar {
  background: rgba(10, 39, 75, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
}

.navbar {
  background: var(--white);
  padding: 12px 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
}

.scrolled-logo {
  display: none;
}

.header.scrolled .default-logo {
  display: none;
}

.header.scrolled .scrolled-logo {
  display: block;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-text .brand-tagline {
  font-size: 0.6rem;
  color: var(--green-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: block;
}

.nav-links .gnavi {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--eco-green);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.nav-links a:hover {
  color: var(--eco-green);
  background: rgba(1, 128, 69, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--eco-green);
}

.header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-links a::after {
  background: var(--green-bright);
}

.header.scrolled .nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header.scrolled .nav-links a.active {
  color: var(--green-bright);
}

/* ===================== SUBMENU (DESKTOP) ===================== */
.nav-links .gnavi>li {
  position: relative;
}

.nav-links .gnavi .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.nav-links .gnavi li:hover>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .gnavi .submenu li {
  position: relative;
  width: 100%;
}

.nav-links .gnavi .submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--dark-navy);
  border-bottom: 1px solid #f5f5f5;
  white-space: normal;
}

.nav-links .gnavi .submenu li:last-child a {
  border-bottom: none;
}

.nav-links .gnavi .submenu a::after {
  display: none;
}

.nav-links .gnavi .submenu a:hover {
  background: rgba(1, 128, 69, 0.08);
  color: var(--eco-green);
}

/* 3rd level submenu */
.nav-links .gnavi .submenu .submenu {
  top: 0;
  left: 100%;
}

/* Hide toggle icon on desktop */
.gnv-ico {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .hamburger span {
  background: var(--white);
}

.hamburger.active {
  opacity: 0.3;
}

/* Mobile Menu Close Button (Hidden on Desktop) */
#mobileMenuClose {
  display: none;
  position: absolute;
  right: 20%;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

#mobileMenuClose span {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--dark-navy);
}

#mobileMenuClose span:nth-child(1) {
  transform: rotate(45deg);
}

#mobileMenuClose span:nth-child(2) {
  transform: rotate(-45deg);
}



/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  width: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  display: none;
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 109, 0.3);
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.6;
  }

  75% {
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(1, 128, 69, 0.15);
  border: 1px solid rgba(0, 183, 82, 0.3);
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 183, 82, 0.2);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 183, 82, 0);
  }
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-bright), var(--green-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .number span {
  color: var(--green-bright);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-scroll 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 3px;
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 22px;
  }
}

@keyframes bounce-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===================== ABOUT SECTION ===================== */
.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 128, 69, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: all var(--transition-base);
}

.about-feature:hover {
  background: var(--light-blue-gray);
  transform: translateX(4px);
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.about-feature .icon svg {
  width: 18px;
  height: 18px;
}

.about-feature .text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.about-feature .text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-media {
  position: relative;
}

.about-video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/10;
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 128, 69, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(1, 128, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 128, 69, 0);
  }
}

.about-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-video-wrapper:hover img {
  transform: scale(1.05);
}

.about-video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(1, 128, 69, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: pulsePlay 2s infinite;
}

@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 128, 69, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(1, 128, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 128, 69, 0);
  }
}

.play-button:hover {
  background: var(--eco-green);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.about-floating-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(1, 128, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-green);
}

.about-floating-card .card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--eco-green);
}

.about-floating-card .card-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 51, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.video-modal.active {
  display: flex;
}

.video-modal .modal-content {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal .modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.video-modal .close-modal:hover {
  background: var(--eco-green);
}

/* ===================== STATS SECTION ===================== */
.stats-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

@keyframes shineEffect {
  0% {
    transform: translateX(-150%) skewX(-25deg);
  }

  20%,
  100% {
    transform: translateX(250%) skewX(-25deg);
  }
}

@keyframes subtleBreath {

  0%,
  100% {
    text-shadow: 0 0 0px rgba(1, 128, 69, 0);
  }

  50% {
    text-shadow: 0 0 15px rgba(1, 128, 69, 0.5);
  }
}

.stat-item {
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: rgba(1, 128, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-bright);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shineEffect 5s infinite;
}

.stat-item:hover .stat-icon {
  background: var(--green-bright);
  box-shadow: 0 10px 25px rgba(1, 128, 69, 0.5);
}

.stat-item:hover .stat-icon::before {
  display: none;
}

.stat-icon svg,
.stat-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-item:nth-child(1) .stat-icon::before,
.stat-item:nth-child(1) .stat-number {
  animation-delay: 0s;
}

.stat-item:nth-child(2) .stat-icon::before,
.stat-item:nth-child(2) .stat-number {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-icon::before,
.stat-item:nth-child(3) .stat-number {
  animation-delay: 1.0s;
}

.stat-item:nth-child(4) .stat-icon::before,
.stat-item:nth-child(4) .stat-number {
  animation-delay: 1.5s;
}

.stat-item:hover .stat-icon img,
.stat-item:hover .stat-icon svg {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(0) invert(1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.4s ease;
  animation: subtleBreath 5s ease-in-out infinite;
}

.stat-item:hover .stat-number {
  color: var(--green-bright) !important;
  text-shadow: 0 0 20px rgba(1, 128, 69, 0.6) !important;
  animation: none;
}

.stat-number .suffix {
  font-size: 1.5rem;
  color: var(--green-bright);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
  color: var(--white);
  transform: translateY(2px);
}

/* ===================== PROJECTS SECTION ===================== */
.projects {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.projects-header {
  text-align: center;
  margin-bottom: 30px;
}

.projects-header .section-subtitle {
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  position: relative;
  group: card;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(1, 128, 69, 0.15);
}

.project-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.08);
}

.project-card-image .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(1, 128, 69, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-card-image .badge svg {
  width: 12px;
  height: 12px;
}

.project-card-body {
  padding: 28px;
}

.project-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.project-card:hover .project-card-body h3 {
  color: var(--eco-green);
}

.project-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-body .project-cert {
  display: block;
  -webkit-line-clamp: unset;
  margin-top: -8px;
  margin-bottom: 20px;
  color: var(--dark-navy);
  font-weight: 500;
}

.project-card-body .project-cert strong {
  color: var(--eco-green);
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-card-tags span {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(1, 128, 69, 0.08);
  color: var(--eco-green);
  font-size: 0.75rem;
  font-weight: 600;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eco-green);
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
}

.project-card:hover .project-card-link {
  background: var(--green-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 86, 41, 0.3);
}

.project-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card:hover .project-card-link svg {
  transform: translateX(3px);
}

/* ===================== FEATURED PROJECT ===================== */
.featured-project {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #174b85 100%);
  position: relative;
  overflow: hidden;
}

.fp-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.fp-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  animation: floatBg 15s infinite linear;
}

.fp-shape.shape-1 {
  width: 250px;
  height: 250px;
  top: -50px;
  left: -50px;
  animation-duration: 20s;
}

.fp-shape.shape-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -50px;
  animation-duration: 25s;
  animation-direction: reverse;
  background: rgba(1, 128, 69, 0.05);
  /* slightly reduced opacity too */
}

.fp-shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 60%;
  animation-duration: 18s;
}

@keyframes floatBg {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(30px, -50px) rotate(120deg) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg) scale(0.95);
  }

  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

.featured-project .section-label {
  color: var(--green-bright);
}

.featured-project .fp-title {
  color: var(--white);
}

.featured-project .container {
  position: relative;
  z-index: 1;
}

.featured-project-inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  /* Text 40%, Image 60% */
  gap: 60px;
  align-items: center;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: none;
}

.fp-content {
  padding: 0;
}

.fp-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.featured-project .fp-location {
  color: var(--green-bright) !important;
  font-size: 1.1rem;
}

.fp-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 30px;
}

.fp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.fp-features li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-features li strong {
  color: var(--white);
}

.fp-features li::before {
  content: "Ã¢Å“â€œ";
  color: var(--white);
  background: var(--eco-green);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.fp-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fp-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .featured-project {
    padding: 40px 0;
  }

  .featured-project-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fp-content {
    padding: 20px 20px 30px;
  }

  .fp-image {
    order: -1;
    min-height: 200px;
  }
}

.fp-features {
  grid-template-columns: 1fr;
}

.fp-content {
  padding: 30px 20px;
}

.featured-project .fp-location {
  white-space: nowrap;
  font-size: clamp(0.75rem, 3.5vw, 0.95rem) !important;
  letter-spacing: -0.3px;
}

.featured-project .btn {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}

/* ===================== SERVICES SECTION ===================== */
.services {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
  }

  .services-layout .services-header {
    text-align: left;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
  }

  .services-layout .services-header .section-subtitle {
    margin: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  transition: all var(--transition-slow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}

.service-card.card-bg-1 {
  background: var(--light-blue-gray);
}

.service-card.card-bg-2 {
  background: var(--cool-gray);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 50px;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-arrow svg {
  width: 20px;
  height: 20px;
}

.service-card:hover .service-arrow {
  background: var(--eco-green);
  color: var(--white);
  transform: translateX(4px);
}

/* ===================== PRODUCTS SHOWCASE ===================== */
.products-showcase {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.products-showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(1, 128, 69, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.showcase-header {
  text-align: center;
  margin-bottom: 20px;
}

.showcase-header .section-subtitle {
  margin: 0 auto;
}

.products-flex-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 380px;
}

.product-expand-card {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: flex 0.7s ease;
  cursor: pointer;
}

.product-expand-card:hover {
  flex: 2.5;
}

.pec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-expand-card:hover .pec-bg {
  transform: scale(1.05);
}

.pec-top-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  z-index: 2;
  transition: all 0.4s ease;
}

.pec-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.product-expand-card:hover .pec-top-btn {
  background: #0b1f3f;
  color: var(--white);
}

.product-expand-card:hover .pec-top-btn svg {
  transform: rotate(-45deg);
}

.pec-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 30px 30px;
  background: linear-gradient(to top, rgba(11, 31, 63, 0.9) 0%, rgba(11, 31, 63, 0.5) 60%, transparent 100%);
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pec-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pec-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.7s ease;
}

.product-expand-card:hover .pec-content p {
  margin-top: 12px;
  max-height: 150px;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .products-flex-container {
    flex-direction: column;
    height: auto;
  }

  .product-expand-card,
  .product-expand-card:hover {
    height: 320px;
    flex: none;
  }

  .product-expand-card .pec-content p,
  .product-expand-card:hover .pec-content p {
    margin-top: 12px;
    max-height: 150px;
    opacity: 1;
  }

  .pec-content h3 {
    white-space: normal;
  }
}

/* ===================== PARTNERS SECTION ===================== */
.partners {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.partners-header {
  text-align: center;
  margin-bottom: 30px;
}

.partners-header .section-subtitle {
  margin: 0 auto;
}

.partners-logos {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partners-logos::before,
.partners-logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.partners-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.partners-logos::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}

.partners-track {
  display: flex;
  gap: 48px;
  animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: all var(--transition-base);
}

.partner-logo:hover {
  transform: translateY(-4px) scale(1.05);
}

.partner-logo img {
  max-width: 170px;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ===================== CERTIFICATIONS SECTION ===================== */
.certifications {
  padding: var(--section-padding);
  background: var(--dark-navy);
  color: var(--white);
  position: relative;
}

.certifications-header {
  text-align: center;
  margin-bottom: 50px;
}

.certifications-header .section-label {
  color: var(--green-bright);
}

.certifications-header .section-title {
  color: var(--white);
}

.certifications-header .section-subtitle {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-item {
  width: 400px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

.cert-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-item .cert-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cert-item .cert-icon svg {
  width: 22px;
  height: 22px;
}

.cert-item p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===================== NEWS SECTION ===================== */
.news {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 1px solid var(--border-color);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.06);
}

.news-card-image .date-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(10, 39, 75, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.news-card-body {
  padding: 24px;
  position: relative;
  padding-bottom: 70px;
}

.news-card-body .category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eco-green);
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.news-card:hover .news-card-body h3 {
  color: var(--eco-green);
}

.news-card-body .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eco-green);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.news-card-body .read-more:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

.news-card-body .read-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-body .read-more svg {
  transform: translateX(2px) translateY(-2px);
}

/* ===================== NEWS MOBILE CONTROLS ===================== */
.news-mobile-controls {
  display: none;
  /* hidden on desktop */
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--gradient-green);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content {
  text-align: left;
  position: relative;
  z-index: 1;
}

.cta-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-action-large {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  backdrop-filter: blur(10px);
}

.btn-action-large:hover {
  background: var(--white);
  color: var(--eco-green);
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--white);
}

.btn-action-large svg {
  flex-shrink: 0;
}

.cta-form-header {
  margin-bottom: 24px;
}

.cta-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.cta-form-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.btn-white {
  background: var(--white);
  color: var(--eco-green);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Form Styles */
.cta-form-wrapper {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.contact-form .form-row .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #f8fafc;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--eco-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 128, 69, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-submit {
  width: 100%;
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: var(--radius-full);
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    text-align: center;
    order: 2;
  }

  .cta-form-container {
    order: 1;
  }

  .cta-buttons {
    justify-content: center;
  }
}

.contact-form .form-row {
  flex-direction: column;
  gap: 15px;
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section {
  padding: var(--section-padding);
  overflow: hidden;
}

.testimonials-section .section-subtitle {
  margin: 0 auto;
}

.testimonial-container {
  margin-top: 40px;
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 340px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: auto;
  border: 2px solid var(--eco-green);
}

.testimonial-card:hover {
  background: var(--gradient-green);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(1, 128, 69, 0.2);
}

.testimonial-card .quote {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.testimonial-card:hover .quote {
  color: var(--white);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 2px;
  border: 2px solid var(--eco-green);
}

.testimonial-card:hover .author-avatar {
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-card .author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.testimonial-card:hover .author-info h4 {
  color: var(--white);
}

.testimonial-card .author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-card:hover .author-info span {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-controls {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.slider-progress {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: var(--eco-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eco-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.arrow-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.arrow-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 280px;
    padding: 24px;
  }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--eco-green);
  border-radius: 2px;
}

.footer-links-2cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}

.footer-links-2cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-2cols ul li {
  margin-bottom: 15px;
}

.footer-links-2cols ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links-2cols ul li a:hover {
  color: var(--green-bright);
  transform: translateX(4px);
}

.footer-social-squares {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social-squares a {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--eco-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social-squares a:hover {
  background: rgba(1, 128, 69, 0.8);
  transform: translateY(-3px);
}

.footer-social-squares a svg {
  width: 20px;
  height: 20px;
}

.footer-map-new {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item.new-contact .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: rgba(1, 128, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
}

.footer-contact-item .icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item .info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-item .info a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item .info a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--green-bright);
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Zalo floating button */
.zalo-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0068FF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 104, 255, 0.4);
  z-index: 900;
  transition: all var(--transition-base);
  animation: pulse-zalo 2s infinite;
}

@keyframes pulse-zalo {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 104, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 104, 255, 0);
  }
}

.zalo-float:hover {
  transform: scale(1.1);
}

.zalo-float svg {
  width: 28px;
  height: 28px;
}

/* ===================== CERTIFICATIONS ===================== */
.certifications {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.certifications-header {
  text-align: center;
  margin-bottom: 40px;
}

.certifications-header .section-subtitle {
  margin: 0 auto;
}

.cert-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.cert-item {
  flex: 1;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cert-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 24px;
}

.cert-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.6;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .nav-links a {
    font-size: 0.75rem;
    padding: 8px 8px;
  }
}

@media (max-width: 1024px) {


  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    display: flex;
    flex-direction: column-reverse;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 30px 0 0 0;
    margin: 0;
    align-items: flex-start;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: -1;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links .gnavi {
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    gap: 0;
  }

  .nav-links .gnavi li {
    width: 100%;
  }

  .nav-links a,
  .header.scrolled .nav-links a {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 20px;
    color: var(--dark-navy);
    border-bottom: 1px solid #eee;
    text-align: left;
    margin: 0;
  }

  .nav-links a::after,
  .header.scrolled .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .header.scrolled .nav-links a:hover {
    background-color: rgba(1, 128, 69, 0.1);
    color: var(--eco-green);
  }

  /* Submenu Mobile */
  .nav-links .gnavi .submenu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: rgba(0, 0, 0, 0.02);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links .gnavi li.active>.submenu {
    max-height: 1000px;
  }

  .nav-links .gnavi .submenu a {
    padding: 10px 20px 10px 35px;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
  }

  .nav-links .gnavi .submenu .submenu {
    left: 0;
  }

  .nav-links .gnavi .submenu .submenu a {
    padding-left: 50px;
  }

  .gnv-ico {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    cursor: pointer;
    z-index: 10;
  }

  .gnv-ico::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    border: solid var(--dark-navy);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s;
  }

  .gnavi li.active>.gnv-ico::before {
    transform: rotate(-135deg);
  }

  #mobileMenuClose {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  :root {
    --section-padding: 20px 0;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .top-bar {
    display: none;
  }

  .top-bar-right {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }

  .auth-links {
    white-space: nowrap;
  }

  .auth-link {
    white-space: nowrap;
  }

  .social-links {
    gap: 6px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 12px);
  }

  .hero-stat .number {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 70%;
    scroll-snap-align: center;
  }

  .product-card-inner {
    padding: 24px 20px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  }

  .product-card-inner h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .product-card-inner p {
    font-size: 0.9rem;
    line-height: 1.6;
    display: block;
  }

  .product-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .product-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .product-link {
    font-size: 0.9rem;
    margin-top: auto;
  }

  .partners-track {
    gap: 16px;
    animation-duration: 50s;
  }

  .partner-logo {
    width: 140px;
    height: 70px;
    padding: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 16px 44px 16px 16px;
    min-height: auto;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    overflow: hidden;
  }

  .service-card.expanded p {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
  }

  .service-arrow {
    display: flex;
    top: 14px;
    bottom: auto;
    right: 14px;
    width: 24px;
    height: 24px;
    background: transparent;
    color: var(--dark-navy);
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .service-arrow svg {
    width: 18px;
    height: 18px;
  }

  .service-card:hover .service-arrow {
    background: transparent;
    color: var(--eco-green);
    transform: none;
  }

  .service-card.expanded .service-arrow,
  .service-card.expanded:hover .service-arrow {
    transform: rotate(90deg);
  }

  .news-slider-wrapper {
    position: relative;
    width: 100%;
  }

  .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
  }

  .news-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge */
  }

  .news-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .news-mobile-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .news-nav-buttons {
    display: flex;
    gap: 12px;
  }

  .news-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--cool-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .news-nav-btn:hover,
  .news-nav-btn:active {
    background: var(--eco-green);
    color: var(--white);
    border-color: var(--eco-green);
  }

  .news-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .desktop-news-btn {
    display: none !important;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cert-grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .cert-item {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .cert-image {
    height: 120px;
    margin-bottom: 12px;
  }

  .cert-item p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .about-floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }
}

/* ===================== CERTIFICATIONS SECTION ===================== */
.certifications {
  padding: var(--section-padding);
  background: var(--dark-navy);
  color: var(--white);
  text-align: center;
}

.certifications .section-label {
  color: var(--green-bright);
}

.certifications .section-label::before {
  background: var(--green-bright);
}

.certifications .section-title {
  color: var(--white);
}

.certifications .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

.certifications-header {
  margin-bottom: 40px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.cert-item {
  width: 100%;
  max-width: none;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 12px 24px 12px;
  box-shadow: var(--shadow-lg);
  color: var(--dark-navy);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.cert-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.cert-item p {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: auto;
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cert-item {
    padding: 12px 8px;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
  }

  .cert-image {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .cert-item p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 0;
  }
}

/* ===================== LOADING SCREEN ===================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--eco-green);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo-img {
  height: 120px;
  width: auto;
  margin: 0 auto 32px auto;
  display: block;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gradient-green);
  border-radius: 3px;
  animation: loader-slide 1s ease-in-out infinite;
}

@keyframes loader-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

/* ===================== ABOUT PAGE (GIÃ¡Â»Å¡I THIÃ¡Â»â€ U) ===================== */
/* ===================== PAGE SUB NAV ===================== */
.page-subnav {
  position: sticky;
  top: 80px;
  /* Header is usually 80px */
  background: var(--white);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eaeaea;
}

.subnav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.subnav-list::-webkit-scrollbar {
  display: none;
}

.subnav-list li {
  margin-right: 40px;
  flex-shrink: 0;
}

.subnav-list a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.subnav-list a:hover {
  color: var(--eco-green);
}

.subnav-list a.active {
  color: var(--dark-navy);
}

.subnav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--eco-green);
  border-radius: 3px 3px 0 0;
}

.page-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--dark-navy);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(6 26 51 / 0%) 0%, rgb(6 26 51 / 54%) 100%);
  z-index: 1;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: prjKenBurns 25s ease-in-out infinite alternate;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-banner .page-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.breadcrumbs a {
  color: var(--green-bright);
  transition: color var(--transition-base);
}

.breadcrumbs .divider {
  color: rgba(255, 255, 255, 0.5);
}

.about-core-identity {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.about-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===================== NEW BANNER VMS SECTION ===================== */
.about-vms-banner {
  padding: 0 0 var(--section-padding) 0;
  background: var(--bg-primary);
}

.vms-banner {
  display: flex;
  align-items: center;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.vision-banner {
  background: url('images/hli-dong-hanh-pt-kt-qg.png') no-repeat right center;
  background-size: cover;
}

.vision-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0A274B 0%, #0A274B 35%, rgba(10, 39, 75, 0.6) 48%, rgba(10, 39, 75, 0.1) 70%, transparent 100%);
  z-index: 1;
}

.mission-banner {
  background: url('images/banner.jpg') no-repeat left center;
  background-size: cover;
}

.mission-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #0A274B 0%, #0A274B 35%, rgba(10, 39, 75, 0.6) 48%, rgba(10, 39, 75, 0.1) 70%, transparent 100%);
  z-index: 1;
}

.vms-banner>* {
  position: relative;
  z-index: 2;
}

.vms-banner-icon-col {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.vms-banner-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  color: var(--white);
}

.vms-banner-icon svg {
  width: 100%;
  height: 100%;
}

.vms-banner-icon-col h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

.vms-banner-divider {
  width: 2px;
  height: 120px;
  background: var(--white);
}

.vms-banner-text-col {
  flex: 1;
  padding: 40px;
  max-width: 50%;
}

.vision-banner .vms-banner-text-col {
  padding-right: 10%;
}

.mission-banner .vms-banner-text-col {
  padding-left: 10%;
  text-align: right;
  margin-left: auto;
}

.vms-banner-text-col p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
  color: var(--white);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--eco-green);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(1, 128, 69, 0.05);
  position: absolute;
  top: -10px;
  right: -10px;
  line-height: 1;
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--eco-green);
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.about-usp {
  padding: var(--section-padding);
  background: var(--dark-navy);
  color: var(--white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.usp-box {
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.usp-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.usp-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* ===================== HORIZONTAL TIMELINE ===================== */
.horizontal-timeline-section {
  padding: 40px 0;
  background: var(--dark-navy, #0A274B);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.ht-slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 20px 0;
  overflow: hidden;
  touch-action: pan-y;
}

.ht-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.ht-slide {
  flex: 0 0 80%;
  max-width: 900px;
  padding: 0 20px;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.ht-slide.active {
  opacity: 1;
  transform: scale(1);
}

.ht-card {
  display: flex;
  background: #0f345e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 360px;
}

.ht-card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.ht-card-content {
  flex: 1.2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ht-year {
  font-size: 5.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, var(--eco-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: 1;
  letter-spacing: -1px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.ht-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.ht-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.ht-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.ht-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.ht-prev {
  left: 15px;
}

.ht-next {
  right: 15px;
}

/* Bottom navigation */
.ht-bottom-nav {
  position: relative;
  max-width: 800px;
  margin: 0 auto 0;
  padding: 20px 0;
}

.ht-line {
  position: absolute;
  bottom: 25px;
  /* 20px padding + 5px to center of 12px dot */
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.ht-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.ht-dot-item {
  display: flex;
  flex-direction: column-reverse;
  /* put year above dot */
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 60px;
}

.ht-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  margin-top: 15px;
  /* changed from margin-bottom */
}

.ht-dot-year {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ht-dot-item:hover .ht-dot {
  background: rgba(255, 255, 255, 0.8);
}

.ht-dot-item:hover .ht-dot-year {
  color: rgba(255, 255, 255, 0.8);
}

.ht-dot-item.active .ht-dot {
  background: var(--white);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ht-dot-item.active .ht-dot-year {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 992px) {
  .ht-slide {
    padding: 0 10px;
    width: 100%;
    flex: 0 0 100%;
  }

  .ht-card {
    flex-direction: column;
    height: auto;
    background: #0f345e;
  }

  .ht-card-image {
    min-height: 250px;
  }

  .ht-card-content {
    padding: 30px;
    min-height: 250px;
    /* give it space so title can sit at bottom */
    display: flex;
    flex-direction: column;
  }

  .ht-year {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }

  .ht-title {
    margin-bottom: 10px;
  }

  .ht-bottom-nav {
    display: block;
    /* show on mobile */
    padding: 10px 0;
    overflow-x: auto;
    /* allow scroll if many years */
  }

  .ht-line {
    bottom: 15px;
    /* 10px padding + 5px to center of 12px dot */
  }

  .ht-dots {
    min-width: 300px;
    /* ensure they don't squash too much */
  }

  .ht-prev,
  .ht-next {
    display: none;
    /* hide arrows on mobile, rely on bottom nav and swipe */
  }
}

.about-team {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-grid-accordion {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
}

.team-card-acc {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.team-card-acc:hover {
  flex: 2.2;
}

.team-acc-image {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card-acc:hover .team-acc-image {
  width: 40%;
}

.team-acc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-acc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 20px 20px;
  background: linear-gradient(to top, rgba(10, 39, 75, 0.9), transparent);
  color: var(--white);
  text-align: center;
  transition: opacity 0.4s ease;
}

.team-card-acc:hover .team-acc-overlay {
  opacity: 0;
}

.team-acc-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

.team-acc-overlay p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.team-acc-details {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease 0.1s;
}

.team-card-acc:hover .team-acc-details {
  width: 60%;
  opacity: 1;
}

.team-acc-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 450px;
}

.team-acc-inner .acc-tag {
  color: var(--eco-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-acc-inner h3 {
  color: var(--dark-navy);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
}

.team-acc-inner .acc-role {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}

.team-acc-inner .acc-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .team-grid-accordion {
    flex-direction: column;
    height: auto;
  }

  .team-card-acc {
    flex-direction: column;
  }

  .team-acc-image {
    height: 350px;
  }

  .team-card-acc:hover .team-acc-image {
    width: 100%;
  }

  .team-acc-details {
    width: 100%;
    height: 0;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  }

  .team-card-acc:hover .team-acc-details {
    width: 100%;
    height: auto;
  }

  .team-acc-inner {
    width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 992px) {
  .vms-banner {
    flex-direction: column;
    text-align: center;
  }

  .vision-banner::before {
    background: linear-gradient(to bottom, #0e4e9a 0%, #0e4e9a 50%, rgba(14, 78, 154, 0.8) 70%, transparent 100%);
  }

  .mission-banner::before {
    background: linear-gradient(to top, #0e4e9a 0%, #0e4e9a 50%, rgba(14, 78, 154, 0.8) 70%, transparent 100%);
  }

  .mission-banner {
    flex-direction: column-reverse;
    /* icon at bottom */
  }

  .vms-banner-divider {
    width: 80px;
    height: 2px;
    margin: 20px 0;
  }

  .vms-banner-text-col {
    max-width: 100%;
    padding: 20px;
    text-align: center !important;
  }

  .vision-banner .vms-banner-text-col {
    padding-right: 20px;
    padding-bottom: 80px;
  }

  .mission-banner .vms-banner-text-col {
    padding-left: 20px;
    padding-top: 80px;
  }
}

@media (max-width: 992px) {
  .about-core-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vms-cards {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-card {
    padding: 16px 10px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }


}

/* ===================== ABOUT STORY & STATS (NEW LAYOUT) ===================== */
.about-story-stats {
  padding: var(--section-padding);
  background: var(--bg-primary);
  overflow: hidden;
}

.story-stats-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== STORY LAYOUTS ===================== */
/* ===================== STORY DARK SPLIT LAYOUT (V6) ===================== */
.story-dark-split {
  display: flex;
  gap: 60px;
  /* padding: 40px 0; */
  align-items: center;
  margin-bottom: 0;
}

.story-dark-visual {
  flex: 0 0 38%;
}



.story-dark-content {
  flex: 1;
  color: var(--body-text);
}

.story-dark-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark-navy);
}

.story-dark-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 25px;
}

.story-dark-content p:last-child {
  margin-bottom: 0;
}

.story-dark-content .text-green {
  color: var(--eco-green);
  font-weight: 700;
}

@keyframes play-btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 39, 75, 0.4), 0 0 0 10px rgba(10, 39, 75, 0.2);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(10, 39, 75, 0.2), 0 0 0 20px rgba(10, 39, 75, 0.1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 39, 75, 0.4), 0 0 0 10px rgba(10, 39, 75, 0.2);
  }
}

.play-btn {
  animation: play-btn-pulse 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.story-quote-box {
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: none;
}

.story-quote-box .story-quote-icon {
  width: 36px;
  height: 36px;
  color: rgba(1, 128, 69, 0.4);
  z-index: 1;
}

.story-quote-box .story-quote-icon.left {
  margin-bottom: -15px;
  margin-left: -10px;
}

.story-quote-box .story-quote-icon.right {
  align-self: flex-end;
  transform: rotate(180deg);
  margin-top: -15px;
  margin-right: -10px;
}

.story-quote-box .story-quote-text {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--dark-navy);
  font-style: italic;
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  padding-left: 10px;
  padding-right: 10px;
  align-self: center;
  text-align: center;
}

@media (max-width: 768px) {
  .story-quote-box {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .story-quote-box .story-quote-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .story-quote-box .story-quote-icon.left {
    margin: 0;
  }

  .story-quote-box .story-quote-icon.right {
    margin: 0;
    align-self: center;
  }

  .story-quote-box .story-quote-text {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
    padding: 0;
    white-space: nowrap;
  }
}

@media (max-width: 992px) {
  .story-stats-container {
    padding: 0;
  }

  .story-dark-split {
    flex-direction: column;
    padding: 10px 20px 0 20px;
    gap: 30px;
    margin-bottom: 0;
  }

  .story-dark-visual {
    width: 100%;
  }
}


/* ===================== MODERN PILL VISION & MISSION ===================== */
.vms-modern-container {
  display: flex;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
}

.vms-modern-card {
  flex: 1;
  position: relative;
  padding-top: 35px;
  /* space for the overlapping pill */
  padding-left: 20px;
  /* space for the overlapping pill */
}

.vms-modern-header {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 8px 30px 8px 8px;
  z-index: 2;
  overflow: hidden;
}

.vision-modern-card .vms-modern-header {
  background: var(--dark-navy);
  box-shadow: 0 10px 20px rgba(10, 39, 75, 0.3);
}

.mission-modern-card .vms-modern-header {
  background: var(--eco-green);
  box-shadow: 0 10px 20px rgba(1, 128, 69, 0.3);
}

.vms-modern-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
}

@keyframes shineSweepFull {
  0% {
    left: -200px;
    transform: skewX(-25deg);
  }

  50%,
  100% {
    left: calc(100% + 200px);
    transform: skewX(-25deg);
  }
}

.vms-modern-body::after,
.vms-modern-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200px;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shineSweepFull 3s infinite;
  z-index: 10;
  pointer-events: none;
}

.vision-modern-card .vms-modern-body::after,
.vision-modern-card .vms-modern-header::after {
  animation-delay: 0s;
}

.mission-modern-card .vms-modern-body::after,
.mission-modern-card .vms-modern-header::after {
  animation-delay: 0s;
}

.vision-modern-card .vms-modern-icon {
  color: var(--dark-navy);
  border: 2px solid var(--dark-navy);
}

.mission-modern-card .vms-modern-icon {
  color: var(--eco-green);
  border: 2px solid var(--eco-green);
}

.vms-modern-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.vms-modern-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vms-modern-body {
  border-radius: 0 40px 40px 40px;
  padding: 60px 40px 30px 40px;
  color: #ffffff;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vision-modern-card .vms-modern-body {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #174b85 100%);
}

.mission-modern-card .vms-modern-body {
  background: linear-gradient(135deg, var(--eco-green) 0%, #03a059 100%);
}

.vms-modern-body p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.modern-circle-accent {
  position: absolute;
  bottom: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  border: 2px solid #eb7125;
  border-radius: 50%;
  z-index: 1;
}

.vms-modern-body::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-50%) rotate(45deg);
  z-index: 0;
}

@media (max-width: 992px) {
  .vms-modern-container {
    flex-direction: column;
    gap: 50px;
  }
}

.story-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(1, 128, 69, 0.2);
  padding-bottom: 10px;
}

.story-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 0;
}

.story-card.highlight-card {
  background: rgba(1, 128, 69, 0.03);
  border: 2px solid var(--eco-green);
  border-bottom: 6px solid var(--eco-green);
}

.story-card.highlight-card h3 {
  border-bottom: none;
  padding-bottom: 0;
  color: var(--eco-green);
}

.story-card.highlight-card .highlight-icon {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .story-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Legacy Split Layout */
.story-split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 50px;
  align-items: center;
}

.story-visual-col {
  flex: 0 0 45%;
  position: relative;
}

.story-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.image-bg-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--gradient-green);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.story-image-wrapper .main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-navy);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2;
}

.experience-badge .exp-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  color: var(--eco-green);
  margin-bottom: 5px;
}

.experience-badge .exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.story-content-col {
  flex: 1;
  min-width: 0;
}

.story-quote-block {
  margin: 0 0 40px 0;
  padding: 0 0 0 30px;
  border-left: 4px solid var(--eco-green);
  position: relative;
}

.story-quote-block .quote-icon {
  width: 40px;
  height: 40px;
  color: rgba(1, 128, 69, 0.2);
  position: absolute;
  top: -15px;
  left: -10px;
  z-index: -1;
}

.story-quote-block h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--dark-navy);
  line-height: 1.3;
  margin: 0;
  font-style: italic;
  font-family: var(--font-heading);
}

.story-text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-paragraph h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.story-paragraph p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.story-paragraph.highlight {
  display: flex;
  gap: 20px;
  background: rgba(1, 128, 69, 0.03);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--eco-green);
  border-left: 6px solid var(--eco-green);
  align-items: flex-start;
}

.highlight-icon {
  flex: 0 0 40px;
  margin-top: 5px;
}

.highlight-icon img,
.highlight-icon svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.highlight-text h3 {
  color: var(--eco-green);
  font-size: 1.1rem;
  margin-top: 0;
}

.story-bottom-stats {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item .stat-num {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-num span {
  font-family: var(--font-heading);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* New Stat Item Styles for GiÃ¡Â»â€ºi ThiÃ¡Â»â€¡u */
.stat-item-v2 {
  display: flex;
  flex-direction: column;
}

.stat-item-v2 .stat-num-v2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.stat-item-v2 .stat-num-v2 .stat-currency {
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 4px;
  margin-top: 12px;
}

.stat-item-v2 .stat-num-v2 .stat-value {
  font-family: var(--font-heading);
  letter-spacing: -2px;
}

.stat-item-v2 .stat-num-v2 .stat-unit {
  font-size: 4.5rem;
  font-weight: 700;
  margin-left: 2px;
}

.stat-item-v2 .stat-divider {
  border: 0;
  border-top: 1px solid #d5d5d5;
  margin: 16px 0;
  width: 100%;
}

.stat-item-v2 .stat-label-v2 {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
  text-align: center;
}

.stat-item-v2 .asset-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.stat-item-v2 .asset-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.stat-item-v2 .asset-list li::before {
  content: 'Ã¢â‚¬Â¢';
  position: absolute;
  left: 0;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .story-visual-col {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }

  .experience-badge {
    right: 20px;
    bottom: -20px;
    padding: 20px;
  }

  .story-bottom-stats {
    gap: 30px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .story-quote-block h2 {
    font-size: 1.8rem;
  }

  .story-paragraph.highlight {
    flex-direction: column;
    gap: 15px;
  }

  .story-bottom-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===================== FLOATING SOCIAL SIDEBAR ===================== */
.floating-social-sidebar {
  position: fixed;
  right: 30px;
  bottom: 90px;
  /* aligns above .back-to-top which is at bottom: 30px */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-social-sidebar .social-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-green, #018045);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-social-sidebar .social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.6);
  /* Scale down so they look like nice icons inside the circle */
  filter: brightness(0) invert(1);
  /* Makes the icons pure white */
  transition: transform 0.3s ease;
}

/* Tooltip text */
.floating-social-sidebar .social-icon::after {
  content: attr(aria-label);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  margin-right: 15px;
  background: #fff;
  color: var(--dark-navy, #0A274B);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tooltip arrow */
.floating-social-sidebar .social-icon::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  margin-right: 9px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark-navy, #0A274B);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-social-sidebar .social-icon:hover {
  transform: scale(1.1) translateX(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.floating-social-sidebar .social-icon:hover::after,
.floating-social-sidebar .social-icon:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-social-sidebar {
    right: 15px;
    bottom: 80px;
    gap: 10px;
  }

  .floating-social-sidebar .social-icon {
    width: 40px;
    height: 40px;
  }

  .back-to-top {
    right: 15px;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
}

/* Floating Social Group */
.social-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-group-items {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  animation: slideUpFade 0.3s ease forwards;
}

.social-group.active .social-group-items {
  display: flex;
}

.social-group.active .social-toggle svg {
  transform: none;
}

@keyframes icon-shake {

  0%,
  100% {
    transform: scale(0.6) rotate(0deg);
  }

  25%,
  75% {
    transform: scale(0.6) rotate(-15deg);
  }

  50% {
    transform: scale(0.6) rotate(15deg);
  }
}

@keyframes svg-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25%,
  75% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

@keyframes svg-active-shake {

  0%,
  100% {
    transform: rotate(45deg);
  }

  25%,
  75% {
    transform: rotate(30deg);
  }

  50% {
    transform: rotate(60deg);
  }
}

.floating-social-sidebar .social-icon:hover img {
  animation: icon-shake 0.4s ease-in-out infinite;
}

.floating-social-sidebar .social-toggle:hover svg {
  animation: svg-shake 0.4s ease-in-out infinite;
}

.social-group.active .social-toggle:hover svg {
  animation: svg-active-shake 0.4s ease-in-out infinite;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== STATUS BADGES & AREA TAGLINE ===================== */
.project-card-image .status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full, 50px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.status-available {
  background: rgba(1, 128, 69, 0.9);
  /* Green */
}

.status-reserved {
  background: rgba(243, 156, 18, 0.9);
  /* Orange/Yellow */
}

.status-full {
  background: rgba(231, 76, 60, 0.9);
  /* Red */
}

/* ===================== USP SECTION ===================== */
.usp-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.usp-split-left {
  position: relative;
}

.usp-split-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.usp-split-right .usp-box {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.usp-split-right .usp-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.usp-split-right .usp-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.bg-navy {
  background: var(--dark-navy) !important;
}

.bg-green {
  background: var(--eco-green) !important;
}

@media (max-width: 992px) {
  .usp-layout-split {
    grid-template-columns: 1fr;
  }

  .usp-split-right .usp-box {
    padding: 40px 20px;
  }
}

.project-area {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.project-area strong {
  color: var(--dark-navy);
}

/* ===================== QUOTE POPUP ===================== */
.quote-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 39, 75, 0.85);
  /* Dark navy overlay */
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.quote-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.quote-popup-content {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-popup-overlay.show .quote-popup-content {
  transform: translateY(0);
}

.quote-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.quote-popup-close:hover {
  color: var(--white);
}

.quote-popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.quote-popup-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.quote-popup-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.quote-popup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.quote-popup-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 0;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.quote-popup-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.quote-popup-form input:focus {
  outline: none;
  border-bottom-color: var(--white);
}

.btn-submit-quote {
  grid-column: 1 / -1;
  background: var(--dark-navy);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.btn-submit-quote:hover {
  background: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 39, 75, 0.3);
}

.quote-popup-form {
  grid-template-columns: 1fr;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-navy, #0A192F);
  color: var(--white);
  padding: 60px 0 20px;
  font-family: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col-1 {
  flex: 1.2;
  min-width: 260px;
}

.footer-col-2 {
  flex: 1.5;
  min-width: 260px;
}

.footer-col-3 {
  flex: 1;
  min-width: 260px;
}

@media (min-width: 992px) {

  .footer-col-2,
  .footer-col-3 {
    margin-top: 50px;
  }
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--eco-green, #018045);
}

/* Col 1: Contact */
.footer-contact-item.new-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item.new-contact .icon {
  width: 32px;
  height: 32px;
  background: rgba(1, 128, 69, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item.new-contact .icon svg {
  width: 16px;
  height: 16px;
  color: var(--eco-green, #018045);
}

.footer-contact-item.new-contact .info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.footer-contact-item.new-contact .info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item.new-contact .info a:hover {
  color: var(--eco-green, #018045);
}

/* Col 2: Links */
.footer-links-2cols {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links-2cols ul {
  flex: 1;
  min-width: 140px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-2cols ul li {
  margin-bottom: 15px;
}

.footer-links-2cols ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links-2cols ul li a:hover {
  color: var(--eco-green, #018045);
}

/* Col 3: Social & Map */
.footer-social-squares {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social-squares a {
  width: 36px;
  height: 36px;
  background: var(--eco-green, #018045);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
}

.footer-social-squares a:hover {
  transform: translateY(-3px);
  background: var(--green-bright, #00A65A);
}

.footer-social-squares a svg {
  width: 18px;
  height: 18px;
}

.footer-map-new {
  height: 150px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--eco-green, #018045);
  text-decoration: none;
}

/* ===================== GLOBAL MOBILE RESPONSIVENESS ===================== */
@media (max-width: 768px) {

  /* Core layout grids dropping to 1 column */
  .about-grid,
  .projects-grid,
  .services-layout,
  .products-grid,
  .news-grid,
  .cta-wrapper,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .services-grid .service-card {
    padding: 12px 28px 12px 12px !important;
  }

  .services-grid .service-card h3 {
    font-size: 0.85rem !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }

  .news {
    padding-bottom: 30px !important;
  }

  .news-grid {
    padding-bottom: 0 !important;
  }

  .news-mobile-controls {
    margin-top: 10px !important;
    gap: 12px !important;
  }

  .about-content .btn {
    display: table;
    margin: 0 auto;
  }

  /* Hero adjustments */
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-item {
    margin-bottom: 0;
  }

  /* Buttons on mobile */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Paddings */
  .section-padding {
    padding: 30px 0;
  }

  .header {
    padding: 0;
    top: 0;
  }

  /* Headers & Typography */
  .section-title,
  .pd-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }

  /* CTA Section overrides */
  .cta-form-container {
    padding: 24px;
    margin-top: 20px;
  }

  /* Testimonial adjustments */
  .testimonial-controls {
    margin-top: 20px;
  }

  /* Footer overrides */
  .footer-grid {
    text-align: center;
    gap: 30px;
  }

  .footer-social-squares {
    justify-content: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Center footer logo */
  .footer-col-1 .logo {
    text-align: center;
  }

  .footer-col-1 .logo img {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 250px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}

/* ===================== SAN PHAM PAGE ===================== */
.sp-content-box {
  display: flex;
  border: 1px solid #d5d5d5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  height: 450px;
  margin-bottom: 40px;
}

.sp-content-box:nth-child(even) {
  flex-direction: row-reverse;
}

.sp-content-info {
  flex: 0 0 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-content-title {
  color: #172b4d;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sp-content-info p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.sp-content-image {
  flex: 0 0 50%;
  background-color: #d8d8d8;
  overflow: hidden;
}

.sp-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sp-content-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .sp-content-box,
  .sp-content-box:nth-child(even) {
    flex-direction: column-reverse;
    height: auto;
  }

  .sp-content-info {
    flex: none;
    width: 100%;
    padding: 30px;
  }

  .sp-content-image {
    flex: none;
    width: 100%;
    height: 300px;
  }
}


/* =====================================================
   PROJECT DETAIL PAGE (chitietduan.html)
   ===================================================== */

/* --- Section Base --- */
.pd-section {
  padding: 40px 0;
}

.pd-section:nth-child(even) {
  background: var(--bg-secondary);
}

.pd-label {
  display: inline-block;
  background: rgba(1, 128, 69, 0.1);
  color: var(--eco-green);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.pd-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pd-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}


/* ===================== 1. OVERVIEW ===================== */
.pd-overview {
  background: var(--bg-primary);
}

.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pd-overview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pd-overview-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.pd-status-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(1, 128, 69, 0.92);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-pulse {
  width: 10px;
  height: 10px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: pd-pulse-anim 2s infinite;
}

@keyframes pd-pulse-anim {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 255, 109, 0.5);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 8px rgba(0, 255, 109, 0);
  }
}

.pd-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pd-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-base);
}

.pd-info-item:hover {
  transform: translateX(4px);
}

.pd-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: var(--white);
}

.pd-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pd-info-value {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-navy);
  font-weight: 600;
  line-height: 1.5;
}


/* ===================== 2. LOCATION ===================== */
.pd-location {
  background: var(--bg-secondary);
}

.pd-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pd-location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.pd-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-green);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pd-location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(1, 128, 69, 0.12);
  border-color: rgba(1, 128, 69, 0.15);
}

.pd-location-card:hover::before {
  transform: scaleX(1);
}

.pd-location-dist {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--eco-green);
  line-height: 1;
  margin-bottom: 6px;
}

.pd-location-dist small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pd-location-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.pd-location-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
}


/* ===================== 3. HIGHLIGHTS ===================== */
.pd-highlights {
  background: var(--gradient-green);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

/* Background decoration for highlights section */
.pd-highlights::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.pd-highlights::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 109, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.pd-highlights .container {
  position: relative;
  z-index: 2;
}

/* Override text colors for dark background */
.pd-highlights .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.pd-highlights .section-label::before {
  background: rgba(255, 255, 255, 0.5);
}

.pd-highlights .section-title {
  color: var(--white);
}

.pd-highlights .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.pd-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  align-items: center;
  position: relative;
}

.pd-highlights-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.pd-highlight-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}



.pd-highlight-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}



.pd-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.pd-highlight-card:hover::before {
  left: 150%;
}

.pd-highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pd-highlight-card:hover .pd-highlight-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pd-highlight-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  transition: all 0.3s ease;
}

.pd-highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pd-highlight-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}


/* ===================== 4. SPECS ===================== */
.pd-specs {
  background: var(--bg-secondary);
}

.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  align-items: start;
}

.pd-spec-group {
  padding-left: 20px;
  border-left: 2px solid var(--eco-green);
  transition: all 0.3s ease;
}

.pd-spec-group:hover {
  transform: translateX(4px);
}

.pd-spec-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: none;
}

.pd-spec-group-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: rgba(1, 128, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-spec-group-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--eco-green);
}

.pd-spec-group-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pd-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-spec-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.pd-spec-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pd-spec-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--eco-green);
  opacity: 0.8;
  margin-top: 8px;
}

.pd-spec-list li strong {
  color: var(--dark-navy);
  font-weight: 600;
}


/* ===================== 5. INFRASTRUCTURE ===================== */
.pd-infra {
  background: var(--bg-primary);
}

.pd-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pd-infra-card {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.pd-infra-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 39, 75, 0.08);
  border-color: rgba(1, 128, 69, 0.15);
}

.pd-infra-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(1, 128, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.pd-infra-card:hover .pd-infra-icon {
  background: var(--gradient-green);
}

.pd-infra-icon svg {
  width: 22px;
  height: 22px;
  color: var(--eco-green);
  transition: all 0.3s ease;
}

.pd-infra-card:hover .pd-infra-icon svg {
  color: var(--white);
  stroke: var(--white);
}

.pd-infra-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.pd-infra-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ===================== 6. INDUSTRIES ===================== */
.pd-industries {
  background: var(--bg-secondary);
}

.pd-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.pd-industry-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  box-shadow: none;
  transition: all 0.3s ease;
}

.pd-industry-item::before {
  display: none;
}

.pd-industry-item:hover {
  transform: translateX(4px);
  border-color: rgba(1, 128, 69, 0.3);
  box-shadow: none;
}

.pd-industry-item:hover::before {
  /* empty */
}

.pd-industry-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--eco-green);
  display: inline-block;
  margin: 0;
  transition: all 0.3s ease;
}

.pd-industry-item:hover .pd-industry-num {
  color: var(--dark-navy);
}

.pd-industry-item p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}


/* ===================== 7. SERVICES ===================== */
.pd-services {
  background: var(--bg-primary);
}

.pd-services-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  padding-top: 10px;
}

.pd-service-clean-item {
  padding-left: 20px;
  border-left: 2px solid var(--eco-green);
}

.pd-service-clean-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.pd-service-clean-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-service-clean-item ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.pd-service-clean-item ul li:last-child {
  margin-bottom: 0;
}

.pd-service-clean-item ul li::before {
  content: 'Ã¢Å“â€œ';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--eco-green);
  font-size: 0.85rem;
  font-weight: bold;
}


/* ===================== 8. LEGAL ===================== */
.pd-legal {
  background: var(--bg-primary);
}

.pd-legal-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.pd-legal-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.pd-legal-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.pd-legal-badge:hover {
  border-color: rgba(1, 128, 69, 0.25);
  box-shadow: 0 4px 12px rgba(1, 128, 69, 0.08);
}

.pd-legal-badge svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--eco-green);
}

.pd-legal-badge span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.4;
}

.pd-legal-price-box {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  text-align: center;
}

.pd-legal-price-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pd-legal-price-box p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pd-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--eco-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pd-btn-contact:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 128, 69, 0.3);
}


/* ===================== 9. GALLERY ===================== */
.pd-gallery {
  background: var(--bg-secondary);
}

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.pd-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.pd-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.pd-gallery-item:hover img {
  transform: scale(1.08);
}

.pd-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(10, 39, 75, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pd-gallery-item:hover .pd-gallery-overlay {
  opacity: 1;
}

.pd-gallery-overlay span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===================== BROCHURE SECTION ===================== */
.brochure-section {
  position: relative;
  overflow: hidden;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.brochure-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.brochure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(1, 128, 69, 0.2);
}

.brochure-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.brochure-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.brochure-card:hover .brochure-cover img {
  transform: scale(1.05);
}

.brochure-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.brochure-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.brochure-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-download {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  width: 100%;
  background: var(--eco-green);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: var(--dark-navy);
  color: var(--white);
}

.btn-download svg {
  width: 20px;
  height: 20px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .pd-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-legal-wrapper {
    grid-template-columns: 1fr;
  }

  .pd-legal-wrapper .pd-title {
    text-align: center;
  }

  .pd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .pd-gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .pd-section {
    padding: 40px 0;
  }



  .pd-overview-image img {
    height: 280px;
  }

  .pd-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pd-location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pd-location-card {
    padding: 24px 16px;
  }

  .pd-location-dist {
    font-size: 2rem;
  }

  .pd-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .pd-highlight-card {
    width: calc(50% - 8px);
    box-sizing: border-box;
  }

  .pd-highlights-grid .pd-highlight-card:nth-child(3) {
    grid-column: auto;
  }

  .pd-highlight-card {
    padding: 20px 16px;
  }

  .pd-highlight-card h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .pd-highlight-card .pd-highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .pd-highlight-card .pd-highlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .pd-highlight-card p {
    display: block;
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.5;
  }

  .pd-specs-grid {
    grid-template-columns: 1fr;
  }

  .pd-infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pd-industries-grid {
    grid-template-columns: 1fr;
  }

  .pd-services-grid {
    grid-template-columns: 1fr;
  }

  .pd-legal-badges {
    grid-template-columns: 1fr;
  }

  .pd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }

  .pd-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ===================== CHI TIÃ¡ÂºÂ¾T ACCORDION ===================== */
.pd-details {
  background: var(--bg-primary);
  padding: 40px 0;
}

.pd-accordion-wrapper {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-accordion-header {
  padding: 24px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: var(--bg-primary);
}

.pd-accordion-header:hover {
  background: var(--bg-secondary);
}

.pd-accordion-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-acc-icon {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark-navy);
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
  line-height: 1;
}

.pd-accordion-item.active .pd-acc-icon {
  transform: rotate(45deg);
}

.pd-accordion-content {
  display: none;
  padding: 30px 20px 40px;
  background: var(--bg-secondary);
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.pd-accordion-item.active .pd-accordion-header {
  background: var(--bg-secondary);
}

.pd-accordion-content .pd-specs-grid,
.pd-accordion-content .pd-services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pd-accordion-content .pd-infra-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {

  .pd-accordion-content {
    padding: 16px 16px 24px;
  }

  .pd-accordion-header {
    padding: 10px 20px;
  }

  .pd-accordion-content .pd-specs-grid,
  .pd-accordion-content .pd-services-grid,
  .pd-services-clean-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-accordion-content .pd-infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pd-infra-card {
    padding: 20px 5px;
  }
}


/* =====================================================================
   PROJECT LISTING PAGE (duan.html) Ã¢â‚¬â€ Premium Editorial Redesign
   Prefix: prj-*
   ===================================================================== */


/* --- Hero Banner --- */
.prj-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.prj-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prj-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: prjKenBurns 20s ease-in-out infinite alternate;
}

@keyframes prjKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.prj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(6 26 51 / 0%) 0%, rgb(6 26 51 / 54%) 100%);
  z-index: 1;
}

.prj-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.prj-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.prj-hero-label::before,
.prj-hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.prj-hero-title {

  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.prj-hero-title em {
  font-style: italic;
  color: var(--green-bright);
}

.prj-hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto;
}

.prj-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: prjScrollBounce 2s infinite;
}

.prj-hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: prjScrollLine 2s infinite;
}

@keyframes prjScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes prjScrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* --- Statistics Band --- */
.prj-stats {
  background: var(--dark-navy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.prj-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eco-green), transparent);
}

.prj-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.prj-stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.prj-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.prj-stat-number {

  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.prj-stat-number span {
  font-size: 0.6em;
  color: var(--eco-green);
}

.prj-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Project Showcase Zigzag --- */
.prj-showcase {
  padding: 0;
  background: var(--bg-primary);
}

.prj-showcase-header {
  text-align: center;
  padding: 40px 20px;
}

.prj-showcase-header .prj-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--eco-green);
  margin-bottom: 16px;
  position: relative;
}

.prj-showcase-header .prj-section-label::before,
.prj-showcase-header .prj-section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--eco-green);
}

.prj-showcase-header .prj-section-label::before {
  right: calc(100% + 12px);
}

.prj-showcase-header .prj-section-label::after {
  left: calc(100% + 12px);
}

.prj-showcase-title {
  font-size: clamp(1.4rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.prj-showcase-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Zigzag Project Item */
.prj-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 85vh;
  max-height: 700px;
  min-height: 400px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.prj-item.prj-item-reverse {
  direction: rtl;
}

.prj-item.prj-item-reverse>* {
  direction: ltr;
}

.prj-item-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.prj-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.prj-item:hover .prj-item-image img {
  transform: scale(1.06);
}

.prj-item-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 26, 51, 0.15) 0%, rgba(6, 26, 51, 0.4) 100%);
  transition: opacity 0.6s ease;
}

.prj-item:hover .prj-item-image-overlay {
  opacity: 0.7;
}

.prj-item-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.prj-item.prj-item-reverse .prj-item-badges {
  left: auto;
  right: 24px;
}

.prj-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.prj-badge-location svg {
  width: 14px;
  height: 14px;
}

.prj-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prj-badge-status.available {
  background: rgba(0, 183, 82, 0.9);
  color: #fff;
}

.prj-badge-status.reserved {
  background: rgba(247, 148, 41, 0.9);
  color: #fff;
}

.prj-badge-status.full {
  background: rgba(180, 60, 50, 0.9);
  color: #fff;
}

.prj-badge-status .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: prjPulseDot 2s infinite;
}

@keyframes prjPulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Project Content Side */
.prj-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
  background: var(--bg-primary);
  position: relative;
}

.prj-item:nth-child(even) .prj-item-content {
  padding: 60px 80px 60px 60px;
}

.prj-item:nth-child(odd) .prj-item-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 3px;
  background: var(--gradient-green);
  border-radius: 2px;
}

.prj-item:nth-child(even) .prj-item-content::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 3px;
  background: var(--gradient-green);
  border-radius: 2px;
}

.prj-item-number {

  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(1, 128, 69, 0.08);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.prj-item-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  text-transform: uppercase;
}

.prj-item:hover .prj-item-name {
  color: var(--eco-green);
}

.prj-item-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.prj-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.prj-meta-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--dark-navy);
  font-weight: 600;
}

.prj-meta-tag svg {
  width: 18px;
  height: 18px;
  color: var(--eco-green);
}

.prj-item-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eco-green);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}

.prj-item-cta::after {
  display: none;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eco-green);
  transition: width 0.4s ease;
}

.prj-item:hover .prj-item-cta::after {
  width: 100%;
}

.prj-item-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.prj-item:hover .prj-item-cta svg {
  transform: translateX(6px);
}

/* --- Divider --- */
.prj-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background: var(--bg-primary);
}

.prj-divider-line {
  width: 60px;
  height: 1px;
  background: var(--eco-green);
  opacity: 0.3;
}

.prj-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--eco-green);
  margin: 0 12px;
  opacity: 0.4;
}

/* =====================================================================
   PROJECT DETAIL PAGE (chitietduan.html) Ã¢â‚¬â€ Premium Editorial Redesign
   Prefix: pdt-*
   ===================================================================== */

/* --- Cinematic Hero --- */
.pdt-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.pdt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pdt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: prjKenBurns 25s ease-in-out infinite alternate;
}

.pdt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(6 26 51 / 0%) 0%, rgb(6 26 51 / 54%) 100%);
  z-index: 1;
}

.pdt-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.pdt-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pdt-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.pdt-hero-breadcrumb a:hover {
  color: var(--green-bright);
}

.pdt-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.6);
}

.pdt-hero-breadcrumb .current {
  color: var(--green-bright);
  font-weight: 600;
}

.pdt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 183, 82, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pdt-hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: prjPulseDot 2s infinite;
}

.pdt-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  /* text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); */
  text-transform: uppercase;
}

.pdt-hero-tagline {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.pdt-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pdt-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
}

.pdt-hero-btn.primary {
  background: var(--eco-green);
  color: #fff;
}

.pdt-hero-btn.primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 128, 69, 0.4);
}

.pdt-hero-btn.outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.pdt-hero-btn.outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.pdt-hero-btn svg {
  width: 18px;
  height: 18px;
}

.pdt-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: prjScrollBounce 2s infinite;
}

.pdt-hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: prjScrollLine 2s infinite;
}

/* Ensure anchor links scroll to just below the sticky navs */
section[id] {
  scroll-margin-top: 135px;
}

/* --- Sticky Section Nav --- */
.pdt-sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pdt-sticky-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pdt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pdt-nav-inner::-webkit-scrollbar {
  display: none;
}

.pdt-nav-link {
  padding: 16px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 2px solid transparent;
}

.pdt-nav-link:hover {
  color: var(--eco-green);
}

.pdt-nav-link.active {
  color: var(--eco-green);
  border-bottom-color: var(--eco-green);
}

/* --- Overview Editorial --- */
.pdt-overview {
  padding: 40px 0;
  background: var(--bg-primary);
}

.overview-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  margin-top: 40px;
  text-align: center;
}

.pdt-overview .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: static;
}

.pdt-overview .stat-item::after {
  display: none;
}

.pdt-overview .stat-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.pdt-overview .stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.pdt-overview .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.3s ease;
}

.pdt-overview .stat-item:hover .stat-label {
  color: var(--eco-green);
  transform: none;
}

.overview-stats-grid.grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.pdt-overview .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
}

@media (max-width: 992px) {
  .overview-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-stats-grid.grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pdt-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.pdt-overview-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 39, 75, 0.15);
}

.pdt-overview-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.pdt-overview-visual:hover img {
  transform: scale(1.03);
}

.pdt-overview-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(1, 128, 69, 0.92);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdt-overview-status .pulse {
  width: 10px;
  height: 10px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: pd-pulse-anim 2s infinite;
}

.pdt-overview-info {
  padding-top: 20px;
}

.pdt-overview-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--eco-green);
  margin-bottom: 16px;
}

.pdt-overview-name {

  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.pdt-overview-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 36px;
}

.pdt-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdt-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pdt-info-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pdt-info-row:hover {
  padding-left: 8px;
  background: rgba(1, 128, 69, 0.02);
}

.pdt-info-row .info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(1, 128, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdt-info-row .info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--eco-green);
}

.pdt-info-row .info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.pdt-info-row .info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  display: block;
  line-height: 1.4;
}

/* --- Location Section --- */
.pdt-location {
  padding: 40px 0;
  background: var(--bg-secondary);
}

/* --- Map Modal Styling --- */
.pdt-map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pdt-map-modal.active {
  opacity: 1;
  visibility: visible;
}

.map-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.map-modal-close:hover {
  color: var(--eco-green);
}

.map-modal-content {
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.pdt-map-modal.active .map-modal-content {
  transform: scale(1);
}



.pdt-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pdt-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--eco-green);
  margin-bottom: 14px;
}

.pdt-section-title {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.pdt-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Highlights Premium --- */
.pdt-highlights {
  padding: 40px 0 100px 0;
  background-color: #fcfcfc;
  background-image: radial-gradient(#d3d3d3 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  overflow: hidden;
}

.pdt-highlights .pdt-section-title {
  color: var(--dark-navy);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 50px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(92%) saturate(1200%) hue-rotate(131deg) brightness(95%) contrast(102%);
}

.highlight-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .highlight-item img {
    max-width: 70px;
    margin-bottom: 12px;
  }

  .highlight-item h3 {
    font-size: 0.65rem;
    line-height: 1.25;
  }
}

/* --- Split Layout Highlights --- */
.split-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
}

.split-left {
  flex: 1;
  position: sticky;
  top: 120px;
}

.split-left .pdt-section-title {
  text-align: left;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.split-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 50px;
}

.split-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.split-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-color: var(--green-bright);
  transform: translateX(-15px);
  box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.split-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(1, 128, 69, 0.2);
  border: 1px solid rgba(1, 128, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.split-card:hover .split-icon {
  background: rgba(1, 128, 69, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(1, 128, 69, 0.4);
}

.split-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-bright);
}

.split-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.split-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* --- Gallery Masonry --- */
.pdt-gallery {
  padding: 40px 0;
  background: var(--bg-primary);
}

.pdt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

@media (min-width: 993px) {
  .pdt-gallery {
    min-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  .pdt-gallery .pdt-section-header {
    margin-bottom: 15px;
  }

  .pdt-gallery .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .pdt-gallery-grid {
    flex: 1;
    min-height: 0;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-rows: unset;
  }

  .pdt-gallery-item {
    min-height: 0;
  }
}

.pdt-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.pdt-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.pdt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.pdt-gallery-item:hover img {
  transform: scale(1.06);
}

.pdt-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(6, 26, 51, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: none !important;
  align-items: flex-end;
  padding: 24px;
}

.pdt-gallery-item:hover .pdt-gallery-overlay {
  opacity: 1;
}

.pdt-gallery-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.pdt-gallery-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 0;
}

.pdt-gallery-item:hover .pdt-gallery-overlay .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pdt-gallery-overlay .zoom-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* --- Lightbox --- */
.pdt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pdt-lightbox.active {
  display: flex;
  opacity: 1;
}

.pdt-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pdt-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pdt-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* --- Experience Section --- */
.pdt-experience {
  padding: 40px 0;
  background: url('images/city_bg.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
  z-index: 1;
}

.pdt-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 128, 69, 0.90);
  z-index: -1;
}

.pdt-experience .pdt-section-title {
  color: #fff;
}

.pdt-experience .pdt-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.pdt-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.pdt-exp-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.pdt-exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: all 0.6s ease;
}

.pdt-exp-card:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.pdt-exp-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.pdt-exp-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}

.pdt-exp-play-btn.video {
  background: rgba(1, 128, 69, 0.9);
  box-shadow: 0 0 20px rgba(1, 128, 69, 0.5);
}

.pdt-exp-play-btn.vr {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  backdrop-filter: blur(4px);
}

.pdt-exp-card:hover .pdt-exp-play-btn {
  transform: scale(1.1);
}

.pdt-exp-card:hover .pdt-exp-play-btn.video {
  box-shadow: 0 0 40px rgba(1, 128, 69, 0.7);
}

.pdt-exp-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.pdt-exp-label h3 {

  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

/* --- Industries Section --- */
.pdt-industries {
  padding: 40px 0;
  background: var(--bg-secondary);
}

.pdt-industries-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pdt-industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pdt-industry-item {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--dark-navy);
  font-weight: 500;
}

.pdt-industry-item:hover {
  background: rgba(1, 128, 69, 0.04);
  padding-left: 34px;
}

.pdt-industry-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--eco-green);
}

/* --- Details Tabbed Panel --- */
.pdt-details {
  padding: 40px 0;
  background: linear-gradient(160deg, #061A33 0%, #0A274B 50%, #0E3D6B 100%);
  position: relative;
  overflow: hidden;
}

.pdt-details::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 128, 69, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pdt-details::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(1, 128, 69, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.pdt-details .pdt-section-label {
  color: var(--green-bright);
}

.pdt-details .pdt-section-title {
  color: #fff;
}

.pdt-details .pdt-section-header {
  margin-bottom: 25px;
}

/* Tab Navigation */
.pdt-tabs {
  position: relative;
  z-index: 1;
}

.pdt-tabs-nav {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 60px;
  padding: 6px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pdt-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdt-tab-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pdt-tab-btn::after {
  display: none;
}

.pdt-tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--eco-green), #00a85a);
  box-shadow: 0 8px 25px rgba(1, 128, 69, 0.4);
  border-radius: 50px;
}

.pdt-tab-btn.active svg {
  stroke: #fff;
}

.pdt-tab-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

/* Tab Content */
.pdt-tab-content {
  display: none;
  animation: tabSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdt-tab-content.active {
  display: block;
}

@keyframes tabSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab Cards Grid */
.pd-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pd-tab-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  border-left: none;
}

.pd-tab-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(1, 128, 69, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pd-tab-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(1, 128, 69, 0.3);
}

.pd-tab-card:hover::before {
  opacity: 1;
}

.pd-tab-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--eco-green), #00a85a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(1, 128, 69, 0.35);
}

.pd-tab-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.pd-tab-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.pd-tab-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-tab-card ul li {
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.pd-tab-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px rgba(1, 128, 69, 0.5);
}

.pd-tab-card ul li strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pdt-tabs-nav {
    flex-direction: column;
    border-radius: 16px;
  }

  .pdt-tab-btn {
    border-radius: 12px;
  }

  .pd-tab-grid {
    grid-template-columns: 1fr;
  }
}

.pdt-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.pdt-acc-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pdt-acc-item.active {
  border-color: rgba(1, 128, 69, 0.2);
  box-shadow: 0 6px 20px rgba(1, 128, 69, 0.08);
}

.pdt-acc-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--eco-green);
  transition: all 0.3s ease;
}

.pdt-acc-header:hover {
  background: #016d3a;
}

.pdt-acc-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.pdt-acc-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.pdt-acc-item.active .pdt-acc-toggle {
  background: var(--eco-green);
  transform: rotate(45deg);
}

.pdt-acc-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.pdt-acc-item.active .pdt-acc-toggle svg {
  stroke: #fff;
}

.pdt-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pdt-acc-item.active .pdt-acc-body {
  max-height: 2000px;
}

.pdt-acc-body-inner {
  padding: 0 28px 28px;
}

/* --- Legal Section --- */
.pdt-legal {
  padding: 40px 0;
  background: #f4f7f6;
  position: relative;
  overflow: visible;
}

.pdt-legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--eco-green), #00c96b, var(--eco-green));
}

.pdt-legal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.pdt-legal-header {
  text-align: center;
  max-width: 700px;
}

.pdt-legal-title {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.pdt-legal-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pdt-legal-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.pdt-legal-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 35px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 6px solid var(--eco-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pdt-legal-badge:hover {
  transform: translateY(-5px);
  background: #fff;
  border-left-color: var(--dark-navy);
  box-shadow: 0 25px 60px rgba(10, 39, 75, 0.15);
  /* Navy shadow on hover */
}

.pdt-legal-badge-icon {
  width: 60px;
  height: 60px;
  background: var(--eco-green);
  /* Solid green background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(1, 128, 69, 0.3);
}

.pdt-legal-badge:hover .pdt-legal-badge-icon {
  background: var(--dark-navy);
  box-shadow: 0 10px 20px rgba(10, 39, 75, 0.3);
  transform: scale(1.1);
}

.pdt-legal-badge-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  /* White icon by default now */
  transition: stroke 0.3s ease;
}

.pdt-legal-badge:hover .pdt-legal-badge-icon svg {
  stroke: #fff;
}

.pdt-legal-badge span {
  font-size: 1.05rem;
  /* Slightly larger text */
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.5;
}

.pdt-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-green);
  border-radius: 20px;
  padding: 40px 50px;
  width: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(6, 26, 51, 0.15);
}

.pdt-price-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(1, 128, 69, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.pdt-pb-text {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.pdt-pb-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pdt-pb-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

.pdt-price-banner .pdt-hero-btn {
  flex-shrink: 0;
  background: var(--dark-navy);
  color: #fff;
  border: none;
  position: relative;
  z-index: 1;
}

.pdt-price-banner .pdt-hero-btn:hover {
  background: var(--navy-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 39, 75, 0.4);
}

.pdt-price-banner .pdt-hero-btn svg {
  stroke: #fff;
}

@media (min-width: 993px) {
  .pdt-legal {
    min-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pdt-legal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
  }

  .pdt-legal-header {
    text-align: center;
    margin-bottom: 0;
  }

  .pdt-legal-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    padding: 0;
  }

  .pdt-legal-badge {
    flex-direction: row;
    text-align: left;
    padding: 35px 40px;
    gap: 25px;
    max-width: none;
    transform: none !important;
    z-index: auto !important;
  }

  .pdt-legal-badge-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
  }

  .pdt-legal-badge:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 992px) {
  .pdt-legal-badges {
    grid-template-columns: 1fr;
  }

  .pdt-legal-badge {
    flex-direction: row;
    text-align: left;
    padding: 25px;
    gap: 20px;
  }

  .pdt-legal-badge-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
  }

  .pdt-price-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }
}

.pdt-legal-badges {
  grid-template-columns: 1fr;
}


/* =====================================================================
   RESPONSIVE Ã¢â‚¬â€ Project Pages
   ===================================================================== */

@media (max-width: 1024px) {
  .prj-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .prj-item:nth-child(even) {
    direction: ltr;
  }

  .prj-item:nth-child(even) .prj-item-badges {
    left: 24px;
    right: auto;
  }

  .prj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .prj-stat-item:not(:last-child)::after {
    display: none;
  }

  .pdt-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdt-overview-visual img {
    height: 350px;
  }

  .split-container {
    flex-direction: column;
    gap: 40px;
  }

  .split-left {
    position: static;
  }

  .pdt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .pdt-experience-grid {
    grid-template-columns: 1fr;
  }

  .pdt-industries-list {
    grid-template-columns: 1fr;
  }

  .pdt-legal-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdt-nav-link {
    padding: 14px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .prj-hero {
    min-height: 500px;
  }

  .prj-hero-content {
    padding: 0 16px 80px;
  }

  .prj-hero-title {
    font-size: 2.2rem;
  }

  .prj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prj-item-image {
    height: 280px;
  }

  .prj-item-content {
    padding: 15px !important;
  }

  .prj-item:nth-child(odd) .prj-item-content::before,
  .prj-item:nth-child(even) .prj-item-content::before {
    display: none;
  }

  .prj-item-number {
    font-size: 3rem;
    margin-bottom: -10px;
  }
}


/* =====================================================================
   RESPONSIVE Ã¢â‚¬â€ Project Pages
   ===================================================================== */

@media (max-width: 1024px) {
  .prj-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .prj-item:nth-child(even) {
    direction: ltr;
  }

  .prj-item:nth-child(even) .prj-item-badges {
    left: 24px;
    right: auto;
  }

  .prj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .prj-stat-item:not(:last-child)::after {
    display: none;
  }

  .pdt-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdt-overview-visual img {
    height: 350px;
  }

  .split-container {
    flex-direction: column;
    gap: 40px;
  }

  .split-left {
    position: static;
  }

  .pdt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .pdt-experience-grid {
    grid-template-columns: 1fr;
  }

  .pdt-industries-list {
    grid-template-columns: 1fr;
  }

  .pdt-legal-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdt-nav-link {
    padding: 14px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .prj-hero {
    min-height: 500px;
  }

  .prj-hero-content {
    padding: 0 16px 80px;
  }

  .prj-hero-title {
    font-size: 2.2rem;
  }

  .prj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prj-item-image {
    height: 280px;
  }

  .prj-item-content {
    padding: 20px !important;
  }

  .prj-item:nth-child(odd) .prj-item-content::before,
  .prj-item:nth-child(even) .prj-item-content::before {
    display: none;
  }

  .pdt-hero {
    min-height: 500px;
  }

  .pdt-hero-title {
    font-size: 2rem;
  }

  .pdt-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .pdt-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .pdt-gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pdt-highlight-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .prj-hero-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .prj-hero-label::before,
  .prj-hero-label::after {
    width: 20px;
  }

  .prj-stat-number {
    font-size: 2rem;
  }

  .prj-item-content {
    padding: 20px 20px !important;
  }

  .pdt-hero-tagline {
    font-size: 0.95rem;
  }

  .pdt-acc-header {
    padding: 16px 20px;
  }

  .pdt-acc-body-inner {
    padding: 0 20px 20px;
  }
}

/* =====================================================================
   GLOBAL MOBILE SECTION PADDING (15-20px)
   ===================================================================== */
@media (max-width: 768px) {

  section,
  .pdt-legal,
  .pdt-highlights,
  .pdt-gallery,
  .pdt-location,
  .pdt-experience,
  .pdt-industries,
  .pdt-details,
  .prj-showcase,
  .prj-showcase-header,
  .featured-project,
  .pd-details,
  .horizontal-timeline-section,
  .prj-stats {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .pdt-nav-inner {
    justify-content: flex-start;
  }

  .pdt-overview .stat-value {
    font-size: 0.95rem;
  }

  .pdt-overview .stat-label {
    font-size: 0.7rem;
  }

  .pdt-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
  }

  .pdt-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .pdt-gallery-item,
  .pdt-gallery-item.large {
    flex: 0 0 85%;
    height: 250px;
    scroll-snap-align: center;
  }

  .pdt-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  .pdt-dot {
    width: 24px;
    height: 4px;
    background: rgba(1, 128, 69, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .pdt-dot.active {
    background: var(--eco-green);
    width: 32px;
  }
}

/* --- Show More Industries Mobile --- */
.pdt-industries-more {
  display: none;
}

@media (max-width: 768px) {
  .pdt-industries-more {
    display: block;
    text-align: center;
  }

  .pdt-industries-list:not(.expanded) {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }

  .pdt-industries-list:not(.expanded) .pdt-industry-item:nth-child(n+6) {
    display: none;
  }
}

/* =====================================================
   PHÃT TRIá»‚N Bá»€N Vá»®NG PAGE STYLES
   ===================================================== */

/* --- 1. Vision - Amata Layout --- */
.sus-vision-amata {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.amata-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 0;
  align-items: center;
}

.amata-left {
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

.sus-vision-amata .section-title {
  color: var(--dark-navy);
}

.amata-text {
  position: relative;
  padding: 80px 40px 80px 80px;
  z-index: 1;
}

.amata-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, #f0f5f2 0%, #f9fbfb 100%);
  border-radius: 80px 0 0 80px;
  z-index: -1;
}

.amata-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: justify;
}

.amata-text p:last-child {
  margin-bottom: 0;
}

.amata-text strong {
  color: var(--eco-green);
  font-weight: 700;
}

@media (max-width: 992px) {
  .sus-vision-amata {
    padding: 80px 0;
  }

  .amata-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .amata-left {
    padding-right: 0;
    text-align: center;
  }

  .amata-left .section-label {
    justify-content: center;
  }

  .amata-text {
    padding: 30px 20px;
  }

  .amata-text::before {
    border-radius: 40px;
    width: 100%;
  }
}

/* Right Side - Image Frame */
.amata-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.amata-image-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.amata-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.frame-decoration {
  position: absolute;
  top: 25px;
  right: 0;
  transform: translateX(25px);
  width: 100%;
  height: 100%;
  background: rgba(1, 128, 69, 0.08);
  /* Soft eco green */
  border-radius: 12px;
  z-index: 1;
  transition: transform 0.4s ease;
}

.amata-image-frame:hover img {
  transform: translateY(-5px);
}

.amata-image-frame:hover .frame-decoration {
  transform: translateX(25px) translateY(5px);
}


/* --- 2. ESG Pillars Section --- */
.sus-esg {
  padding: 30px 0 0 0;
  display: block;
  background:
    radial-gradient(circle at 10% 10%, rgba(1, 128, 69, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(0, 114, 206, 0.1) 0%, transparent 60%),
    #f8f9fa;
  position: relative;
  z-index: 1;
}

.sus-esg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
}

.sus-esg .section-title {
  color: var(--dark-navy);
}

.sus-esg .section-subtitle {
  color: #666;
}

.sus-esg .section-label {
  color: var(--eco-green);
  border-color: rgba(0, 255, 136, 0.4);
}

.sus-esg-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-bottom: 0;
}

.esg-sticky-card {
  position: sticky;
  height: calc(100vh - 180px);
  min-height: 550px;
  max-height: 850px;
  width: 100%;
  margin-bottom: 50px;
  perspective: 1000px;
}

.esg-card-inner {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.esg-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 114, 206, 0.95) 0%, rgba(0, 114, 206, 0.7) 40%, transparent 100%);
  z-index: 1;
}

.esg-card-content {
  position: relative;
  z-index: 2;
  padding: 15px 40px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 55%;
}

.esg-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.esg-card-letter {
  font-size: 8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

.esg-card-title-group {
  display: flex;
  flex-direction: column;
}

.esg-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.esg-card-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}

.esg-card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
}

.esg-card-glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.esg-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.esg-card-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.esg-card-list li:last-child {

  border-bottom: none;

  padding-bottom: 0;

  margin-bottom: 0;

}

.esg-card-list .list-circle {

  background: rgba(255, 255, 255, 0.8);

  width: 20px;

  height: 20px;

  border-radius: 50%;

  flex-shrink: 0;

}

/* Card variants for colors */

.esg-sticky-card:nth-child(1) .esg-card-overlay {

  background: linear-gradient(to right, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.3) 50%, transparent 100%);

}

.esg-sticky-card:nth-child(2) .esg-card-overlay {

  background: linear-gradient(to right, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.3) 50%, transparent 100%);

}

.esg-sticky-card:nth-child(3) .esg-card-overlay {

  background: linear-gradient(to right, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.3) 50%, transparent 100%);

}

/* --- 3. Featured Activities Section --- */

.sus-activities {

  padding: 30px 0;

  background: var(--bg-primary);

  overflow-x: hidden;

}

.sus-slider-wrapper {

  position: relative;

  width: 100%;

}

.sus-activities-track {

  display: flex;

  gap: 30px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  scroll-behavior: smooth;

  padding-top: 20px;

  padding-bottom: 30px;

  padding-left: 10px;

  padding-right: 10px;

  padding-left: 10px;

  padding-right: 10px;

  scrollbar-width: none;

}

.sus-activities-track::-webkit-scrollbar {

  display: none;

}

.sus-slider-btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  background: var(--white);

  border: 1px solid rgba(0, 0, 0, 0.1);

  width: 48px;

  height: 48px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  color: var(--dark-navy);

}

.sus-slider-btn:hover {

  background: var(--eco-green);

  color: var(--white);

}

.sus-slider-btn.prev-btn {

  left: -24px;

}

.sus-slider-btn.next-btn {

  right: -24px;

}

.sus-slider-btn svg {

  width: 24px;

  height: 24px;

}

.sus-activity-card {

  position: relative;

  background: var(--white);

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: 0 4px 20px rgba(10, 39, 75, 0.08);

  transition: all var(--transition-base);

  border: 1px solid rgba(213, 213, 213, 0.3);

  flex: 0 0 calc((100% - 60px) / 3);

  min-width: calc((100% - 60px) / 3);

  scroll-snap-align: start;

}

@media (max-width: 1024px) {

  .sus-activity-card {

    flex: 0 0 calc((100% - 30px) / 2);

    min-width: calc((100% - 30px) / 2);

  }

}

@media (max-width: 768px) {

  .sus-activities-track {

    gap: 15px;

  }

  .sus-activity-card {

    flex: 0 0 85%;

    min-width: 85%;

  }

  .sus-slider-btn {

    display: none;

  }

}

.sus-activity-card:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);

}

.sus-activity-img {

  position: relative;

  height: 180px;

  overflow: hidden;

}

.sus-activity-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;

}

.sus-activity-card:hover .sus-activity-img img {

  transform: scale(1.06);

}

.sus-activity-tag {

  position: absolute;

  top: 22px;

  left: 22px;

  padding: 6px 14px;

  border-radius: var(--radius-full);

  font-size: 0.75rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

}

.sus-tag-env {

  background: rgba(1, 128, 69, 0.9);

  color: var(--white);

}

.sus-tag-soc {

  background: rgba(14, 78, 154, 0.9);

  color: var(--white);

}

.sus-tag-gov {

  background: rgba(10, 39, 75, 0.9);

  color: var(--white);

}

.sus-activity-body {

  padding: 20px 24px;

}

.sus-activity-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sus-activity-body p {

  font-size: 0.92rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 20px;

}

.sus-activity-link {

  position: absolute;

  bottom: 25px;

  left: 28px;

  width: 44px;

  height: 44px;

  background-color: var(--eco-green);

  color: var(--white) !important;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0;

  text-decoration: none;

  transition: all var(--transition-fast);

  box-shadow: 0 4px 10px rgba(1, 128, 69, 0.2);

}

.sus-activity-link svg {

  width: 20px;

  height: 20px;

  margin: 0;

  transition: transform var(--transition-fast);

}

.sus-activity-card:hover .sus-activity-link,

.sus-activity-link:hover {

  background-color: var(--navy-blue);

  box-shadow: 0 6px 15px rgba(10, 39, 75, 0.3);

}

.sus-activity-card:hover .sus-activity-link svg,

.sus-activity-link:hover svg {

  transform: translateX(2px);

}

/* --- 4. Reports & Documents Section --- */

.sus-reports {

  padding: 30px 0;

  background: var(--bg-light);

  /* Or #f7faf8 */

  position: relative;

  overflow: hidden;

  transform: translateZ(0);

}

.sus-reports::before {

  content: '';

  position: absolute;

  top: -50%;

  right: 0;

  transform: translateX(10%);

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: rgba(1, 128, 69, 0.08);

  pointer-events: none;

}

.sus-reports::after {

  content: '';

  position: absolute;

  bottom: -30%;

  left: 0;

  transform: translateX(-5%);

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: rgba(14, 78, 154, 0.08);

  pointer-events: none;

}

.sus-reports-list {

  display: flex;

  flex-direction: column;

  gap: 20px;

  position: relative;

  z-index: 1;

}

.sus-report-card {

  display: flex;

  align-items: center;

  justify-content: space-between;

  background: var(--white);

  border: 1px solid rgba(1, 128, 69, 0.15);

  border-radius: var(--radius-lg);

  padding: 24px 32px;

  text-align: left;

  transition: all var(--transition-base);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);

}

.sus-report-card:hover {

  transform: translateY(-4px);

  border-color: rgba(1, 128, 69, 0.4);

  box-shadow: 0 12px 30px rgba(1, 128, 69, 0.08);

}

.sus-report-main {

  display: flex;

  align-items: center;

  gap: 24px;

  flex: 1;

}

.sus-report-icon {

  width: 56px;

  height: 56px;

  border-radius: var(--radius-md);

  background: rgba(1, 128, 69, 0.15);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}

.sus-report-icon svg {

  width: 28px;

  height: 28px;

  color: var(--eco-green);

}

.sus-report-info {

  flex: 1;

}

.sus-report-info h4 {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--dark-navy);

  margin-bottom: 6px;

  line-height: 1.4;

}

.sus-report-info p {

  font-size: 0.9rem;

  color: var(--text-secondary);

  line-height: 1.5;

  margin-bottom: 0;

}

.sus-report-meta {

  display: flex;

  align-items: center;

  gap: 24px;

  margin-left: 30px;

  margin-right: 30px;

}

.sus-report-meta span {

  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--text-secondary);

  font-size: 0.9rem;

  font-weight: 500;

}

.sus-report-meta span svg {

  color: var(--eco-green);

}

.sus-report-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  padding: 0;

  border-radius: 50%;

  background: transparent;

  border: 2px solid var(--eco-green);

  color: var(--eco-green);

  transition: all var(--transition-base);

  align-self: flex-start;

}

.sus-report-btn svg {

  width: 20px;

  height: 20px;

}

.sus-report-btn:hover {

  background: var(--eco-green);

  color: var(--white);

  box-shadow: var(--shadow-green);

}

@media (max-width: 992px) {

  .sus-report-meta {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    margin-left: 20px;

    margin-right: 20px;

  }

}

@media (max-width: 768px) {

  .sus-report-card {

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    padding: 24px;

    position: relative;

  }

  .sus-report-main {

    align-items: flex-start;

  }

  .sus-report-meta {

    margin: 0;

    flex-direction: row;

    flex-wrap: wrap;

    gap: 16px;

    padding-right: 50px;

  }

  .sus-report-btn {

    position: absolute;

    right: 24px;

    bottom: 24px;

    width: 36px;

    height: 36px;

  }

  .sus-report-btn svg {

    width: 16px;

    height: 16px;

  }

}

/* ===================== SUSTAINABILITY RESPONSIVE ===================== */

@media (max-width: 992px) {

  .sus-esg-accordion {

    flex-direction: column;

    height: 800px;

  }

  .sus-activities-grid {

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .sus-reports-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }

  .sus-esg,

  .sus-activities,

  .sus-reports {

    padding: 60px 0;

  }

  .sus-reports::before,

  .sus-reports::after,

  .frame-decoration {

    display: none;

  }

  .sus-esg {

    height: auto;

    min-height: auto;

  }

  /* Responsive for Sticky Cards */

  .sus-esg-stack {

    padding-bottom: 0;

  }

  .esg-sticky-card {

    height: auto;

    min-height: auto;

    max-height: none;

    margin-bottom: 40px;

  }

  .esg-card-content {

    max-width: 100%;

    padding: 30px;

  }

  .esg-sticky-card:nth-child(1) .esg-card-overlay {

    background: linear-gradient(to bottom, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.4) 60%, transparent 100%) !important;

  }

  .esg-sticky-card:nth-child(2) .esg-card-overlay {

    background: linear-gradient(to bottom, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.4) 60%, transparent 100%) !important;

  }

  .esg-sticky-card:nth-child(3) .esg-card-overlay {

    background: linear-gradient(to bottom, rgba(10, 39, 75, 0.8) 0%, rgba(10, 39, 75, 0.4) 60%, transparent 100%) !important;

  }

  .ir-empty-msg {
    padding: 40px 0;
    text-align: center;
    color: #888;
    font-size: 1rem;
  }

  .mobile-break {
    display: none;
  }
  
  /* --- IR Responsive --- */

  .esg-card-letter {

    font-size: 3rem;

  }

  .esg-card-title {

    font-size: 1.2rem;
  }

  .esg-card-desc {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .amata-title {
    font-size: 1.8rem;
  }

  .amata-quote-box {
    padding: 10px 0;
  }

  .quote-mark {
    font-size: 5rem;
  }

  .quote-open {
    top: -10px;
    left: -10px;
  }

  .quote-close {
    bottom: -30px;
    right: 0;
  }

  .amata-author {
    text-align: right;
    padding-right: 0;
    margin-top: 20px;
  }

  .esg-card-letter {
    font-size: 4rem;
  }

  .esg-card-title {
    font-size: 1.5rem;
  }

  .esg-card-content {
    padding: 24px;
  }

  .sus-activity-img {
    height: 200px;
  }

  .sus-activity-body {
    padding: 20px;
  }

  .sus-report-card {
    padding: 28px 20px;
  }

  .sus-vision,
  .sus-esg,
  .sus-activities,
  .sus-reports {
    padding: 40px 0;
  }
}









@media (max-width: 768px) {
  .prj-item-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .prj-item-content {
    padding-top: 50px !important;
  }

  .prj-item-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
  }
}


@media (max-width: 1024px) {
  .prj-item {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* RE-ADDED CIRCLE BUTTON FOR PROJECT CTA */
.prj-item-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: var(--dark-navy) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  transition: all 0.4s ease !important;
  padding: 0 !important;
  gap: 0 !important;
  /* removing any pseudo element line */
}

.prj-item-cta::after {
  display: none !important;
}

.prj-item-cta svg {
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  transition: transform 0.4s ease !important;
}

.prj-item:hover .prj-item-cta,
.prj-item-cta:hover,
.prj-item-cta:active {
  background: var(--eco-green) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(1, 128, 69, 0.3) !important;
}

.prj-item:hover .prj-item-cta svg,
.prj-item-cta:hover svg {
  transform: translateX(2px) !important;
}

/* CORRECT COLOR FOR PROJECT CTA */
.prj-item-cta {
  background: var(--eco-green) !important;
}

.prj-item:hover .prj-item-cta,
.prj-item-cta:hover,
.prj-item-cta:active {
  background: var(--dark-navy) !important;
}

/* ===================== SUS VISION REVEAL ===================== */
/* ===================== SUS VISION MINIMALIST (CORPORATE) ===================== */
.sus-vision-minimal {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.vision-minimal-wrapper {
  display: flex;
  min-height: 80vh;
}

.vision-minimal-image {
  flex: 0 0 50%;
  position: relative;
}

.vision-minimal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.vision-minimal-content {
  flex: 0 0 50%;
  padding: 10% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f7faf9;
  position: relative;
  overflow: hidden;
}

.vision-minimal-content::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 128, 69, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.vision-minimal-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(1, 128, 69, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.vision-minimal-content > * {
  position: relative;
  z-index: 1;
}

.vision-minimal-content .section-label {
  margin-bottom: 24px;
  align-self: flex-start;
}

.vision-minimal-content .section-title {
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.3;
}


.vision-desc-minimal {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #444;
  font-weight: 400;
  font-style: italic;
  max-width: 95%;
}

.vision-desc-minimal strong {
  font-weight: 600;
  color: var(--eco-green);
}

@media (max-width: 991px) {
  .vision-minimal-wrapper {
    flex-direction: column-reverse;
  }

  .vision-minimal-image {
    flex: 0 0 auto;
    height: 400px;
  }

  .vision-minimal-content {
    flex: 0 0 auto;
    padding: 20px 5%;
    align-items: center;
    text-align: center;
  }

  .vision-minimal-content .section-label {
    align-self: center;
  }

  .vision-minimal-content .section-title {
    text-align: center;
  }

  .vision-heading-minimal {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .vision-minimal-image {
    height: 300px;
  }

  .vision-heading-minimal {
    font-size: 2rem;
  }

  .vision-title-line {
    display: block;
    white-space: nowrap;
    font-size: clamp(1.4rem, 4vw, 1.45rem);
  }

  .vision-desc-minimal {
    font-size: 1.05rem;
    max-width: 100%;
  }
}


/* =====================================================================
   INVESTOR RELATIONS (QUAN HỆ CỔ ĐÔNG) PAGE
   ===================================================================== */

/* --- IR Bento Intro Section --- */
.ir-bento-intro {
  padding: 60px 0;
  background-color: var(--white);
}

.ir-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; /* To create the thin border effect */
  background: #eaeaea; /* Border color */
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.bento-text-card {
  background: linear-gradient(135deg, rgba(1, 128, 69, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 190px;
}

.bento-text-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.bento-text-card h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--eco-green);
  margin-top: 10px;
  transition: width 0.3s ease;
}

.bento-text-card:hover h4::after {
  width: 80px;
}

.bento-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
}

.bento-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}


.bento-image-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 190px;
}

/* --- IR Documents Section --- */
.ir-documents {
  padding: 60px 0 80px;
  background: #f7faf9;
}

/* Tab Navigation */
.ir-tabs-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 24px;
}

.ir-tab-btn {
  padding: 10px 20px;
  border: 1px solid #dde3e0;
  border-radius: 30px;
  background: #f8faf9;
  color: #555;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.ir-tab-btn:hover {
  background: #ffffff;
  border-color: var(--dark-navy);
  color: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ir-tab-btn.active:hover {
  transform: translateY(0); /* Keep active button in place */
  background: var(--dark-navy);
  color: var(--white);
}

.ir-tab-btn.active {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(3, 37, 65, 0.2);
}

/* Search Container */
.ir-search-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.ir-search-box {
  position: relative;
  width: 300px;
}

.ir-search-box input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #dde3e0;
  border-radius: 8px;
  background: var(--white);
  font-size: 0.95rem;
  color: var(--dark-navy);
  outline: none;
  transition: border-color 0.3s ease;
}

.ir-search-box input:focus {
  border-color: var(--eco-green);
}

.ir-search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #888;
}

/* Main Layout Grid */
.ir-layout-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Sidebar */
.ir-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.ir-year-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.ir-year-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  border-left: 4px solid transparent;
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.2s ease;
}

.ir-year-item:last-child {
  border-bottom: none;
}

.ir-year-item:hover {
  background: #f8faf9;
}

.ir-year-item svg {
  width: 18px;
  height: 18px;
  color: #888;
  transition: transform 0.2s ease;
}

.ir-year-item.active {
  border-left-color: var(--eco-green);
  color: var(--eco-green);
  background: #f8faf9;
}

.ir-year-item.active svg {
  color: var(--eco-green);
}

/* Content Area */
.ir-content-area {
  flex: 1;
  min-width: 0;
}

.ir-tab-content {
  display: none;
}

.ir-tab-content.active {
  display: block;
  animation: irFadeIn 0.3s ease;
}

@keyframes irFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* File List New */
.ir-file-list-new {
  display: flex;
  flex-direction: column;
}

.ir-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #eaeaea;
  gap: 20px;
}

.ir-list-item:first-child {
  padding-top: 0;
}

.ir-item-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ir-item-meta {
  font-size: 0.85rem;
  color: #888;
}

.ir-item-category {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--eco-green);
}

.ir-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-top: 4px;
}

.ir-file-download {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(1, 128, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ir-file-download svg {
  width: 18px;
  height: 18px;
  color: var(--eco-green);
}

.ir-file-download:hover {
  background: var(--eco-green);
}

.ir-file-download:hover svg {
  color: var(--white);
}

/* Empty State */
.ir-empty-msg {
  padding: 40px 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
}

/* --- IR Responsive --- */
@media (max-width: 991px) {
  .ir-layout-grid {
    flex-direction: column;
    gap: 30px;
  }

  .ir-sidebar {
    width: 100%;
  }

  .ir-year-list {
    display: flex;
    overflow-x: auto;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
  }

  .ir-year-item {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
    white-space: nowrap;
  }

  .ir-year-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--eco-green);
  }

  .ir-year-item svg {
    display: none;
  }

  .ir-bento-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .ir-bento-intro {
    padding: 60px 0;
  }

  .ir-bento-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .mobile-break {
    display: block;
  }

  .bento-text-card {
    min-height: auto;
    padding: 30px 20px;
  }

  .bento-image-card {
    min-height: 200px;
  }

  .ir-documents {
    padding: 40px 0 60px;
  }

  .ir-tabs-new {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 10px; /* Prevent shadow/transform from clipping */
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 10px; /* Offset the padding-top */
    justify-content: flex-start;
  }

  .ir-tabs-new::-webkit-scrollbar {
    display: none;
  }

  .ir-tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    flex: 0 0 auto;
  }

  .ir-search-container {
    justify-content: flex-start;
  }

  .ir-search-box {
    width: 100%;
  }

  .ir-list-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }

  .ir-file-download {
    margin-top: -5px;
  }

  .ir-item-title {
    font-size: 1rem;
  }
}

/* ===================== GENTLE SHAKE ANIMATION FOR FLOATING BUTTONS ===================== */
@keyframes btn-gentle-shake {
  0% { transform: rotate(0deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(1, 128, 69, 0.6); }
  4% { transform: rotate(-8deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(1, 128, 69, 0.6); }
  8% { transform: rotate(8deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 2px rgba(1, 128, 69, 0.6); }
  12% { transform: rotate(-8deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 5px rgba(1, 128, 69, 0.5); }
  16% { transform: rotate(8deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 9px rgba(1, 128, 69, 0.3); }
  20% { transform: rotate(0deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 12px rgba(1, 128, 69, 0.1); }
  40% { transform: rotate(0deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 20px rgba(1, 128, 69, 0); }
  100% { transform: rotate(0deg); box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(1, 128, 69, 0); }
}

@keyframes btt-gentle-shake {
  0% { transform: translateY(0) rotate(0deg); box-shadow: var(--shadow-green), 0 0 0 0 rgba(1, 128, 69, 0.6); }
  4% { transform: translateY(0) rotate(-8deg); box-shadow: var(--shadow-green), 0 0 0 0 rgba(1, 128, 69, 0.6); }
  8% { transform: translateY(0) rotate(8deg); box-shadow: var(--shadow-green), 0 0 0 2px rgba(1, 128, 69, 0.6); }
  12% { transform: translateY(0) rotate(-8deg); box-shadow: var(--shadow-green), 0 0 0 5px rgba(1, 128, 69, 0.5); }
  16% { transform: translateY(0) rotate(8deg); box-shadow: var(--shadow-green), 0 0 0 9px rgba(1, 128, 69, 0.3); }
  20% { transform: translateY(0) rotate(0deg); box-shadow: var(--shadow-green), 0 0 0 12px rgba(1, 128, 69, 0.1); }
  40% { transform: translateY(0) rotate(0deg); box-shadow: var(--shadow-green), 0 0 0 20px rgba(1, 128, 69, 0); }
  100% { transform: translateY(0) rotate(0deg); box-shadow: var(--shadow-green), 0 0 0 0 rgba(1, 128, 69, 0); }
}

.floating-social-sidebar .social-icon:not(:hover) {
  animation: btn-gentle-shake 2.5s ease-in-out infinite 0.5s;
}

.social-group.active .social-icon:not(:hover) {
  animation: none;
}

.back-to-top.visible:not(:hover) {
  animation: btt-gentle-shake 2.5s ease-in-out infinite 0.5s;
}
/* Phân Loại Nhà Xưởng (Hover Reveal Grid) */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pl-card {
  display: flex;
  flex-direction: column;
  height: 500px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.pl-img-wrap {
  height: 420px;
  transition: height 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 50px 0 0 0;
}
.pl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pl-text-wrap {
  height: 80px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: height 0.5s ease-in-out;
  overflow: hidden;
}
.pl-text-wrap h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
  text-transform: uppercase;
}
.pl-text-wrap p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Hover state */
.pl-card:hover .pl-img-wrap {
  height: 280px;
}
.pl-card:hover .pl-text-wrap {
  height: 220px;
}
.pl-card:hover .pl-text-wrap p {
  opacity: 1;
}

@media (max-width: 991px) {
  .pl-grid {
    grid-template-columns: 1fr;
  }
  .pl-card {
    height: 400px;
  }
}
