/* ========================================
   Header & Slide-in Menu Component
   Logo left, Hamburger right (all devices)
   Bootstrap 5 Compatible
======================================== */

:root {
  /* Colors */
  --header-bg: transparent;
  --header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --header-height: 100px;
  --header-height-mobile: 70px;

  /* Menu Colors */
  --menu-bg: linear-gradient(135deg, rgba(139, 109, 76, 0.95) 0%, #523829 100%);
  --menu-text: #ffffff;
  --menu-width: 360px;
  --menu-underline: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);

  /* Typography */
  --font-primary: var(--normal-font);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --primary-btn-yellow: #ffd700;
  --primary-btn-dark: #333333;
  --primary-btn-text: #ffffff;
  --primary-btn-text-hover: #333333;
  --primary-btn-icon: #ffffff;
  --primary-btn-icon-hover: #333333;
  --primary-btn-border: #333333;
  --primary-btn-border-hover: #333333;
  --primary-btn-background: #333333;

  --primary-color: #a8743a;
  --border-color: #d8b27a;
  --text-white-light: #fff7ec;
  --primary-brown-dark: #523829;
  --primary-yellow-light: #f6e6c3;
  --white: #ffffff;
  --black: #000000;
}

/* header start */

/* ========================================
   Header Styles
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: all var(--transition-normal);
  -webkit-transition: all var(--transition-normal);
  -moz-transition: all var(--transition-normal);
  -ms-transition: all var(--transition-normal);
  -o-transition: all var(--transition-normal);
  padding: 15px 0;
}

.site-header.scrolled {
  /* background: var(--primary-brown-dark); */
  background: linear-gradient(135deg, #523829 0%, #3a261c 50%, #523829 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header.hidden {
  transform: translateY(-120%);
  -webkit-transform: translateY(-120%);
  -moz-transform: translateY(-120%);
  -ms-transform: translateY(-120%);
  -o-transform: translateY(-120%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: all var(--transition-normal);
  -webkit-transition: all var(--transition-normal);
  -moz-transition: all var(--transition-normal);
  -ms-transition: all var(--transition-normal);
  -o-transition: all var(--transition-normal);
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.header-logo:hover .logo-img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* ========================================
   Menu Toggle Button (Hamburger - 2 lines)
   Visible on ALL devices
======================================== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 28px;
  height: 22px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-normal);
  position: absolute;
  right: 0;
  -webkit-transition: all var(--transition-normal);
  -moz-transition: all var(--transition-normal);
  -ms-transition: all var(--transition-normal);
  -o-transition: all var(--transition-normal);
}

.site-header.scrolled .hamburger-line {
  background-color: var(--white);
}

/* 3 lines hamburger */
.hamburger-line:nth-child(1) {
  top: 0;
  width: 28px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.hamburger-line:nth-child(3) {
  bottom: 0;
  width: 28px;
}

/* Hamburger Animation - transform to X */
.menu-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   Menu Overlay
======================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1050;
  transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   Slide-in Menu Panel
======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--menu-width);
  max-width: 100%;
  height: 100dvh;
  background: var(--menu-bg);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Background Image */
.mobile-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/menu-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 29px;
  right: 42px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition-fast);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 25px;
  height: 22px;
}

/* ========================================
   Navigation List
======================================== */
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 80px 0 40px;
  position: relative;
  z-index: 5;
}

.mobile-nav-item {
  position: relative;
  padding: 0 29px 0 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 0;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  color: var(--menu-text);
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-link.active {
  color: #ffffff;
}

/* Dropdown Icon */
.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 17px;
  transition: transform var(--transition-normal);
}

.mobile-nav-item.has-submenu.open .dropdown-icon {
  transform: rotate(180deg);
}

/* Nav Underline */
.nav-underline {
  height: 4px;
  margin-left: 20%;
  background: var(--menu-underline);
  opacity: 0.4;
}

/* ========================================
   Submenu
======================================== */
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.mobile-nav-item.has-submenu.open .mobile-submenu {
  max-height: 300px;
}

.mobile-submenu li {
  padding: 0;
}

.mobile-submenu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-align: right;
  transition: all var(--transition-fast);
}

.mobile-submenu a:hover {
  color: #ffffff;
  padding-right: 10px;
}

/* ========================================
   Animation Classes
======================================== */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .mobile-nav-item {
  animation: fadeInRight 0.4s ease forwards;
  opacity: 0;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
  animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
  animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
  animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-item:nth-child(6) {
  animation-delay: 0.35s;
}

.site-header.scrolled {
  padding: 10px 0;
}

.site-header.scrolled .logo-img {
  height: 50px;
}

/* header end */

/* slider start */

/* ========================================
   Hero Section
======================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: 0px;
}

/* Birds Overlay */
.birds-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 100%;
  user-select: none;
}

.birds-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.hero-title-wrapper {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  /* max-width: 800px; */
  margin: 0 auto;
  text-align: center;
  transform: translateY(90px);
  -webkit-transform: translateY(90px);
  -moz-transform: translateY(90px);
  -ms-transform: translateY(90px);
  -o-transform: translateY(90px);
}

.hero-title-text {
  font-size: clamp(1.2rem, 0.5538rem + 3.2308vw, 3.3rem);
  font-family: var(--normal-font);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
  letter-spacing: 0px;
}

.hero-title-text span {
  white-space: nowrap;
}

.hero-title-text span.top {
  padding-right: 20%;
}

.hero-title-text span.bottom {
  padding-left: 20%;
}

.hero-title-description {
  font-size: 1rem;
  font-family: var(--normal-font);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  letter-spacing: 0px;
  max-width: 400px;
  margin: 0 auto;
}

.galaxy-btn-primary {
  background: var(--primary-color);
  color: var(--text-white-light);
  padding: 10px 20px 10px 55px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  overflow: hidden;
}

.galaxy-btn-primary-icon {
  position: absolute;
  left: 2.5px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--primary-brown-dark);
  color: var(--primary-yellow-light);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: 0px 0px 80px 0px var(--primary-yellow-light);
}

.galaxy-btn-primary:hover {
  color: var(--text-white-light);
}

.galaxy-btn-primary:hover .galaxy-btn-primary-icon {
  left: calc(100% - 42.5px);
  box-shadow: 0px 0px 80px 0px var(--primary-yellow-light);
}

.galaxy-btn-primary-text {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: block;
}

.galaxy-btn-primary:hover .galaxy-btn-primary-text {
  transform: translateX(-35px);
  -webkit-transform: translateX(-35px);
  -moz-transform: translateX(-35px);
  -ms-transform: translateX(-35px);
  -o-transform: translateX(-35px);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 20;
  top: 0%;
  left: 0;
  pointer-events: none;
  user-select: none;
  padding-top: 120px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      #f8f6f3 37.3%);
  pointer-events: none;
  z-index: 21;
}

/* ========================================
   Statistics Section
======================================== */
.statistics-section {
  position: relative;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 25;
  background-color: #f8f6f3;
  padding-top: 120px;
}

.stat-card {
  /* background: var(--menu-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px; */
  gap: 0px;
}

.stat-number-wrapper {
  position: relative;
}

.stat-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.stat-text {
  font-size: 0.85rem;
  font-weight: 500;
  /* color: var(--white); */
  color: #69696b;
  opacity: 0.8;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

/* slider end */

/* trang chủ start */

/* values section start */
/* ========================================
   Aura Values Section
   4 Core Values: A-U-R-A
   Bootstrap 5 Compatible
======================================== */

.aura-values-section {
  background-color: #f8f6f3;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* Subtle decorative pattern overlay */
/* .aura-values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(196, 149, 106, 0.06) 0%,
      transparent 25%),
    radial-gradient(circle at 90% 80%,
      rgba(196, 149, 106, 0.05) 0%,
      transparent 30%),
    radial-gradient(circle at 50% 50%,
      rgba(196, 149, 106, 0.02) 0%,
      transparent 50%),
    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='%23c4956a' 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");
  pointer-events: none;
} */

/* Section Header */
.section-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #c4956a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 700;
  /* font-style: italic; */
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
}

.section-desc {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  max-width: 400px;
}

.aura-values-header-row {
  margin: 60px 0 100px 0;
}

/* ========================================
Value Cards
======================================== */
.value-card {
  /* background: var(--primary-brown-dark); */
  /* background: var(--menu-bg); */
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* border: 1px solid #c4956a; */
  background: #030303;
}

.value-letter-wrapper-image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.value-letter-wrapper-image picture,
.value-letter-wrapper-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Top accent line */
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c4956a, transparent);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0 0 3px 3px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.value-card:hover {
  box-shadow: 0 20px 50px rgba(196, 149, 106, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
}

/* Large Letter Background - AURA branding với Gold Shine Effect */
.value-letter {
  font-family: var(--normal-font);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  user-select: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: -5px;

  /* Gold gradient - Vàng đậm tối để tương phản với chữ trắng */
  background: linear-gradient(135deg,
      #8b6914 0%,
      #a67c1a 20%,
      #c49a2c 40%,
      #d4a84b 50%,
      #c49a2c 60%,
      #a67c1a 80%,
      #8b6914 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Gold shine animation */
  animation: goldShineText 3s ease-in-out infinite;

  /* Subtle glow */
  filter: drop-shadow(0 2px 4px rgba(139, 105, 20, 0.3));
  opacity: 0.8;

}

/* Gold Shine Animation - Hiệu ứng gradient vàng chuyển động */
@keyframes goldShineText {
  0% {
    background-position: 0% 50%;
  }

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

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

/* Hiệu ứng shine lóe sáng chạy qua text - giống ánh sáng trong ảnh logo */
.value-letter::after {
  content: attr(data-letter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 0%,
      transparent 35%,
      rgba(212, 168, 75, 0.5) 42%,
      rgba(232, 195, 108, 0.7) 47%,
      rgba(245, 224, 154, 0.9) 50%,
      rgba(232, 195, 108, 0.7) 53%,
      rgba(212, 168, 75, 0.5) 58%,
      transparent 65%,
      transparent 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinePass 2.5s ease-in-out infinite;
  animation-delay: 1s;
}

/* Keyframes cho shine effect chạy qua */
@keyframes shinePass {

  0%,
  20% {
    background-position: 200% center;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  80%,
  100% {
    background-position: -200% center;
    opacity: 0;
  }
}

/* Staggered animation cho từng chữ A-U-R-A */
.value-card:nth-child(1) .value-letter::after {
  animation-delay: 0s;
}

.value-card:nth-child(2) .value-letter::after {
  animation-delay: 0.3s;
}

.value-card:nth-child(3) .value-letter::after {
  animation-delay: 0.6s;
}

.value-card:nth-child(4) .value-letter::after {
  animation-delay: 0.9s;
}

/* Value Content */
.value-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  text-align: center;
}

.value-title {
  font-family: var(--normal-font);
  font-size: 16px;
  font-weight: 600;
  color: #c2a46e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.value-title::first-letter {
  font-size: 24px;
}

.value-title span {
  display: block;
  width: 100%;
  color: #87754f;
  font-weight: 400;
}

.value-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4a574, #c4956a, #b8865c);
  margin: 0 auto 15px;
  border-radius: 2px;
  transition: width 0.4s ease;
  box-shadow: 0 2px 8px rgba(196, 149, 106, 0.3);
  display: none;
}

.value-card:hover .value-divider {
  width: 60px;
}

.value-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  -moz-transition: color 0.3s ease, opacity 0.3s ease;
  -ms-transition: color 0.3s ease, opacity 0.3s ease;
  -o-transition: color 0.3s ease, opacity 0.3s ease;
}

.value-card:hover .value-desc {
  color: var(--white);
  opacity: 1;
}

/* .value-card:hover .value-title {
  color: #c4956a;
} */

/* values section end */

/* developer section start */
/* ========================================
   Developer Section
   "Nhà phát triển tiên phong"
   Bootstrap 5 Compatible
======================================== */

.developer-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Background Pattern */
.developer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Logo Watermark */
.logo-watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  max-width: 600px;
  height: 60%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
}

.logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

/* ========================================
Section Header
======================================== */
.developer-header {
  position: relative;
  z-index: 5;
  margin-bottom: 40px;
}

.developer-title-top {
  font-family: var(--title-font);
  font-size: clamp(2rem, 1.3846rem + 3.0769vw, 4rem);
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0 0 5px;
}

.developer-title-main {
  font-family: var(--title-font);
  font-size: clamp(2rem, 1.3846rem + 3.0769vw, 4rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin: 0 0 15px;
  /* Gold Gradient Text */
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.developer-subtitle {
  font-family: var(--normal-font);
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

/* ========================================
Showcase Area
======================================== */
.developer-showcase {
  position: relative;
  z-index: 5;
}

.showcase-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-media {
  position: relative;
  overflow: hidden;
}

.showcase-media-video-box {
  border-radius: 12px;
  overflow: hidden;
}

.showcase-media-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-media:hover .showcase-image {
  transform: scale(1.02);
}

.developer-content {
  max-width: 850px;
  margin: 0 auto;
}

/* Play Button */
.btn-play-video {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 20px;
  color: #ffffff;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn-play-video:hover {
  background: #ffffff;
  color: #333333;
}

.btn-play-video::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  margin-right: 8px;
}

/* ========================================
Video Modal
======================================== */
.video-modal .modal-content {
  background: transparent;
  border: none;
}

.video-modal .modal-header {
  border: none;
  padding: 10px;
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 10;
}

.video-modal .modal-body {
  padding: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

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

/* developer section end */

/* projects section start */
/* ========================================
   Projects Section
   "Kỷ nguyên mới" - Hover Expand + Slide Navigation
   Bootstrap 5 + Swiper Compatible
======================================== */

.projects-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Background */
.projects-section .projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.projects-section .projects-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
Section Header
======================================== */
.projects-section .projects-header {
  position: relative;
  z-index: 5;
  padding: 0 20px;
  margin-bottom: 50px;
}

.projects-section .header-line {
  gap: 10px;
}

.projects-section .header-line {
  font-family: var(--title-font);
  font-size: 1.7rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.6px;
}

.projects-section .header-line span {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(82deg,
      #653e2c 0%,
      #c6803b 17.76%,
      #ecd69f 82.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-section .line-decoration {
  display: inline-block;
  width: 100px;
  height: 1px;
  background: var(--white);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  position: relative;
}

.projects-section .line-decoration::before {
  content: "";
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* ========================================
Projects Slider Container (Desktop)
======================================== */
.projects-section .projects-slider-container {
  position: relative;
  z-index: 5;
  overflow: hidden;
  /* display: none; */
}

.projects-section .projects-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-section .projects-slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.projects-section .projects-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* ========================================
Projects Grid (3 items per slide)
======================================== */
.projects-section .projects-grid {
  display: flex;
  gap: 20px;
  padding: 0 10px;
}

.projects-section .project-item {
  flex: 1;
  min-width: 0;
  height: 690px;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Hover expand effect */
.projects-section .projects-grid:hover .project-item {
  flex: 0.7;
}

.projects-section .projects-grid:hover .project-item:hover {
  flex: 1.6;
}

.projects-section .projects-grid .project-item.active {
  flex: 1.6;
}

.projects-section .projects-grid:hover .project-item.active {
  flex: 0.7;
}

.projects-section .projects-grid:hover .project-item.active:hover {
  flex: 1.6;
}

/* ========================================
Project Card
======================================== */
.projects-section .project-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.projects-section .project-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.projects-section .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.projects-section .project-item:hover .project-image img,
.projects-section .swiper-slide:hover .project-image img {
  transform: scale(1.05);
}

.projects-section .project-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

/* Badge */
.projects-section .project-badge {
  position: absolute;
  top: 30px;
  right: 0;
  padding: 10px 20px;
  background: linear-gradient(81.5deg, #653e2c 0%, #c6803b 33.45%, #ecd69f 83%);
  text-align: left;
  z-index: 5;
}

.projects-section .project-badge span {
  display: block;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.6;
}

/* Content */
.projects-section .project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 5;
}

.projects-section .project-title {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 15px;
}

.projects-section .project-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.project-location iconify-icon {
  font-size: 20px;
  color: #ffffff;
}

.projects-section .project-location img {
  width: 20px;
  height: auto;
}

.projects-section .project-location span {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

/* Link Button */
.projects-section .project-link {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.projects-section .project-item:hover .project-link,
.projects-section .project-item.active .project-link {
  opacity: 1;
  transform: translateY(0);
}

.projects-section .project-link:hover {
  background: #ffffff;
  color: #333333;
}

/* ========================================
Projects Swiper - Mobile/Tablet
======================================== */
.projects-section .projects-swiper-wrapper {
  position: relative;
  z-index: 5;
  padding: 0 15px;
}

.projects-section .projects-swiper {
  overflow: visible;
}

.projects-section .projects-swiper .swiper-slide {
  width: 85%;
  max-width: 400px;
  height: 500px;
}

.projects-section .projects-swiper .project-card {
  border-radius: 8px;
}

.projects-section .projects-swiper .project-link {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
Navigation
======================================== */
.projects-section .projects-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.projects-section .nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #9d9d9d;
  border-radius: 50%;
  color: #9d9d9d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-section .nav-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.projects-section .nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.projects-section .nav-btn svg {
  width: 16px;
  height: 18px;
}

/* Slide Indicator */
.projects-section .nav-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--normal-font);
  font-size: 14px;
  color: #9d9d9d;
}

.projects-section .nav-indicator .current-slide {
  color: #ffffff;
  font-weight: 600;
}

.projects-section .nav-indicator .separator {
  color: #9d9d9d;
}

.projects-section .nav-indicator .total-slides {
  color: #9d9d9d;
}

/* projects section end */

/* lifestyle section start */
/* ========================================
   Lifestyle Section
   "Nâng tầm chất sống TINH TẾ" + Philosophy
   Bootstrap 5 + Swiper Compatible
======================================== */

.lifestyle-section {
  position: relative;
  overflow: hidden;
}

/* ========================================
Part 1: Gallery with Title
======================================== */
.lifestyle-gallery-wrapper {
  position: relative;
  background-color: #f9f5e8;
}

.lifestyle-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.lifestyle-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

/* Title Wrapper */
.lifestyle-title-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px 60px 20px;
}

.lifestyle-title-content {
  text-align: right;
}

.title-line {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
  margin: 0 0 5px;
}

.title-gradient {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(85deg, #653e2c 0%, #c6803b 53.21%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-decoration {
  width: 169px;
  height: 6px;
  background: linear-gradient(90deg, #ecd69f 0%, #c6803b 50%, #653e2c 100%);
  margin: 15px 0 15px auto;
  border-radius: 3px;
}

/* Gallery Swiper */
.gallery-swiper-wrapper {
  position: relative;
  z-index: 5;
  height: 100%;
}

.gallery-swiper {
  width: 100%;
  height: 100%;
}

.gallery-swiper .swiper-slide {
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gallery-image img,
.gallery-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Pagination */
.gallery-pagination {
  position: relative;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  display: flex;
  gap: 5px;
  padding-top: 20px;
  justify-content: center;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 4px;
  border-radius: 0;
  background: #ffffff;
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: #ebc767;
}

/* ========================================
Part 2: Philosophy
======================================== */
.philosophy-wrapper {
  position: relative;
  padding: 60px 0 80px;
  background-color: #f9f5e8;
}

.philosophy-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.philosophy-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.7;
}

/* Philosophy Header */
.philosophy-header {
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}

.philosophy-subtitle {
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 10px;
}

.philosophy-title {
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0 0 15px;
  background: linear-gradient(87deg, #653e2c 0%, #c6803b 53.21%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.philosophy-line-wrapper .line-decoration {
  width: 80px;
  height: 1px;
  background: var(--black);
  position: relative;
}

.philosophy-line-wrapper .line-decoration::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3px;
  height: 3px;
  background: var(--black);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.philosophy-tagline {
  font-family: var(--title-font);
  font-size: 1.7rem;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
}

/* Philosophy Items */
.philosophy-item {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 20px;
}

.philosophy-icon {
  margin-bottom: 20px;
}

.philosophy-icon img {
  width: 165px;
  height: 165px;
  margin: 0 auto;
  object-fit: contain;
}

.philosophy-text {
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 500;
  color: #946125;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
}

.gallery-swiper-wrapper-box {
  padding-left: 15px;
  padding-bottom: 15px;
}

/* Gradient Divider */
.gradient-divider {
  position: absolute;
  top: initial;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ecd69f 0%, #c6803b 50%, #653e2c 100%);
  z-index: 1;
}

/* lifestyle end */

/* news section start */
/* ========================================
   News Section
   "Tin tức & Sự kiện"
   Bootstrap 5 + Swiper Compatible
======================================== */

.news-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background-color: #f9f5e8;
}

/* Background Pattern */
.news-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.news-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Section Header */
.news-header {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 50px;
}

.news-title {
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* News Container */
.news-container {
  position: relative;
  z-index: 5;
}

/* Navigation Arrows - Left Side */
.news-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-nav-btn {
  width: 100px;
  height: 50px;
  border: 1px solid #737373;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-nav-btn:hover {
  background: rgba(101, 62, 44, 0.1);
  border-color: #653e2c;
}

.news-nav-btn svg {
  width: 13px;
  height: 14px;
  fill: none;
  stroke: #737373;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.news-nav-btn:hover svg {
  stroke: #653e2c;
}

.news-nav-prev svg {
  transform: rotate(180deg);
}

/* Swiper Container */
.news-swiper-wrapper {
  margin-left: 150px;
  padding-right: 0px;
  overflow: hidden;
}

.news-swiper {
  overflow: visible;
  padding-bottom: 20px;
}

/* News Card */
.news-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.news-card-image {
  position: relative;
  padding: 10px 50px 10px 10px;
  background: linear-gradient(90deg, #ecd69f 0%, #c6803b 50%, #653e2c 100%);
  margin-bottom: 15px;
}

.news-card-image-inner {
  position: relative;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* Date Badge - Vertical */
.news-card-date {
  position: absolute;
  right: -23px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 400;
  color: #ca977c;
  letter-spacing: 2px;
  white-space: nowrap;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
}

/* Card Content */
.news-card-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.news-card-number {
  font-family: var(--normal-font);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #ecd69f 0%, #c6803b 50%, #653e2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.news-card-title {
  font-family: var(--normal-font);
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* View All Button */
.news-view-all {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 50px;
}

.news-view-all-btn {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #653e2c;
  border-radius: 50px;
  font-family: var(--normal-font);
  font-size: 15px;
  font-weight: 400;
  color: #653e2c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-view-all-btn:hover {
  background: #653e2c;
  color: #ffffff;
}

.news-container-mobile {
  position: relative;
  z-index: 5;
  padding: 0 10px;
}

/* news section end */

/* partners section start */
/* ========================================
   Partners Section
   "Đối tác chiến lược"
   Bootstrap 5 + Swiper Compatible
======================================== */

.partners-section {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background-color: #f9f5e8;
}

/* Background Pattern */
.partners-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.partners-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Section Header */
.partners-header {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 60px;
}

.partners-title {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
  background: linear-gradient(90deg, #653e2c 0%, #c6803b 50%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Partners Container */
.partners-container {
  position: relative;
  z-index: 5;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Partners Swiper */
.partners-swiper {
  width: 100%;
  padding: 20px 0;
}

.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 137px;
}

/* Partner Logo */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

/* partners section end */

/* trang chủ end */


/* footer start */
/* ========================================
   Footer Component
   Reusable Footer with Bootstrap 5
======================================== */

.site-footer {
  position: relative;
  background-color: #2e2d2d;
  overflow: hidden;
}

/* Background Image */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Footer Main Content */
.footer-main {
  position: relative;
  z-index: 5;
  padding: 58px 0 50px;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 0;
}

.footer-logo img {
  height: 107px;
  width: auto;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* Company Info */
.footer-company-title {
  font-family: var(--normal-font);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 20px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon iconify-icon {
  font-size: 20px;
  color: #ffffff;
}

.footer-contact-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-contact-text,
.footer-contact-link {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #e4ad46;
}

/* Footer Menu */
.footer-menu-title {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 2;
  margin: 0 0 20px;
}

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

.footer-menu-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}

.footer-menu-item:last-child {
  margin-bottom: 0;
}

.footer-menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

.footer-menu-link {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-link:hover {
  color: #e4ad46;
}

/* Newsletter */
.footer-newsletter-title {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 2;
  margin: 0 0 15px;
}

.footer-newsletter-form {
  position: relative;
  margin-bottom: 30px;
}

.footer-newsletter-input {
  width: 100%;
  height: 42px;
  padding: 10px 50px 10px 20px;
  background: #4d4d4d;
  border: 1px solid #af9256;
  border-radius: 50px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-style: italic;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.footer-newsletter-input:focus {
  border-color: #e4ad46;
  background: #5a5a5a;
}

.footer-newsletter-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-btn img,
.footer-newsletter-btn svg {
  width: 16px;
  height: 17px;
}

/* Social Links */
.footer-social-title {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 2;
  margin: 0 0 15px;
}

.footer-social-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: block;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.1);
}

.footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 5;
  background: #2e2d2d;
  padding: 12px 0;
  text-align: center;
}

.footer-copyright {
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.footer-copyright a {
  color: #e4ad46;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
}

/* footer end */

/* ========================================
   Investor & Project Section
   Tab-based investor navigation with project slider
======================================== */
.investor-project-section {
  position: relative;
  padding: 100px 0 120px;
  background: #faf8f5;
  overflow: hidden;
}

/* Background */
.investor-project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
}

.investor-project-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.investor-project-bg .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(82, 56, 41, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 116, 58, 0.03) 0%, transparent 50%);
}

.investor-project-bg .bg-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(82, 56, 41, 0.02) 0%, transparent 100%);
}

/* Section Header */
.investor-project-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-subtitle-badge {
  display: inline-block;
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 600;
  color: #a8743a;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 20px;
  border: 1px solid rgba(168, 116, 58, 0.3);
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(168, 116, 58, 0.05);
}

.section-title-gradient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.section-title-gradient .title-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #523829;
  letter-spacing: 2px;
}

.section-title-gradient .title-highlight {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-project-header .section-description {
  font-family: var(--normal-font);
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Investor Tabs */
.investor-tabs-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

/* Investor Tabs Wrapper - Container cho Custom Slider */
.investor-tabs-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Custom Tabs Container */
.investor-tabs-container {
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 15px;
  overflow: hidden;
  cursor: grab;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Tabs Track - flex container cho items */
.investor-tabs-track {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Navigation Arrows cho Tabs */
.investor-tabs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d8b27a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(82, 56, 41, 0.1);
}

.investor-tabs-nav:hover {
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  border-color: transparent;
}

.investor-tabs-nav:hover svg {
  stroke: #ffffff;
}

.investor-tabs-nav svg {
  stroke: #523829;
  transition: stroke 0.3s ease;
}

.investor-tabs-prev {
  left: 5px;
}

.investor-tabs-next {
  right: 5px;
}

.investor-tabs-nav.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.investor-tabs-nav.disabled:hover {
  background: #ffffff;
  border-color: #d8b27a;
}

.investor-tabs-nav.disabled:hover svg {
  stroke: #523829;
}

/* Investor Tab Item */
.investor-tab {
  position: relative;
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  /*Desktop:;
  5itemsvisible-mỗiitemchiếm~20%width*/
  /*Tínhtoán:;
  (100%-gap*4)/5vớigap=8px*/
  min-width: calc((100% - 32px) / 5);
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  aspect-ratio: 1/1;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.investor-tab.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: transparent;

}

.investor-tab-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

.investor-tab .tab-name {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.investor-tab .tab-underline {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #653e2c 0%, #c6803b 50%, #ecd69f 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}



/* .investor-tab:hover .tab-underline {
  width: 60%;
} */


.investor-tab.active::before {
  opacity: 1;
}

/* .investor-tab.active .tab-name {
  color: transparent !important;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
} */

.investor-tab.active::before {
  width: 100%;
  color: #523829;
}

/* .investor-tab.active .tab-underline {
  display: none;
} */

/* Projects Container */
.investor-projects-container {
  position: relative;
  z-index: 1;
}

.investor-projects-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.investor-projects-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper Styles */
.investor-project-swiper {
  padding: 20px 0 60px;
  overflow: visible;
}

.investor-project-swiper .swiper-wrapper {
  align-items: center;
}

.investor-project-swiper .swiper-slide {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.5;
  transform: scale(0.85);
}

.investor-project-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* Project Showcase Card - Desktop: Full-width immersive design */
.project-showcase-card {
  position: relative;
  display: block;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 650px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .project-showcase-card {
  box-shadow: none;
}

.project-showcase-card:hover {
  transform: none;
}

/* Project Image - Full background */
.project-showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
}

.project-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-showcase-card:hover .project-showcase-image img {
  transform: scale(1.05);
}

.project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      transparent 100%);
  pointer-events: none;
}

/* Project Content - Absolute positioned at bottom */
.project-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
  z-index: 5;
}

/* Status Badge */
.project-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 25px;
  margin-bottom: 25px;
  width: fit-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-status-badge .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.project-status-badge.selling {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.project-status-badge.selling .status-dot {
  background: #4ade80;
}

.project-status-badge.upcoming {
  background: rgba(236, 214, 159, 0.2);
  color: #ecd69f;
}

.project-status-badge.upcoming .status-dot {
  background: #ecd69f;
}

.project-status-badge.completed {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.project-status-badge.completed .status-dot {
  background: #ffffff;
  animation: none;
}

/* Project Info */
.project-info {
  margin-bottom: 25px;
}

.project-showcase-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.project-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.project-location svg {
  flex-shrink: 0;
  color: #ecd69f;
}

/* Project Details */
.project-details {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-family: var(--normal-font);
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}

.detail-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* CTA Button */
.project-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 35px;
  background: linear-gradient(82deg, rgba(101, 62, 44, 0.9) 0%, rgba(168, 116, 58, 0.9) 100%);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 214, 159, 0.3);
}

.project-cta-btn::before {
  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 ease;
}

.project-cta-btn:hover {
  color: var(--white);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(82, 56, 41, 0.3);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.project-cta-btn:hover::before {
  left: 100%;
}

.project-cta-btn svg {
  transition: transform 0.3s ease;
}

.project-cta-btn:hover svg {
  transform: translateX(5px);
}

/* Card Decoration */
.project-card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.decoration-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(168, 116, 58, 0);
  transition: all 0.4s ease;
}

.decoration-corner.top-left {
  top: 15px;
  left: 15px;
  border-top-color: rgba(168, 116, 58, 0.3);
  border-left-color: rgba(168, 116, 58, 0.3);
  border-radius: 8px 0 0 0;
}

.decoration-corner.top-right {
  top: 15px;
  right: 15px;
  border-top-color: rgba(168, 116, 58, 0.3);
  border-right-color: rgba(168, 116, 58, 0.3);
  border-radius: 0 8px 0 0;
}

.decoration-corner.bottom-left {
  bottom: 15px;
  left: 15px;
  border-bottom-color: rgba(168, 116, 58, 0.3);
  border-left-color: rgba(168, 116, 58, 0.3);
  border-radius: 0 0 0 8px;
}

.decoration-corner.bottom-right {
  bottom: 15px;
  right: 15px;
  border-bottom-color: rgba(168, 116, 58, 0.3);
  border-right-color: rgba(168, 116, 58, 0.3);
  border-radius: 0 0 8px 0;
}

.project-showcase-card:hover .decoration-corner {
  width: 50px;
  height: 50px;
}


/* Swiper Navigation */
.investor-swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.swiper-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(82, 56, 41, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #523829;
}

.swiper-nav-btn:hover:not(.disabled) {
  background: linear-gradient(82deg, #653e2c 0%, #a8743a 100%);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.1);
}

.swiper-nav-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Swiper Pagination */
.swiper-pagination-custom {
  display: flex;
  gap: 10px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid rgba(82, 56, 41, 0.3);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-custom .swiper-pagination-bullet .bullet-inner {
  width: 0;
  height: 0;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  border-color: #a8743a;
  transform: scale(1.2);
}

.swiper-pagination-custom .swiper-pagination-bullet-active .bullet-inner {
  width: 6px;
  height: 6px;
}

.swiper-pagination-custom {
  width: max-content !important;
}

/* investor-project-section end */

/* ========================================
   PROJECT DETAIL PAGE STYLES
   Trang chi tiết dự án bất động sản
   12 Sections - Full-width design
======================================== */

/* ----------------------------------------
   SECTION 1: HERO
---------------------------------------- */
.project-detail-page {
  overflow-x: hidden;
}

.pd-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pd-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pd-hero-video,
.pd-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      transparent 100%);
}

.pd-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 120px 0 80px;
}

.pd-hero-inner {
  max-width: 800px;
}

.pd-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pd-status-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pd-pulse 2s infinite;
}

@keyframes pd-pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.pd-status-badge.selling {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pd-status-badge.selling .status-dot {
  background: #4ade80;
}

.pd-status-badge.upcoming {
  background: rgba(236, 214, 159, 0.2);
  color: #ecd69f;
  border: 1px solid rgba(236, 214, 159, 0.3);
}

.pd-status-badge.upcoming .status-dot {
  background: #ecd69f;
}

.pd-status-badge.completed {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pd-status-badge.completed .status-dot {
  background: #ffffff;
  animation: none;
}

.pd-hero-title {
  font-family: var(--title-font);
  font-size: clamp(3rem, 2rem + 4vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 0 0 15px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.pd-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 35px;
  font-style: italic;
}

.pd-hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 35px;
}

.pd-stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pd-stat-value {
  font-family: var(--normal-font);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.pd-stat-label {
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
}

.pd-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 35px;
  background: linear-gradient(82deg, #653e2c 0%, #a8743a 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pd-btn-primary::before {
  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 ease;
}

.pd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(101, 62, 44, 0.4);
  color: #ffffff;
}

.pd-btn-primary:hover::before {
  left: 100%;
}

.pd-btn-primary .pd-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 18px;
}

.pd-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pd-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.pd-btn-secondary iconify-icon {
  font-size: 20px;
}

.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 35px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-btn-outline:hover {
  background: #ffffff;
  color: #523829;
}

.pd-btn-full {
  width: 100%;
}

.pd-btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}

.pd-btn-xl {
  padding: 20px 50px;
  font-size: 16px;
}

/* Scroll Indicator */
.pd-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pd-scroll-icon {
  font-size: 20px;
  color: #ffffff;
  animation: pd-scroll-bounce 2s infinite;
  -webkit-animation: pd-scroll-bounce 2s infinite;
}

@keyframes pd-scroll-bounce {

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

  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

/* ----------------------------------------
   SECTION 2: INTRO
---------------------------------------- */
.pd-intro-section {
  padding: 100px 0;
  background: #f9f5e8;
  position: relative;
}

.pd-section-badge {
  display: inline-block;
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 600;
  color: #a8743a;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 25px;
  border: 1px solid rgba(168, 116, 58, 0.3);
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(168, 116, 58, 0.05);
}

.pd-section-badge.pd-badge-light {
  color: #ecd69f;
  border-color: rgba(236, 214, 159, 0.3);
  background: rgba(236, 214, 159, 0.1);
}

.pd-section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.pd-section-title .title-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  font-weight: 400;
  color: #333333;
  letter-spacing: 2px;
}

.pd-section-title .title-gradient {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pd-section-title.pd-title-light .title-line {
  color: #ffffff;
}

.pd-section-header {
  margin-bottom: 50px;
}

.pd-section-header.text-center {
  text-align: center;
}

.pd-section-header.text-center .pd-section-title {
  align-items: center;
}

.pd-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pd-intro-content {
  padding-right: 40px;
}

.pd-intro-desc {
  font-family: var(--normal-font);
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.pd-intro-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  width: max-content;
}

.pd-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pd-logo-label {
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-logo-item img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.pd-logo-divider {
  width: 1px;
  height: 60px;
  background: #e0e0e0;
}

/* Info Grid */
.pd-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pd-info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(168, 116, 58, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.pd-info-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pd-info-card:hover {
  border-color: #a8743a;
  box-shadow: 0 10px 30px rgba(168, 116, 58, 0.1);
  transform: translateY(-5px);
}

.pd-info-card iconify-icon {
  font-size: 28px;
  color: #a8743a;
}

.pd-info-label {
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-info-value {
  font-family: var(--normal-font);
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
}

/* ----------------------------------------
   SECTION 3: LOCATION
---------------------------------------- */
.pd-location-section {
  padding: 100px 0;
  background: #ffffff;
}

.pd-map-wrapper {
  margin: 50px 0;
}

.pd-map-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.pd-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pd-map-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.pd-map-info-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(82, 56, 41, 0.95);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pd-map-info-inner iconify-icon {
  font-size: 20px;
  color: #ecd69f;
}

.pd-map-info-inner span {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

/* Connections */
.pd-connections {
  margin-top: 50px;
}

.pd-connections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pd-connection-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f9f5e8;
  border-radius: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.pd-connection-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pd-connection-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.pd-connection-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #653e2c 0%, #a8743a 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.pd-connection-icon iconify-icon {
  font-size: 24px;
  color: #ffffff;
}

.pd-connection-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pd-connection-time {
  font-family: var(--normal-font);
  font-size: 18px;
  font-weight: 700;
  color: #a8743a;
}

.pd-connection-text {
  font-family: var(--normal-font);
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
}

/* ----------------------------------------
   SECTION 4: MASTER PLAN
---------------------------------------- */
.pd-masterplan-section {
  padding: 100px 0;
  background: #f9f5e8;
}

.pd-masterplan-wrapper {
  margin: 50px 0;
  cursor: pointer;
}

.pd-masterplan-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pd-masterplan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.pd-masterplan-image:hover img {
  transform: scale(1.02);
}

.pd-masterplan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pd-masterplan-image:hover .pd-masterplan-overlay {
  opacity: 1;
}

.pd-zoom-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.pd-zoom-hint iconify-icon {
  font-size: 50px;
}

.pd-zoom-hint span {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
}

/* Master Plan Stats */
.pd-masterplan-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 50px 0;
}

.pd-mp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pd-mp-stat-value {
  font-family: var(--title-font);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pd-mp-stat-label {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------------
   SECTION 5: FLOOR PLAN
---------------------------------------- */
.pd-floorplan-section {
  padding: 100px 0;
  background: #ffffff;
}

.pd-floorplan-tabs {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.pd-tabs-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pd-tabs-label {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  min-width: 100px;
}

.pd-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  padding: 12px 25px;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-tab:hover {
  background: #f9f5e8;
  color: #523829;
}

.pd-tab.active {
  background: linear-gradient(82deg, #653e2c 0%, #a8743a 100%);
  color: #ffffff;
  border-color: transparent;
}

.pd-tab-area {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

/* Floor Plan Display */
.pd-floorplan-display {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.pd-floorplan-image {
  background: #f9f5e8;
  border-radius: 20px;
  padding: 0px;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pd-floorplan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.pd-floorplan-info {
  padding: 40px;
  background: #f9f5e8;
  border-radius: 20px;
}

.pd-fp-title {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 700;
  color: #523829;
  margin: 0 0 25px;
}

.pd-fp-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.pd-fp-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 15px;
  color: #666666;
}

.pd-fp-detail iconify-icon {
  font-size: 22px;
  color: #a8743a;
}

.pd-fp-detail strong {
  color: #333333;
  font-weight: 600;
}

/* ----------------------------------------
   SECTION 6: GALLERY
---------------------------------------- */
.pd-gallery-section {
  padding: 100px 0;
  background: #f9f5e8;
}

.pd-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.pd-gallery-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  padding: 15px 30px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-gallery-tab iconify-icon {
  font-size: 20px;
}

.pd-gallery-tab:hover {
  color: #523829;
  border-color: #a8743a;
}

.pd-gallery-tab.active {
  background: linear-gradient(82deg, #653e2c 0%, #a8743a 100%);
  color: #ffffff;
}

/* Gallery Panels */
.pd-gallery-content {
  position: relative;
}

.pd-gallery-panel {
  display: none;
}

.pd-gallery-panel.active {
  display: block;
  animation: pd-fade-in 0.5s ease;
}

@keyframes pd-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Grid */
.pd-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pd-video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
}

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

.pd-video-item:hover img {
  transform: scale(1.05);
}

.pd-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pd-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pd-play-btn iconify-icon {
  font-size: 35px;
  color: #ffffff;
  margin-left: 5px;
}

.pd-video-item:hover .pd-play-btn {
  background: #ffffff;
  transform: scale(1.1);
}

.pd-video-item:hover .pd-play-btn iconify-icon {
  color: #523829;
}

.pd-video-title {
  font-family: var(--normal-font);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

/* Images Swiper */
.pd-images-swiper {
  padding: 20px 0 60px;
}

.pd-images-swiper .swiper-slide {
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.pd-images-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.pd-gallery-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.pd-gallery-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.pd-gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.pd-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pd-nav-btn iconify-icon {
  font-size: 28px;
  color: #523829;
}

.pd-nav-btn:hover {
  background: #523829;
  transform: scale(1.1);
}

.pd-nav-btn:hover iconify-icon {
  color: #ffffff;
}

.pd-gallery-pagination {
  text-align: center;
  margin-top: 30px;
}

.pd-gallery-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #cccccc;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.pd-gallery-pagination .swiper-pagination-bullet-active {
  width: 50px;
  background: linear-gradient(90deg, #653e2c 0%, #a8743a 100%);
}

/* 360 Tour */
.pd-tour360-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.pd-tour360-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 40px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
}

.pd-tour360-placeholder iconify-icon {
  font-size: 80px;
  color: #a8743a;
}

.pd-tour360-placeholder h3 {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 700;
  color: #523829;
  margin: 0;
}

.pd-tour360-placeholder p {
  font-family: var(--normal-font);
  font-size: 16px;
  color: #666666;
  margin: 0;
}

/* ----------------------------------------
   SECTION 7: AMENITIES
---------------------------------------- */
.pd-amenities-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.pd-amenities-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pd-amenities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-amenities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(82, 56, 41, 0.95) 0%, rgba(40, 28, 20, 0.95) 100%);
  opacity: 0.9;
}

.pd-amenities-section .container {
  position: relative;
  z-index: 5;
}

.pd-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pd-amenity-category {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.pd-amenity-category.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pd-amenity-category:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(236, 214, 159, 0.3);
  transform: translateY(-5px);
}

.pd-amenity-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-amenity-header iconify-icon {
  font-size: 30px;
  color: #ecd69f;
}

.pd-amenity-header h3 {
  font-family: var(--title-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pd-amenity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.pd-amenity-list li iconify-icon {
  font-size: 20px;
  color: #ecd69f;
  flex-shrink: 0;
}

/* ----------------------------------------
   SECTION 8: VALUE PROPS
---------------------------------------- */
.pd-value-section {
  padding: 100px 0;
  background: #ffffff;
}

.pd-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pd-value-item {
  position: relative;
  padding: 40px 30px;
  background: #f9f5e8;
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.pd-value-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pd-value-item:hover {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(168, 116, 58, 0.15);
  transform: translateY(-8px);
}

.pd-value-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(168, 116, 58, 0.1);
  line-height: 1;
}

.pd-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #653e2c 0%, #a8743a 100%);
  border-radius: 16px;
  margin-bottom: 25px;
}

.pd-value-icon iconify-icon {
  font-size: 30px;
  color: #ffffff;
}

.pd-value-title {
  font-family: var(--normal-font);
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px;
}

.pd-value-desc {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------
   SECTION 9: POLICY
---------------------------------------- */
.pd-policy-section {
  padding: 100px 0;
  background: #f9f5e8;
}

.pd-policy-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pd-policy-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pd-policy-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.pd-policy-title iconify-icon {
  font-size: 24px;
  color: #a8743a;
}

/* Payment Timeline */
.pd-payment-timeline {
  position: relative;
  padding-left: 30px;
}

.pd-payment-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #a8743a 0%, #ecd69f 100%);
}

.pd-payment-item {
  position: relative;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-left: 10px;
}

.pd-payment-item:last-child {
  margin-bottom: 0;
}

.pd-payment-dot {
  position: absolute;
  left: -30px;
  top: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #653e2c 0%, #a8743a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-payment-dot span {
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.pd-payment-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pd-payment-milestone {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.pd-payment-amount {
  font-family: var(--normal-font);
  font-size: 16px;
  font-weight: 700;
  color: #a8743a;
}

.pd-payment-note {
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}

/* Loan List */
.pd-loan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pd-loan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.pd-loan-list li iconify-icon {
  font-size: 20px;
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 2px;
}

.pd-loan-list li strong {
  color: #333333;
}

/* Promo List */
.pd-promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pd-promo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--normal-font);
  font-size: 14px;
  color: #666666;
}

.pd-promo-list li iconify-icon {
  font-size: 18px;
  color: #ecd69f;
}

/* Policy Notes */
.pd-policy-notes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 30px;
  background: rgba(168, 116, 58, 0.08);
  border-radius: 12px;
  margin-top: 10px;
}

.pd-policy-notes p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--normal-font);
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.pd-policy-notes p iconify-icon {
  font-size: 16px;
  color: #a8743a;
}

/* ----------------------------------------
   SECTION 10: CTA MIDDLE
---------------------------------------- */
.pd-cta-middle-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.pd-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pd-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(82, 56, 41, 0.92) 0%, rgba(40, 28, 20, 0.92) 100%);
}

.pd-cta-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pd-cta-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
  line-height: 1.3;
}

.pd-cta-desc {
  font-family: var(--normal-font);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
}

.pd-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ----------------------------------------
   SECTION 11: FORMS
---------------------------------------- */
.pd-form-section {
  padding: 100px 0;
  background: #ffffff;
}

.pd-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.pd-form-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.pd-form-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  padding: 15px 30px;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-form-tab iconify-icon {
  font-size: 20px;
}

.pd-form-tab:hover {
  background: #f9f5e8;
  color: #523829;
}

.pd-form-tab.active {
  background: linear-gradient(82deg, #653e2c 0%, #a8743a 100%);
  color: #ffffff;
}

.pd-form-panel {
  display: none;
}

.pd-form-panel.active {
  display: block;
  animation: pd-fade-in 0.4s ease;
}

.pd-contact-form {
  background: #f9f5e8;
  border-radius: 20px;
  padding: 40px;
}

.pd-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

.pd-form-group label {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.pd-form-group label span {
  color: #e74c3c;
}

.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
  font-family: var(--normal-font);
  font-size: 14px;
  color: #333333;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.pd-form-group input:focus,
.pd-form-group select:focus,
.pd-form-group textarea:focus {
  border-color: #a8743a;
  box-shadow: 0 0 0 3px rgba(168, 116, 58, 0.1);
}

.pd-form-group input::placeholder,
.pd-form-group textarea::placeholder {
  color: #999999;
}

.pd-form-group select {
  cursor: pointer;
}

.pd-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.pd-contact-form .pd-btn-primary {
  margin-top: 20px;
}

/* ----------------------------------------
   SECTION 12: FINAL CTA
---------------------------------------- */
.pd-final-cta-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.pd-final-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pd-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-final-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(82, 56, 41, 0.95) 0%, rgba(40, 28, 20, 0.95) 100%);
}

.pd-final-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pd-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 25px;
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 30px;
  margin-bottom: 30px;
}

.pd-final-badge iconify-icon {
  font-size: 20px;
  color: #e74c3c;
  animation: pd-fire 1s infinite;
}

@keyframes pd-fire {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.pd-final-title {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.pd-highlight {
  background: linear-gradient(82deg, #ecd69f 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pd-final-desc {
  font-family: var(--normal-font);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 40px;
}

.pd-final-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pd-final-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pd-trust-item iconify-icon {
  font-size: 20px;
  color: #4ade80;
}

/* Animation for elements */
.pd-info-card,
.pd-connection-item,
.pd-amenity-category,
.pd-value-item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pd-info-card:nth-child(1) {
  transition-delay: 0.1s;
}

.pd-info-card:nth-child(2) {
  transition-delay: 0.2s;
}

.pd-info-card:nth-child(3) {
  transition-delay: 0.3s;
}

.pd-info-card:nth-child(4) {
  transition-delay: 0.4s;
}

.pd-info-card:nth-child(5) {
  transition-delay: 0.5s;
}

.pd-info-card:nth-child(6) {
  transition-delay: 0.6s;
}

.pd-connection-item:nth-child(1) {
  transition-delay: 0.1s;
}

.pd-connection-item:nth-child(2) {
  transition-delay: 0.15s;
}

.pd-connection-item:nth-child(3) {
  transition-delay: 0.2s;
}

.pd-connection-item:nth-child(4) {
  transition-delay: 0.25s;
}

.pd-connection-item:nth-child(5) {
  transition-delay: 0.3s;
}

.pd-connection-item:nth-child(6) {
  transition-delay: 0.35s;
}

.pd-amenity-category:nth-child(1) {
  transition-delay: 0.1s;
}

.pd-amenity-category:nth-child(2) {
  transition-delay: 0.2s;
}

.pd-amenity-category:nth-child(3) {
  transition-delay: 0.3s;
}

.pd-amenity-category:nth-child(4) {
  transition-delay: 0.4s;
}

.pd-value-item:nth-child(1) {
  transition-delay: 0.1s;
}

.pd-value-item:nth-child(2) {
  transition-delay: 0.15s;
}

.pd-value-item:nth-child(3) {
  transition-delay: 0.2s;
}

.pd-value-item:nth-child(4) {
  transition-delay: 0.25s;
}

.pd-value-item:nth-child(5) {
  transition-delay: 0.3s;
}

.pd-value-item:nth-child(6) {
  transition-delay: 0.35s;
}

/* project-detail-page end */

iframe {
  pointer-events: all !important;
}

.pd-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.pd-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.pd-location-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.pd-location-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.pd-gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.pd-gallery-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

/* ========================================
   ABOUT PAGE STYLES - Trang Giới Thiệu
   Design System: #523829 primary, gold gradient
   Typography: Inter, Servetica, Cormorant Garamond
======================================== */

/* ========================================
   HERO SECTION
======================================== */
.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes aboutHeroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(82, 56, 41, 0.4) 0%,
      rgba(82, 56, 41, 0.6) 50%,
      rgba(82, 56, 41, 0.85) 100%);
  z-index: 1;
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-brown-dark), transparent, var(--primary-brown-dark));
  z-index: 2;
  opacity: 0.3;
}

.about-hero-section .container {
  position: relative;
  z-index: 3;
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f6e6c3;
  margin-bottom: 25px;
}

.label-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f6e6c3, transparent);
}

.about-hero-title {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 4vw + 1rem, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.about-hero-title .title-highlight {
  display: block;
  background: linear-gradient(82deg, #ecd69f 0%, #c6803b 50%, #653e2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.scroll-text {
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #f6e6c3;
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ========================================
   INTRO SECTION
======================================== */
.about-intro-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.about-intro-image {
  position: relative;
  z-index: 1;
}

.intro-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(82, 56, 41, 0.15);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  cursor: pointer;
  min-height: 100%;
}

.intro-main-img,
.intro-image-wrapper a {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  object-fit: cover;
}

.intro-image-wrapper:hover .intro-main-img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.intro-accent-circle {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(246, 230, 195, 0.6) 0%, rgba(198, 128, 59, 0.3) 100%);
  border-radius: 50%;
  z-index: -1;
}

.intro-accent-square {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(198, 128, 59, 0.3);
  z-index: -1;
}

.intro-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, #523829 0%, #3d2a1e 100%);
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 15px 40px rgba(82, 56, 41, 0.3);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
}

.badge-number {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(82deg, #ecd69f 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.badge-text {
  font-family: var(--normal-font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.about-intro-content {
  padding-left: 40px;
}

.about-intro-content .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.subtitle-icon {
  color: var(--primary-color);
}

.about-intro-content .section-title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--primary-brown-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.title-gradient {
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-description {
  margin-bottom: 30px;
}

.intro-description p {
  font-family: var(--normal-font);
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 15px;
  text-align: justify;
}

.intro-description p:last-child {
  margin-bottom: 0;
}

.intro-description strong {
  color: var(--primary-brown-dark);
  font-weight: 600;
}

/* Key Points */
.intro-key-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.key-point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.key-point span {
  font-family: var(--normal-font);
  font-size: 15px;
  color: #333333;
  font-weight: 500;
}

/* ========================================
   VISION & MISSION SECTION
======================================== */
.about-vision-section {
  padding: 120px 0;
  background: #f8f6f3;
  position: relative;
  overflow: hidden;
}

.vision-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23523829' 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");
  z-index: 0;
}

.about-vision-section .container {
  position: relative;
  z-index: 1;
}

.vision-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 50px rgba(82, 56, 41, 0.08);
  border: 1px solid rgba(198, 128, 59, 0.1);
  transition: all 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(82, 56, 41, 0.15);
  border-color: rgba(198, 128, 59, 0.3);
}

.vision-mission-card-col:nth-child(even) .vision-card {
  background: linear-gradient(135deg, #523829 0%, #3d2a1e 100%);
}

.vision-mission-card-col:nth-child(even) .vision-card-title,
.vision-mission-card-col:nth-child(even) .vision-card-desc {
  color: #ffffff;
}

.vision-mission-card-col:nth-child(even) .vision-card-icon {
  background: rgba(246, 230, 195, 0.15);
  color: #f6e6c3;
}

.vision-mission-card-col:nth-child(even) .vision-card-number {
  color: rgba(246, 230, 195, 0.15);
}

.vision-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(168, 116, 58, 0.1) 0%, rgba(198, 128, 59, 0.15) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vision-card-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.vision-card-icon iconify-icon {
  font-size: 36px;
  color: var(--primary-color);
}

.vision-card-title {
  font-family: var(--title-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-brown-dark);
  margin-bottom: 15px;
}

.vision-card-desc {
  font-family: var(--normal-font);
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

.vision-card-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--title-font);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(82, 56, 41, 0.06);
  line-height: 1;
}

/* ========================================
   VALUES SECTION - AURA Philosophy
======================================== */
.about-values-section {
  padding: 120px 0;
  background: #ffffff;
}

.value-card-about {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(198, 128, 59, 0.2);
  box-shadow: 0 10px 40px rgba(82, 56, 41, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #653e2c 0%, #c6803b 50%, #ecd69f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card-about:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(168, 116, 58, 0.2);
  border-color: var(--primary-color);
}

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

.value-letter-about {
  font-family: var(--title-font);
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

.value-title-about {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-brown-dark);
  margin-bottom: 15px;
}

.value-divider-about {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c6803b, #ecd69f);
  margin: 0 auto 20px;
}

.value-desc-about {
  font-family: var(--normal-font);
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* ========================================
   STATISTICS SECTION
======================================== */
.about-stats-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--primary-brown-dark);
}

.stats-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(82, 56, 41, 0.95) 0%, rgba(40, 28, 20, 0.98) 100%);
  z-index: 0;
}

.stats-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(198, 128, 59, 0.15) 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: 1;
}

.about-stats-section .container {
  position: relative;
  z-index: 2;
}

.about-stats-section .section-subtitle.text-white {
  color: #f6e6c3;
}

.title-gradient-light {
  background: linear-gradient(82deg, #ecd69f 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-attachment: fixed;
  opacity: 0.3;
}

.stat-card-about {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 128, 59, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-card-about:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(198, 128, 59, 0.4);
  transform: translateY(-8px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(198, 128, 59, 0.2) 0%, rgba(236, 214, 159, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

.stat-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.stat-icon iconify-icon {
  font-size: 32px;
  color: #f6e6c3;
}

.stat-number {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 3vw + 1rem, 4rem);
  font-weight: 700;
  /* background: linear-gradient(82deg, #ecd69f 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  line-height: 0.8;
  margin-bottom: 0px;
  color: #876643;
}

.stat-label {
  font-family: var(--normal-font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* ========================================
   MILESTONES SECTION - Timeline
======================================== */
.about-milestones-section {
  padding: 120px 0;
  background: #ffffff;
}

.milestones-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--primary-color) 10%, var(--primary-color) 90%, transparent 100%);
  transform: translateX(-50%);
}

.milestone-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 0 30px;
  z-index: 5;
}

.milestone-item:nth-child(odd) {
  flex-direction: row;
  text-align: right;
  padding-right: calc(50% + 50px);
}

.milestone-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
  padding-left: calc(50% + 50px);
}

.milestone-year {
  font-family: var(--title-font);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

.milestone-content {
  flex: 1;
}

.milestone-title {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-brown-dark);
  margin-bottom: 10px;
}

.milestone-desc {
  font-family: var(--normal-font);
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.milestone-dot {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(168, 116, 58, 0.2);
  z-index: 2;
}

.milestone-item.milestone-future .milestone-dot {
  background: var(--white);
  border: 4px solid var(--primary-color);
}

.milestone-item.milestone-future .milestone-year {
  opacity: 0.6;
}

/* ========================================
   TEAM SECTION
======================================== */
.about-team-section {
  padding: 120px 0;
  background: #f8f6f3;
  position: relative;
  overflow: hidden;
}

.team-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 128, 59, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.about-team-section .container {
  position: relative;
  z-index: 1;
}

/* Swiper Team */
.about-team-swiper-wrap {
  position: relative;
  padding: 0 60px;
}

.about-team-swiper {
  overflow: hidden;
  padding-bottom: 50px;
}

.about-team-swiper .swiper-slide {
  height: auto;
}

/* Navigation Arrows - positioned mid-left/right of swiper area */
.about-team-swiper-wrap > .swiper-button-prev,
.about-team-swiper-wrap > .swiper-button-next {
  position: absolute;
  top: calc(50% - 25px);
  transform: translateY(-50%);
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(82, 56, 41, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-team-swiper-wrap > .swiper-button-prev {
  left: 0;
}

.about-team-swiper-wrap > .swiper-button-next {
  right: 0;
}

.about-team-swiper-wrap > .swiper-button-prev::after,
.about-team-swiper-wrap > .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-brown-dark);
}

.about-team-swiper-wrap > .swiper-button-prev:hover,
.about-team-swiper-wrap > .swiper-button-next:hover {
  background: var(--primary-brown-dark);
  border-color: var(--primary-brown-dark);
}

.about-team-swiper-wrap > .swiper-button-prev:hover::after,
.about-team-swiper-wrap > .swiper-button-next:hover::after {
  color: #ffffff;
}

/* Pagination - centered below slider */
.about-team-swiper .about-team-pagination {
  position: relative;
  bottom: 0 !important;
  width: max-content !important;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px !important;
}

.about-team-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(82, 56, 41, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.about-team-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary-color);
}

.team-card-about {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.team-card-about:hover {
  transform: translateY(-8px);
}

.team-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  object-position: top;
}

.team-card-about:hover .team-image {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(82, 56, 41, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.team-card-about:hover .team-overlay {
  opacity: 1;
}

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

.team-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.team-social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-5px);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-name {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-brown-dark);
  margin-bottom: 8px;
}

.team-role {
  font-family: var(--normal-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.team-bio {
  font-family: var(--normal-font);
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* ========================================
   PARTNERS SECTION
======================================== */
.about-partners-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Swiper Partners - Continuous loop */
.about-partners-swiper {
  overflow: hidden;
}

.about-partners-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.partner-item {
  background: #f8f6f3;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.partner-item:hover {
  background: #ffffff;
  border-color: rgba(198, 128, 59, 0.3);
  box-shadow: 0 15px 40px rgba(82, 56, 41, 0.1);
  transform: translateY(-5px);
}

.partner-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   CTA SECTION
======================================== */
.about-cta-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(82, 56, 41, 0.92) 0%, rgba(40, 28, 20, 0.95) 100%);
  z-index: 1;
}

.about-cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-block;
  font-family: var(--normal-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f6e6c3;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 25px;
}

.cta-title .title-highlight {
  display: block;
  background: linear-gradient(82deg, #ecd69f 0%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-family: var(--normal-font);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-phone-link:hover {
  transform: translateX(5px);
}

.phone-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e6c3;
  font-size: 22px;
  animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30% {
    transform: rotate(-10deg);
  }

  20%,
  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.phone-number {
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* ========================================
   ABOUT PAGE END
======================================== */


/* cta form quan tam du an start */
/* ============================================
   PROFESSIONAL TEAM SECTION
   ============================================ */
.professional-section {
  background: #f9f5e8;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.professional-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(82, 56, 41, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(198, 128, 59, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.professional-header-wrapper {
  margin-bottom: 50px;
}

.professional-lead-text {
  font-size: 1.15rem;
  font-style: italic;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Professional Grid - 4 images */
.professional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.professional-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(82, 56, 41, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.professional-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(82, 56, 41, 0.15);
}

.professional-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  /* Aspect ratio */
  overflow: hidden;
}

.professional-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.professional-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(82, 56, 41, 0.85) 0%, rgba(82, 56, 41, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.professional-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.professional-image-caption span {
  display: block;
  color: #fff;
  font-family: var(--normal-font);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================
TEAM SHOWCASE SECTION
============================================ */
.team-showcase-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.team-showcase-header {
  margin-bottom: 50px;
}

.team-showcase-title {
  font-family: var(--title-font);
  font-size: 2rem;
  font-weight: 600;
  color: #523829;
  margin-bottom: 15px;
  line-height: 1.3;
}

.team-showcase-subtitle {
  font-family: var(--normal-font);
  font-size: 1.2rem;
  font-style: italic;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Swiper Container */
.team-swiper-container {
  position: relative;
  padding: 0 50px;
}

.team-swiper {
  overflow: hidden;
}

.team-swiper .swiper-slide {
  height: auto;
}

.team-member-card {
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(198, 128, 59, 0.2);
  transition: all 0.4s ease;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(82, 56, 41, 0.1);
  border-color: rgba(198, 128, 59, 0.4);
}

/* Swiper Navigation */
.team-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.team-swiper-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(101, 62, 44, 0.1) 0%, rgba(198, 128, 59, 0.1) 100%);
  border: 1px solid rgba(198, 128, 59, 0.3);
  color: #523829;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-swiper-btn:hover {
  background: linear-gradient(135deg, #653e2c 0%, #c6803b 100%);
  color: #fff;
  border-color: transparent;
}

.team-swiper-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.team-swiper-pagination {
  display: flex;
  gap: 8px;
  width: max-content !important;
}

.team-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(198, 128, 59, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #653e2c 0%, #c6803b 100%);
  width: 25px;
  border-radius: 5px;
}

.team-member-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.team-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f6e6c3;
}

.team-member-avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #653e2c, #c6803b, #ecd69f) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-avatar-ring {
  opacity: 1;
}

.team-member-name {
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: #523829;
  margin-bottom: 5px;
}

.team-member-role {
  display: block;
  font-size: 0.85rem;
  color: #c6803b;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-quote {
  font-family: var(--normal-font);
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
CTA FORM SECTION - Bootstrap 5 Layout with patterns & effects
============================================ */
.cta-form-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #523829 0%, #3a261c 50%, #523829 100%);
  overflow: hidden;
}

.cta-form-section>.container {
  position: relative;
  z-index: 1;
}

.cta-form-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Complex pattern overlay */
.cta-form-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(198, 128, 59, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 214, 159, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(101, 62, 44, 0.1) 0%, transparent 60%);
  animation: patternPulse 8s ease-in-out infinite;
}

@keyframes patternPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Floating particles */
.cta-form-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #c6803b, #ecd69f);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  left: 85%;
  width: 12px;
  height: 12px;
  animation-delay: 2s;
}

.particle-3 {
  top: 80%;
  left: 20%;
  width: 6px;
  height: 6px;
  animation-delay: 4s;
}

.particle-4 {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
}

.particle-5 {
  top: 50%;
  left: 5%;
  width: 10px;
  height: 10px;
  animation-delay: 8s;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
  }

  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px) translateX(-15px) scale(0.8);
    opacity: 0.3;
  }

  75% {
    transform: translateY(15px) translateX(10px) scale(1.1);
    opacity: 0.5;
  }
}

/* Glow effects */
.cta-form-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-form-glow-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(198, 128, 59, 0.15);
  animation: glowPulse 6s ease-in-out infinite;
}

.cta-form-glow-2 {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(236, 214, 159, 0.1);
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
   LEFT COLUMN: Info Content
   ============================================ */
.cta-info-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.cta-info-header {
  margin-bottom: 35px;
}

.cta-info-title {
  font-family: var(--title-font);
  margin-bottom: 20px;
}

.cta-info-title .title-small {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

#cta-form .cta-info-title .title-main {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #ecd69f 0%, #c6803b 50%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cta-form .cta-info-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

#cta-form .cta-info-intro strong,
#cta-form .cta-info-intro b {
  color: #ecd69f;
  font-weight: 600;
}

/* Benefits List */
#cta-form .cta-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

#cta-form .cta-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(198, 128, 59, 0.2);
  transition: all 0.3s ease;
}

#cta-form .cta-benefits-list li:last-child {
  border-bottom: none;
}

.cta-benefits-list li:hover {
  padding-left: 10px;
}

#cta-form .cta-benefits-list .benefit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(198, 128, 59, 0.2) 0%, rgba(236, 214, 159, 0.1) 100%);
  border-radius: 50%;
  color: #ecd69f;
}

#cta-form .cta-benefits-list .benefit-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 4px;
}

/* Decoration Element */
.cta-info-decoration {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
}

.cta-info-decoration .decoration-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 128, 59, 0.5), transparent);
}

.cta-info-decoration .decoration-text {
  font-family: var(--normal-font);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* ============================================
   RIGHT COLUMN: Form Card
   ============================================ */
.cta-form-card {
  height: 100%;
}

#cta-form .cta-form-card {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  height: 100%;
}

.cta-form-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(198, 128, 59, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.cta-form-card-inner::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #c6803b, #ecd69f, #c6803b, transparent);
  border-radius: 20px 20px 0 0;
}

.cta-form-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(198, 128, 59, 0.05) 0%, transparent 50%, rgba(236, 214, 159, 0.03) 100%);
  pointer-events: none;
  border-radius: 20px;
}

.cta-form-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Form Styles */
.cta-form {
  position: relative;
  z-index: 1;
}

.cta-form-group {
  position: relative;
}

.cta-form-input,
.cta-form-select {
  width: 100%;
  padding: 14px 18px 14px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 128, 59, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--normal-font);
  transition: all 0.3s ease;
}

.cta-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.cta-form-select option {
  background: #523829;
  color: #fff;
}

.cta-form-input:focus,
.cta-form-select:focus {
  outline: none;
  border-color: #c6803b;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(198, 128, 59, 0.2);
}

.cta-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.cta-form-submit {
  text-align: center;
  margin-top: 10px;
}

.cta-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(90deg, #653e2c 0%, #c6803b 50%, #ecd69f 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--normal-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(198, 128, 59, 0.3);
}

.cta-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 128, 59, 0.4);
}

.cta-form-btn .btn-icon {
  transition: transform 0.3s ease;
}

.cta-form-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.cta-commitment-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(198, 128, 59, 0.2);
  position: relative;
  z-index: 1;
}

.commitment-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 600;
  color: #ecd69f;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.commitment-title .commitment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecd69f;
}

.commitment-title .commitment-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.commitment-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.commitment-list li:hover {
  color: #fff;
  padding-left: 5px;
}

.commitment-list .commit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 214, 159, 0.1);
  border-radius: 6px;
  color: #c6803b;
}

.commitment-list .commit-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

/* cta form quan tam du an end */

/* activities start */
/* ============================================
   ACTIVITIES SECTION - HOẠT ĐỘNG CÔNG TY
   Background brown (Aura Realty brand), 2 rows continuous swiper
   ============================================ */

.activities-section {
  background: #523829;
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}

/* Optional: subtle pattern overlay */
.activities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(198, 128, 59, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 214, 159, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.activities-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
  opacity: 0.3;
}

.activities-container {
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Header Wrapper - Override colors for dark background */
.activities-header-wrapper {
  margin-bottom: 50px;
}

.activities-header-wrapper .developer-title-top.activities-light {
  color: #ffffff;
}

.activities-header-wrapper .developer-title-main.activities-light {
  background: linear-gradient(90deg, #c6803b 0%, #ecd69f 50%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.activities-header-wrapper .developer-subtitle.activities-light {
  color: rgba(255, 255, 255, 0.85);
}

.activities-header-wrapper .developer-subtitle.activities-light p {
  margin-bottom: 16px;
  font-style: italic;
  font-size: 1.2rem;
}

/* Activities Features Row - Horizontal Layout */
.activities-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 25px;
}

.activity-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}



.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(198, 128, 59, 0.2) 0%, rgba(236, 214, 159, 0.15) 100%);
  border-radius: 50%;
  color: #ecd69f;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-family: var(--normal-font);
  font-weight: 500;
  white-space: nowrap;
}

.activity-feature-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(198, 128, 59, 0.5) 50%, transparent 100%);
}

/* Slider Wrapper */
.activities-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;

  /* Prevent click/hover interruption */
}

.activities-slider-row {
  width: 100%;
  overflow: hidden;
  max-height: 350px;
}

/* Swiper Styles */
.activities-swiper-1,
.activities-swiper-2 {}

/* CRITICAL: Linear transition for continuous scroll */
.activities-swiper-1 .swiper-wrapper,
.activities-swiper-2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.activities-swiper-1 .swiper-slide,
.activities-swiper-2 .swiper-slide {
  width: auto;
  height: auto;
}

/* Activity Image Base */
.activity-image {
  border-radius: 12px;
  overflow: hidden;
  background: #3a261c;
  border: 1px solid rgba(198, 128, 59, 0.2);
  pointer-events: auto;
  cursor: pointer;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* ============================================
MULTI-SIZE IMAGE VARIATIONS
============================================ */

/* Small - Compact square */
.activity-small {
  width: 180px;
  height: 180px;
}

/* Medium - Standard size */
.activity-medium {
  width: 280px;
  height: 200px;
}

/* Wide - Horizontal panoramic */
.activity-wide {
  width: 380px;
  height: 200px;
}

/* Tall - Vertical portrait */
.activity-tall {
  width: 200px;
  height: 280px;
}

.activities-slider-wrapper .swiper-wrapper {
  transition-timing-function: linear !important;
}


/* Chỉ cho phép click trên ảnh (fancybox) */
.activities-swiper-1 .swiper-slide a,
.activities-swiper-2 .swiper-slide a {
  pointer-events: auto;
}

/* activities end */


/* companion start */
/* ============================================
   COMPANION SECTION V2 - Leadership & Partners
   ============================================ */
.companion-v2-section {
  position: relative;
  background: #fbfbfd;
  overflow: hidden;
  padding: 0;
}

/* Section Header */
.companion-v2-header {
  padding: 80px 0 50px;
}

.companion-v2-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #a8743a;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.companion-v2-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: #1a1c1e;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 25px auto;
}

.companion-v2-divider {
  width: 60px;
  height: 3px;
  background: rgba(158, 107, 59, 0.3);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.companion-v2-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(26, 28, 30, 0.6);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
VALUE CARDS
============================================ */
.companion-v2-values {
  margin-bottom: 60px;
}

.value-card-v2 {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.value-card-v2:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Featured Card (middle) */
.value-card-v2.featured {
  background: #a8743a;
  color: #ffffff;
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(158, 107, 59, 0.3);
}

.value-card-v2.featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 60px rgba(158, 107, 59, 0.35);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: rgba(158, 107, 59, 0.1);
}

.value-card-v2.featured .value-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.value-card-icon .material-symbols-outlined {
  font-size: 28px;
  color: #a8743a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-v2.featured .value-card-icon .material-symbols-outlined {
  color: #ffffff;
}

.value-card-icon .material-symbols-outlined img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.value-card-v2.featured .value-card-icon .material-symbols-outlined img {
  filter: brightness(0) invert(1);
}

.value-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #a8743a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.value-card-v2.featured .value-card-title {
  color: #ffffff;
}

.value-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(26, 28, 30, 0.5);
  line-height: 1.7;
  margin: 0;
}

.value-card-v2.featured .value-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
TEAM SWIPER
============================================ */
.companion-v2-team {
  padding: 0 0 0px;
}

.companion-team-swiper {
  padding-bottom: 50px;
}

/* Expert Card */
.expert-card {
  text-align: center;
}

.companion-team-swiper .swiper-slide .expert-card {
  transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.companion-team-swiper .swiper-slide.stagger-middle .expert-card {
  margin-top: 45px;
}

.expert-image-wrapper {
  position: relative;
  aspect-ratio: 4/6;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #1a1c1e;
}

.expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.expert-card:hover .expert-image {
  transform: scale(1.04);
  opacity: 1;
}

/* Expert Overlay */
.expert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
}

.expert-card:hover .expert-overlay {
  opacity: 1;
}

.expert-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #a8743a;
  color: #ffffff;
}

.action-btn .material-symbols-outlined {
  font-size: 18px;
}

/* Expert Info */
.expert-info {
  padding: 0 15px;
}

.expert-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1c1e;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.expert-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #a8743a;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* Expert Socials */
.expert-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.expert-card:hover .expert-socials {
  opacity: 1;
}

.expert-socials a {
  color: #1a1c1e;
  transition: color 0.3s ease;
}

.expert-socials a:hover {
  color: #a8743a;
}

.expert-socials svg {
  width: 20px;
  height: 20px;
}

/* Swiper Pagination */
.companion-pagination {
  bottom: 0 !important;
}

.companion-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid rgba(158, 107, 59, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.companion-pagination .swiper-pagination-bullet-active {
  border-color: #a8743a;
  background: #a8743a;
  transform: scale(1.2);
}

/* ============================================
CTA SECTION - FORM GIA NHẬP ĐỘI NGŨ
============================================ */
.companion-v2-cta {
  position: relative;
  background: linear-gradient(135deg, #523829 0%, #3a261c 50%, #523829 100%);
  padding: 60px 0;
  overflow: hidden;
}

/* Background Pattern */
.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(198, 128, 59, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236, 214, 159, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-bg-glow-1 {
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(198, 128, 59, 0.2);
}

.cta-bg-glow-2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(236, 214, 159, 0.1);
}

/* ============================================
LEFT: Benefits Wrapper
============================================ */
.cta-benefits-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.cta-benefits-header {
  margin-bottom: 30px;
}

.cta-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ecd69f;
  background: rgba(236, 214, 159, 0.15);
  padding: 8px 18px;
  border-radius: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(236, 214, 159, 0.3);
}

.cta-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

/* Benefits List */
.cta-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cta-benefits-list .benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(198, 128, 59, 0.3) 0%, rgba(236, 214, 159, 0.15) 100%);
  border-radius: 12px;
  color: #ecd69f;
  border: 1px solid rgba(236, 214, 159, 0.2);
}

.cta-benefits-list .benefit-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.cta-benefits-list .benefit-icon .material-symbols-outlined {
  font-size: 22px;
}

.cta-benefits-list .benefit-content {
  flex: 1;
  padding-top: 2px;
}

.cta-benefits-list .benefit-content strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0px;
}

.cta-benefits-list .benefit-content span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Quote Box */
.cta-quote-box {
  margin-top: auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  position: relative;
}

.cta-quote-box .quote-icon {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #653e2c 0%, #c6803b 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.cta-quote-box .quote-icon svg {
  width: 18px;
  height: 18px;
}

.cta-quote-box .quote-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 10px 0 12px;
}

.cta-quote-box .quote-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c6803b;
  font-weight: 500;
}

/* ============================================
RIGHT: Form Card
============================================ */
.cta-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
}

.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #c6803b, #ecd69f, #c6803b, transparent);
}

.form-card-header {
  margin-bottom: 25px;
}

.form-card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Form Groups */
.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #ff6b6b;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

.input-wrapper .input-icon .material-symbols-outlined {
  font-size: 20px;
}

.input-wrapper.textarea-wrapper .input-icon {
  top: 16px;
  transform: none;
}

.form-group .form-control {
  width: 100%;
  padding: 14px 15px 14px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group .form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #c6803b;
  box-shadow: 0 0 0 3px rgba(198, 128, 59, 0.2);
}

.form-group select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group select.form-control option {
  background: #523829;
  color: #ffffff;
}

.form-group textarea.form-control {
  resize: vertical;
  min-height: 90px;
  padding-top: 14px;
}

/* Form Actions */
.form-actions {
  margin-top: 10px;
}

.cta-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(90deg, #653e2c 0%, #c6803b 50%, #ecd69f 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(198, 128, 59, 0.3);
}

.cta-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 128, 59, 0.4);
}

.cta-btn-submit .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cta-btn-submit:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-btn-submit .btn-arrow .material-symbols-outlined {
  font-size: 20px;
}

/* Form Card Footer */
.form-card-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.cta-hotline:hover {
  color: #ecd69f;
}

.cta-hotline .hotline-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 128, 59, 0.2);
  border-radius: 12px;
  color: #ecd69f;
}

.cta-hotline .hotline-icon .material-symbols-outlined {
  font-size: 24px;
}

.cta-hotline .hotline-text {
  display: flex;
  flex-direction: column;
}

.cta-hotline .hotline-text span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-hotline .hotline-text strong {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ecd69f;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.trust-item .material-symbols-outlined {
  font-size: 16px;
  color: #c6803b;
}

.companion-v2-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.15;
  /* background-attachment: fixed; */
  mix-blend-mode: multiply;
}

.companion-v2-cta {
  padding: 70px 0;
}

.cta-title {
  font-size: 2rem;
}

.cta-benefits-list .benefit-icon {
  width: 50px;
  height: 50px;
}

.cta-form-card {
  padding: 40px 35px;
}

.form-card-title {
  font-size: 1.5rem;
}

.companion-v2-cta {
  padding: 90px 0;
}

.cta-benefits-wrapper {
  padding: 30px 20px 30px 0;
}

.cta-title {
  font-size: 2.25rem;
}

.cta-benefits-list {
  gap: 22px;
}

.cta-form-card {
  padding: 45px 40px;
}

.form-card-title {
  font-size: 1.6rem;
}

.form-group .form-control {
  padding: 15px 15px 15px 50px;
}

/* Font-face for Optima (System font fallback) */
.companion-v2-section {
  --font-title: 'Optima', 'Optima LT Std', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --font-body: 'Madani', 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* companion end */

/* news index start */
/* News Tabs */
.news-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.news-tab {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.news-tab:hover {
  background: var(--primary-color);
  border-color: transparent;
  color: #ffffff;
}

.news-tab.active {
  background: var(--primary-color);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(198, 128, 59, 0.4);
}

.news-tab .tab-text {
  position: relative;
}

/* Tab Content - Desktop */
.news-tab-content {
  display: none;
}

.news-tab-content.active {
  display: block;
}

/* Tab Content - Mobile */
.news-tab-content-mobile {
  display: none;
}

.news-tab-content-mobile.active {
  display: block;
}

.news-tab-content.active {
  display: block;
}

.news-tab-content-mobile {
  display: none !important;
}

/* news index end */

.investor-tab.active .investor-tab-logo {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.investor-tab.active .investor-tab-logo .tab-name {
  color: #ffffff !important;
}

.investor-tab.active .investor-tab-logo .tab-name:hover {
  color: #ffffff !important;
}

.recruitment-main-image {
  cursor: pointer;
}

/* ============================================
   RECRUITMENT SECTION - GIA NHẬP AURA REALTY
   ============================================ */
.recruitment-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #523829 0%, #3a261c 100%);
  overflow: hidden;
}

.recruitment-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.recruitment-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 0% 0%, rgba(198, 128, 59, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(236, 214, 159, 0.15) 0%, transparent 50%);
}

.recruitment-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 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='1'%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");
}

.recruitment-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 45% 50%;
  gap: 5%;
  align-items: center;
}

/* Visual Side - Single Full Height Image */
.recruitment-visual {
  position: relative;
  height: 100%;
}

.recruitment-visual-inner {
  position: relative;
  height: 100%;
}

.recruitment-main-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.recruitment-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.recruitment-main-image:hover img {
  transform: scale(1.03);
}

.recruitment-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(82, 56, 41, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.recruitment-badge {
  position: absolute;
  bottom: 30px;
  right: 20px;
  background: linear-gradient(135deg, rgba(139, 109, 76, 0.95) 0%, #523829 100%);
  padding: 25px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  border: 1px solid rgba(198, 128, 59, 0.3);
}

.recruitment-badge .badge-number {
  display: block;
  font-family: var(--title-font);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  position: relative;
  /* Bright Gold gradient text */
  background: linear-gradient(90deg,
      #d4a84b 0%,
      #f5e6a3 25%,
      #fff8dc 50%,
      #f5e6a3 75%,
      #d4a84b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShineRecruit 3s linear infinite;
  text-shadow: 0 0 30px rgba(245, 230, 163, 0.5);
  filter: drop-shadow(0 0 10px rgba(245, 230, 163, 0.3));
}

/* Gold shine animation - brighter */
@keyframes goldShineRecruit {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Bright glow effect */
.recruitment-badge .badge-number::after {
  content: attr(data-number);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 248, 220, 0.9) 45%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 248, 220, 0.9) 55%,
      transparent 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShineRecruit 2.5s ease-in-out infinite;
}

@keyframes textShineRecruit {

  0%,
  100% {
    background-position: 200% center;
    opacity: 0;
  }

  50% {
    background-position: 0% center;
    opacity: 0.9;
  }
}

.recruitment-badge .badge-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(236, 214, 159, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 500;
}

/* Content Side */
.recruitment-content {
  color: #fff;
}

.recruitment-header {
  margin-bottom: 35px;
}

.recruitment-title {
  font-family: var(--title-font);
  margin-bottom: 20px;
}

.recruitment-title .title-line-1 {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.recruitment-title .title-line-2 {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(90deg, #c6803b 0%, #ecd69f 50%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recruitment-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

/* Content Blocks */
.recruitment-block {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(198, 128, 59, 0.2);
}

.recruitment-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--normal-font);
  font-size: 1rem;
  font-weight: 600;
  color: #ecd69f;
  margin-bottom: 18px;
}

.recruitment-block-title .block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(198, 128, 59, 0.2);
  border-radius: 8px;
  color: #c6803b;
}

.recruitment-block-title .block-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.recruitment-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruitment-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.recruitment-checklist-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checklist-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #4ade80;
}

.checklist-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.checklist-icon.offer-icon {
  color: #c6803b;
}

.checklist-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Buttons */
.recruitment-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.recruitment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(90deg, #c6803b 0%, #ecd69f 100%);
  border: none;
  border-radius: 50px;
  color: #523829;
  font-family: var(--normal-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(198, 128, 59, 0.35);
}

.recruitment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 128, 59, 0.5);
  color: #523829;
}

.recruitment-btn .btn-icon {
  transition: transform 0.3s ease;
}

.recruitment-btn:hover .btn-icon {
  transform: translateX(5px);
}

.recruitment-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  background: transparent;
  border: 1px solid rgba(198, 128, 59, 0.5);
  border-radius: 50px;
  color: #ecd69f;
  font-family: var(--normal-font);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recruitment-btn-secondary:hover {
  background: rgba(198, 128, 59, 0.15);
  border-color: #c6803b;
  color: #ecd69f;
}