/* ===================================
   Custom CSS for Hero Section Demo
   =================================== */

:root {
  --primary-color: rgb(139, 69, 19);
  --secondary-color: rgb(210, 105, 30);
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --overlay-color: rgba(0, 0, 0, 0.4);
  --bg-white: #ffffff;
  --white: #ffffff;

  /* Luxury Color Extensions */
  --luxury-gold: #d4af37;
  --luxury-gold-light: #f4e4bc;
  --luxury-brown-dark: #5d2e0f;
  --luxury-shadow-sm: 0 4px 12px rgba(139, 69, 19, 0.15);
  --luxury-shadow-md: 0 8px 24px rgba(139, 69, 19, 0.2);
  --luxury-shadow-lg: 0 16px 48px rgba(139, 69, 19, 0.25);
  --luxury-shadow-xl: 0 24px 64px rgba(139, 69, 19, 0.3);

  /* Luxury Gradients */
  --gradient-luxury-primary: linear-gradient(
    135deg,
    #8b4513 0%,
    #a0522d 50%,
    #d2691e 100%
  );
  --gradient-luxury-reverse: linear-gradient(
    135deg,
    #d2691e 0%,
    #a0522d 50%,
    #8b4513 100%
  );
  --gradient-luxury-gold: linear-gradient(
    135deg,
    #d4af37 0%,
    #f4e4bc 50%,
    #d4af37 100%
  );
  --gradient-luxury-overlay: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.95) 0%,
    rgba(210, 105, 30, 0.95) 100%
  );

  /* Luxury Animations */
  --transition-luxury: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-luxury-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);


  --vintage-brown: #5c3d2e;
  --vintage-gold: #d4af37;
  --vintage-dark-gold: #b8941f;
  --parchment-bg: #f4efe3;
  --parchment-light: #faf7f0;
  --text-dark: #3a2618;
}

@font-face {
  font-family: 'UTM-Aquarelle' ;
  src: url('../fonts/UTM-Aquarelle.ttf');
}

/* Smooth Scroll & Offset for Fixed Header */
section {
  overflow: hidden;
  position: relative;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
.btn-primary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
.btn-secondary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}

.text-primary:hover {
  color: var(--secondary-color) !important;
}
.text-secondary:hover {
  color: var(--primary-color) !important;
}

/* ===================================
   General Styles
   =================================== */

.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

/* ===================================
   Header/Navigation Styles
   =================================== */

#mainNav {
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav .navbar-brand img {
  transition: all 0.3s ease;
}

#mainNav .nav-link {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  width: 80%;
}

/* Scrolled State */
#mainNav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Header Navigation Styles
   =================================== */

#mainNav {
  transition: all 0.3s ease;
}

#mainNav .nav-link {
  color: var(--text-color);
  transition: all 0.3s ease;
  position: relative;
}

#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===================================
   Mobile Offcanvas Menu Premium Styles
   =================================== */

.offcanvas-premium {
  max-width: 340px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
}

/* Premium Header */
.offcanvas-header-premium {
  position: relative;
  padding: 10px 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}

.offcanvas-slogan {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-style: italic;
}

.btn-close-premium {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-close-premium:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.btn-close-premium i {
  font-size: 18px;
}

/* Premium Body */
.offcanvas-body-premium {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Premium Navigation */
.mobile-nav-premium {
  padding: 12px 0 0 0;
}

.mobile-nav-item {
  margin-bottom: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 19px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover {
  background-color: rgba(139, 69, 19, 0.05);
  color: var(--primary-color);
  padding-left: 2.5rem;
}
.mobile-nav-link:hover .icon-menu-mobile {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.mobile-nav-link.active {
  background: linear-gradient(
    90deg,
    rgba(139, 69, 19, 0.1) 0%,
    transparent 100%
  );
  color: var(--primary-color);
  font-weight: 600;
}

.nav-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(139, 69, 19, 0.08);
  border-radius: 10px;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .nav-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scale(1.1);
}

.mobile-nav-link.active .nav-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.nav-icon-wrapper i {
  font-size: 18px;
  color: var(--primary-color);
}

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

.nav-text {
  flex: 1;
  font-size: 16px;
}

.nav-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .nav-arrow,
.mobile-nav-link.active .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Premium Contact Card */
.offcanvas-contact-premium {
  padding: 14px 19px 14px 19px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-card {
  background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.05) 0%,
    rgba(210, 105, 30, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.contact-item-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.contact-item-premium:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}
.contact-item-premium .zalo-text {
  color: #ffffff;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-icon {
  font-size: 18px;
  color: #ffffff;
  min-width: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 14px;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--secondary-color);
}

/* Social Links Premium */
.social-links-premium {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.social-link-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.1) 0%,
    rgba(210, 105, 30, 0.05) 100%
  );
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.15);
}

.social-link-premium:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.social-link-premium i {
  font-size: 18px;
}

.md-header .nav-item .nav-link {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.9rem;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: 500;
}
.logo-brand-img {
  max-width: 70px;
  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;
}
.offcanvas-logo-premium {
  width: 100%;
  max-width: 60px;
  min-width: 60px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.icon-menu-mobile {
  width: 100%;
  max-width: 20px;
  min-width: 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.mobile-nav-link.active .icon-menu-mobile {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.offcanvas-end {
  width: 100%;
}
.md-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* 2.4. Mobile Menu Toggle - Luxury Style */
.navbar-toggler-luxury {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-luxury-primary);
  border: none;
  border-radius: 12px;
  box-shadow: var(--luxury-shadow-md);
  transition: var(--transition-luxury);
  cursor: pointer;
}

.navbar-toggler-luxury .bi {
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.navbar-toggler-luxury:hover {
  transform: translateY(-2px) rotate(90deg);
  box-shadow: var(--luxury-shadow-lg);
}
.md-header-nav {
  width: 100%;
  background: var(--bg-white);
  transition: all 0.5s ease !important;
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.md-header-nav.scrolled {
  width: 90%;
  top: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.md-header-nav.scrolled .logo-brand-img {
  max-width: 55px;
}
/* header end */

/* ===================================
   Hero Section Styles
   =================================== */

.hero-section {
  width: 100%;
  height: 100svh;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  height: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

@keyframes zoomEffect {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

.hero-overlay {
  background: var(--overlay-color);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

/* Hero Text Styles */
.hero-title {
  font-size: clamp(2rem, 1.5385rem + 2.3077vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}
.hero-description b,
.hero-description strong {
  font-weight: 600;
}

/* Hero Buttons */
.hero-buttons .btn {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
  border-width: 2px;
  min-width: 180px;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

.hero-buttons .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-buttons .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Swiper Custom Styles
   =================================== */

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* ===================================
   Responsive Styles
   =================================== */

/* ===================================
   Animations
   =================================== */

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

/* 4.2. Luxury Swiper Pagination */
.swiper-pagination-luxury.swiper-pagination-bullets {
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.swiper-pagination-luxury .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  transition: var(--transition-luxury);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-luxury .swiper-pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.swiper-pagination-luxury .swiper-pagination-bullet-active {
  width: 40px;
  height: 14px;
  background: var(--gradient-luxury-gold);
  border-color: var(--luxury-gold);
  border-radius: 7px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* 4.3. Luxury Progress Pagination */
.swiper-pagination-progress-luxury {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.swiper-pagination-progress-luxury .swiper-pagination-progressbar-fill {
  background: var(--gradient-luxury-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease;
}
/* 4.1. Luxury Swiper Navigation Buttons */
.swiper-button-luxury.swiper-button-next,
.swiper-button-luxury.swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transition: var(--transition-luxury);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.swiper-button-luxury.swiper-button-next::after,
.swiper-button-luxury.swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-color);
  transition: var(--transition-luxury);
  -webkit-transition: var(--transition-luxury);
  -moz-transition: var(--transition-luxury);
  -ms-transition: var(--transition-luxury);
  -o-transition: var(--transition-luxury);
}

.swiper-button-luxury:hover {
  background: var(--gradient-luxury-primary);
  border-color: transparent;
  /* transform: scale(1.15);
  box-shadow: var(--luxury-shadow-lg);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15); */
}

.swiper-button-luxury:hover::after {
  color: #ffffff;
}
@keyframes zoomEffect {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
  100% {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
}
}
.swiper-slide .hero-background {
  will-change: transform;
  animation: zoomEffect 10s ease-in-out infinite alternate;
  -webkit-animation: zoomEffect 10s ease-in-out infinite alternate;
}
/* slider end */

/* ===================================
   Brand Story Section Styles
   =================================== */

.brand-story-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.brand-story-section .section-title {
  font-size: 36px;
  color: #1a202c;
  margin-bottom: 1rem;
}

.brand-story-section .section-description {
  font-size: 18px;
  color: #718096;
  line-height: 1.8;
}

/* Timeline Styles */
.timeline-wrapper {
  padding: 0;
}

.timeline-title {
  font-size: 24px;
  color: #1a202c;
  margin-bottom: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  z-index: var(--i);
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, #e2e8f0 0%, #e2e8f0 100%);
  z-index: -1;
}
.timeline-item:last-child {
  margin-bottom: 0 !important;
}
.timeline-icon .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.timeline-icon .icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.timeline-icon .icon-circle.bg-primary {
  background-color: var(--primary-color);
}

.timeline-icon .icon-circle.bg-secondary {
  background-color: var(--secondary-color);
}

.timeline-icon .icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.timeline-year {
  font-size: 16px;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.6;
  font-weight: 400;
  max-width: 400px;
}

/* Factory Image */
.factory-image-wrapper {
  height: 100%;
}

.factory-image {
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  cursor: pointer;
}

.factory-image img,
.factory-image a {
  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;
}

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

/* Feature Cards */
.feature-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon .icon-circle-lg {
  width: 64px;
  height: 64px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.feature-icon .icon-circle-lg img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.feature-icon .icon-circle-lg.bg-primary {
  background-color: var(--primary-color);
}

.feature-icon .icon-circle-lg.bg-secondary {
  background-color: var(--secondary-color);
}

.feature-card:hover .icon-circle-lg {
  transform: rotateY(360deg);
}

.feature-title {
  font-size: 1rem;
  color: var(--text-color);
}

.feature-description {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================
   Featured Products Section Styles
   =================================== */

.featured-products-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.featured-products-section .section-title {
  font-size: 36px;
  color: #1a202c;
  margin-bottom: 1rem;
}

.featured-products-section .section-description {
  font-size: 18px;
  color: #718096;
  line-height: 1.8;
}

/* Product Card Styles */
.product-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--primary-color);
}

/* Product Image */
.product-image {
  position: relative;
}

.product-image-box {
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  cursor: zoom-in;
}

.product-image-box img,
.product-image-box a {
  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;
}

.product-card:hover .product-image-box img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}

/* Product Badge */
.product-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.bg-danger {
  background-color: #dc3545 !important;
}

.product-badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* Product Info */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.product-description {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
  font-weight: 400;
}

.product-price {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.product-info .btn {
  margin-top: auto;
}

/* View All Button */
.featured-products-section .btn-outline-primary {
  border-width: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.featured-products-section .btn-outline-primary:hover {
  transform: translateX(5px);
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  background-color: var(--primary-color) !important;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.featured-products-section .btn-outline-primary svg {
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.featured-products-section .btn-outline-primary:hover svg {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}


/* 1.5. Luxury Button with Shimmer Effect */
.btn-luxury-shimmer {
  position: relative;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--primary-color);
  border: 2px solid var(--luxury-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-luxury);
  box-shadow: 
    var(--luxury-shadow-md),
    0 0 10px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-luxury-shimmer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(    45deg,    transparent 30%,    rgba(212, 175, 55, 0.6) 50%,    transparent 70%  );
  will-change: transform;
  animation: shimmer 3s infinite;
  -webkit-animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-luxury-shimmer:hover {
  transform: translateY(-4px);
  box-shadow: 
    var(--luxury-shadow-xl),
    0 0 13px rgba(212, 175, 55, 0.5);
  border-color: var(--luxury-gold-light);
}

/* ===================================
   Production Process Section Styles
   =================================== */

.production-process-section {
  min-height: 640px;
  padding: 80px 0;
  overflow: hidden;
}
.process-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.process-background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Background */
.process-background {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: var(--background-process-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.process-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Section Header */
.production-process-section .section-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.production-process-section .section-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}

/* Process Step */
.process-step {
  padding: 20px 15px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

/* Process Icon */
.process-icon-wrapper {
  position: relative;
  display: inline-block;
}

.process-icon {
  width: 80px;
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.process-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.process-step:hover .process-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-color);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.2);
  background: var(--secondary-color);
}

/* Step Text */
.step-title {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.step-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* View Process Button */
.production-process-section .btn-outline-light {
  border-width: 2px;
  transition: all 0.3s ease;
}

.production-process-section .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.production-process-section .btn-outline-light svg {
  transition: transform 0.3s ease;
}

.production-process-section .btn-outline-light:hover svg {
  transform: translateX(5px);
}

/* ===================================
   Benefits & Values Section Styles
   =================================== */

.benefits-values-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.benefits-values-section .section-title {
  font-size: 36px;
  color: #1a202c;
  margin-bottom: 1rem;
}

.benefits-values-section .section-description {
  font-size: 18px;
  color: #718096;
  line-height: 1.8;
}

/* Benefit Cards */
.benefit-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.benefit-icon .icon-circle-lg {
  width: 64px;
  height: 64px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.benefit-icon .icon-circle-lg.bg-primary {
  background-color: var(--primary-color);
}

.benefit-icon .icon-circle-lg.bg-secondary {
  background-color: var(--secondary-color);
}

.benefit-card:hover .icon-circle-lg {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.benefit-title {
  font-size: 20px;
  color: #1a202c;
  margin-bottom: 1rem;
}

.benefit-description {
  font-size: 16px;
  color: #718096;
  line-height: 1.7;
}

/* Quality Commitment Banner */
.quality-banner {
  min-height: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
}

.quality-bg {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  z-index: 1;
}

.quality-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
  z-index: 1;
}

.quality-title {
  font-size: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.quality-description {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* Quality Badges */
.quality-badges {
  gap: 1rem;
}

.quality-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.quality-badge:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quality-badge svg {
  vertical-align: middle;
}

/* ===================================
   Contact CTA Section Styles
   =================================== */

.contact-cta-section {
  background-color: #111827;
  padding: 80px 0;
}

.contact-cta-section .section-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-cta-section .section-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* Contact Info */
.contact-section-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 2rem;
}

.contact-item {
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.icon-circle-contact {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}
.icon-circle-contact img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.contact-item:hover .icon-circle-contact {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.contact-label {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0;
  font-family: "Be Vietnam Pro", sans-serif !important;
}

.contact-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  font-family: "Be Vietnam Pro", sans-serif !important;
  max-width: 400px;
  font-weight: 400 !important;
}

.contact-text a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
}

/* Social Media */
.social-title {
  font-size: 16px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: var(--primary-color);
}

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

.social-link:nth-child(1) {
  background-color: #1877f2;
}

.social-link:nth-child(2) {
  background-color: #0068ff;
}

.social-link:nth-child(3) {
  background-color: #25d366;
}
.social-link:nth-child(4) {
  background-color: #ff0000;
}
.social-link:nth-child(5) {
  background-color: #000000;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.form-title {
  font-size: 24px;
  color: #1a202c;
}

.contact-form-wrapper .form-label {
  font-size: 14px;
  color: #4a5568;
  font-weight: 600;
}

.contact-form-wrapper .form-control {
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.contact-form-wrapper .form-control::placeholder {
  color: #9ca3af;
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 106px;
}

.contact-form-wrapper .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.875rem 2rem;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.contact-form-wrapper .btn-primary:disabled {
  background-color: #cbd5e0;
  border-color: #cbd5e0;
  cursor: not-allowed;
}

/* Form Message */
#formMessage {
  font-size: 14px;
  margin-top: 1rem;
}

#formMessage.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border-color: #10b981;
}

#formMessage.alert-danger {
  background-color: #fee2e2;
  color: #991b1b;
  border-color: #ef4444;
}

/* ===================================
   Footer Styles
   =================================== */

.footer {
  background-color: #1F2937;
  padding: 3rem 0;
  width: 100%;
  overflow: hidden;
}

.footer-logo img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.footer-logo a:hover 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);
}

.footer-slogan {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 400px;
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Titles */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 4px;
}

/* Footer Contact */
.footer-contact-list li {
  margin-bottom: 1rem;
}

.footer-contact-list p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.footer-contact-list i {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--secondary-color);
}

/* ===================================
   Utility Classes
   =================================== */

.object-fit-cover {
  object-fit: cover;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* 1.1. Luxury Primary Button - 3D Gradient Style */
.btn-luxury-primary {
  position: relative;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--gradient-luxury-primary);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-luxury);
  box-shadow: 
    var(--luxury-shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-transform: uppercase;
  z-index: 1;
}

.btn-luxury-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-luxury-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    var(--luxury-shadow-xl),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  background: var(--gradient-luxury-reverse);
}

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

.btn-luxury-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    var(--luxury-shadow-sm),
    inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.contact-footer-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 0.9rem;
}
.contact-footer-item:hover {
  color: var(--white);
}
.contact-footer-item img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  object-fit: contain;
}
.contact-footer-item:hover {
  color: var(--white) !important;
}
iframe {
  pointer-events: all !important;
}



/* float contact start */
/* Floating Contact Buttons */
.hydrosite-nhadidong-floating-contact {
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  /* transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition); */
}

.hydrosite-nhadidong-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-hover);
}

.hydrosite-nhadidong-float-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.hydrosite-nhadidong-phone {
  background: var(--primary-color);
}

.hydrosite-nhadidong-messenger {
  background: #0084ff;
}

.hydrosite-nhadidong-zalo {
  background: #0068ff;
  font-size: 0.7rem;
  font-weight: bold;
}

.hydrosite-nhadidong-whatsapp {
  background: #25d366;
}

/* float contact end */


/* Vintage Story Button */
.btn-story {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  background: linear-gradient(135deg, var(--vintage-brown) 0%, #4a2f20 100%);
  color: var(--vintage-gold);
  border: 2px solid var(--vintage-gold);
  border-radius: 0;
  font-family: var(--font-family-primary);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  font-weight: 400;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(92, 61, 46, 0.3);
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.btn-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.6s ease;
  -webkit-transition: left 0.6s ease;
  -moz-transition: left 0.6s ease;
  -ms-transition: left 0.6s ease;
  -o-transition: left 0.6s ease;
}

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

.btn-story:hover {
  background: linear-gradient(135deg, #4a2f20 0%, var(--vintage-brown) 100%);
  color: #fff;
  border-color: var(--vintage-dark-gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.btn-story-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.btn-story:hover .btn-story-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}


/* modal câu chuyên start */
/* Modal Styling */
.modal-story .modal-content {
  background: var(--parchment-bg);
  background-image:       repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(92, 61, 46, 0.03) 2px, rgba(92, 61, 46, 0.03) 4px),      repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(92, 61, 46, 0.03) 2px, rgba(92, 61, 46, 0.03) 4px);
  border: 2px solid var(--vintage-gold);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(92, 61, 46, 0.4);
  position: relative;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}

/* Decorative corners */
.modal-story .modal-content::before,
.modal-story .modal-content::after {
  content: '❦';
  position: absolute;
  font-size: 2rem;
  color: var(--vintage-gold);
  opacity: 0.6;
}

.modal-story .modal-content::before {
  top: 15px;
  left: 15px;
  z-index: 10;
}

.modal-story .modal-content::after {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

.modal-story .modal-header {
  background: linear-gradient(135deg, var(--vintage-brown) 0%, #4a2f20 100%);
  border-bottom: none;
  padding: 20px 30px;
  position: relative;
  font-family: "UTM-Aquarelle";
  text-transform: capitalize;
}


.modal-story .modal-title {
  font-family: "UTM-Aquarelle";
  font-size: clamp(1.2rem, 0.9538rem + 1.2308vw, 2rem);
  font-weight: 300;
  color: var(--vintage-gold);
  text-align: center;
  width: 100%;
}

.modal-story .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.modal-story .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-story .modal-body {
  padding: 40px 35px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--vintage-gold) var(--parchment-bg);
}

.modal-story .story-section {
  margin-bottom: 25px;
}

.modal-story h4.story-section {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 1.1731rem + 0.3846vw, 1.5rem);
  color: var(--vintage-brown);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vintage-gold);
  display: inline-block;
}

.modal-story .story-section p {
  text-align: justify;
  margin-bottom: 15px;
}

.modal-story .story-highlight {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--vintage-gold);
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
}

.modal-story .vintage-divider {
  text-align: center;
  margin: 30px 0;
  color: var(--vintage-gold);
  font-size: 1.5rem;
}
/* modal câu chuyện end */

/* style câu chuyện */