/* Main CSS for LUMIÈRE Boulevard Website */

/* Google Fonts Integration */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* Color Variables */
:root {
  /* STANDARDIZED COLOR PALETTE */
  /* Primary Green */
  --primary-green: #1a4a3a;
  --primary-green-dark: #0f2f25;

  /* Gold Gradient */
  --gold-gradient: linear-gradient(
    135deg,
    #f4e4a6 0%,
    #d4af37 50%,
    #b8941f 100%
  );
  --accent-gold: #e6b800;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-text: #6c757d;
  --gray-light: #f8f9fa;
  --gray-dark: #495057;
}

/* STANDARDIZED COLOR CLASSES */
.text-green {
  color: var(--primary-green) !important;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.bg-green {
  background-color: var(--primary-green) !important;
}

.bg-green-dark {
  background-color: var(--primary-green-dark) !important;
}

.bg-gray-light {
  background-color: var(--gray-light) !important;
}

/* Global Styles */
body {
  background: var(--gray-light);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--primary-green);
  padding-top: 0;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-green);
}

.lead {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Header Styles */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  transition: all 0.3s ease;
  border-bottom: none;
  padding: 1rem 0;
  box-shadow: none;
}

.navbar.scrolled {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-dark) 100%
  ) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(26, 77, 58, 0.3);
  padding: 0.5rem 0;
  border-bottom: 2px solid #e3c56b;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.navbar-brand:hover img {
  filter: brightness(1.2) saturate(1.1);
}

.navbar-nav {
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.navbar-collapse {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.navbar .container {
  padding-right: 15px !important;
}

.navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--white) !important;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

/* Remove padding from navbar when no container */
.navbar.px-4 {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  width: 100%;
}

/* Ensure menu still aligns to the right edge of navbar */
.navbar.px-4 .navbar-nav {
  margin-right: -1.5rem !important;
}

.navbar.px-4 .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 1.5rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-gold) !important;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--white) !important;
  text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--accent-gold) !important;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--accent-gold);
}

/* Navbar Toggler */
.navbar-toggler {
  border: 2px solid var(--white);
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--white);
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Dropdown Button */
.btn-outline-primary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
  text-shadow: none;
}

.navbar.scrolled .btn-outline-primary {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  text-shadow: none;
}

.navbar.scrolled .btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* Language Dropdown Button */
.btn-outline-primary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
  text-shadow: none;
}

.header.scrolled .btn-outline-primary {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  text-shadow: none;
}

.header.scrolled .btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-video-container {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  outline: none;
}

/* Hide YouTube video info overlay */
.video-background iframe::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content * {
  color: #ffffff;
}

.hero-logo {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-logo .logo-main {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-text {
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Fade out classes for JavaScript control */
.hero-logo.fade-out,
.hero-text.fade-out {
  animation: fadeOutUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.title-line-1 {
  color: #ffffff;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line-2 {
  color: #ffd700;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Scroll Down Animation - Hero Section Only */
#heroScrollDown {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out 1.2s both;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px;
  display: block;
}

#heroScrollDown:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scroll-arrow-simple:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.2);
}

.scroll-arrow-simple i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  animation: bounceArrow 2s infinite;
  transition: color 0.3s ease;
}

.scroll-arrow-simple:hover i {
  color: var(--accent-gold);
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-logo .logo-main {
    max-width: 250px;
  }

  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .title-line-1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .title-line-2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .video-background iframe {
    height: 100vh;
    width: 177.77vh;
  }
}

@media (max-width: 480px) {
  .hero-logo .logo-main {
    max-width: 200px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .title-line-1 {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }

  .title-line-2 {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
  }

  #heroScrollDown {
    bottom: 25px;
  }

  .scroll-arrow-simple {
    width: 40px;
    height: 40px;
  }

  .scroll-arrow-simple i {
    font-size: 1.2rem;
  }
}

/* About Section Styling */
.about-section {
  position: relative;
  padding: 0px 0px 10px 0px;
  background: #ffffff;
  overflow: hidden;
}

.about-content {
  padding: 80px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* About Image Slider */
.about-image-slider {
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.about-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* About Slider Navigation Buttons */
.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-slider-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.about-slider-prev {
  left: 30px;
}

.about-slider-next {
  right: 30px;
}

.project-logo {
  margin-bottom: 15px;
  margin-top: -40px;
}

.project-logo img {
  max-width: 300px;
  height: auto;
  filter: brightness(1.1);
}

.luxury-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.luxury-badge .badge-text {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.about-main-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.about-main-title .text-italic {
  font-style: italic;
  font-weight: 400;
  color: #1a4a3a;
  text-transform: lowercase;
}

.about-subtitle {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a4a3a;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-location {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-location .text-italic {
  font-style: italic;
  font-weight: 400;
  color: #1a4a3a;
  text-transform: lowercase;
}

.about-description-text {
  max-width: 100%;
}

.about-description-text p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
}

.about-description {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 0;
  }

  .about-main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-location {
    font-size: 1rem;
  }

  .about-description-text p {
    font-size: 1rem;
    text-align: center;
  }

  .about-content {
    padding: 50px 0;
    max-width: 1000px;
  }

  .about-image-slider {
    height: 50vh;
  }

  .about-slider-btn {
    font-size: 20px;
    padding: 12px 16px;
    width: 50px;
    height: 50px;
  }

  .about-slider-prev {
    left: 20px;
  }

  .about-slider-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-main-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-location {
    font-size: 0.95rem;
  }

  .about-description-text p {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 15px;
  }

  .about-content {
    padding: 40px 0;
    max-width: 900px;
  }

  .about-image-slider {
    height: 40vh;
  }

  .about-slider-btn {
    font-size: 18px;
    padding: 10px 14px;
    width: 45px;
    height: 45px;
  }

  .about-slider-prev {
    left: 15px;
  }

  .about-slider-next {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 1.5rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }

  .about-location {
    font-size: 0.9rem;
  }

  .about-description-text p {
    font-size: 0.9rem;
    padding: 0 10px;
    text-align: center;
  }

  .about-content {
    padding: 30px 0;
    max-width: 100%;
  }

  .about-image-slider {
    height: 35vh;
  }

  .about-slider-btn {
    font-size: 16px;
    padding: 8px 12px;
    width: 40px;
    height: 40px;
  }

  .about-slider-prev {
    left: 10px;
  }

  .about-slider-next {
    right: 10px;
  }
}

/* Nature Section Slider */
.nature-content {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nature-content .content-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
}

.nature-content .content-item.active {
  display: flex;
  opacity: 1;
  align-items: flex-start;
  height: 100%;
}

.nature-slider {
  position: relative;
}

.slider-container {
  /* width: 100%; */
  height: 100%;
  overflow: hidden;
}

.slider-wrapper {
  width: 400%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
}

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

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: none;
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* Nature Slider Responsive */
@media (max-width: 768px) {
  .nature-content {
    height: 300px;
  }

  .slider-container {
    height: 300px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .slider-dots {
    bottom: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .nature-content .content-item .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .nature-content .content-item .me-3 {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .nature-content {
    height: 250px;
  }

  .slider-container {
    height: 250px;
  }

  .nature-content .content-item {
    padding: 0 10px;
  }
}

/* Location Section - Split Layout with Visible Map */
.location-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.location-background {
  display: none; /* Remove separate background div */
}

.location-map-side {
  flex: 7; /* 70% width */
  background: url("../images/map.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

.location-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.2
  ); /* Light overlay to enhance text readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-content-side {
  flex: 3; /* 30% width */
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-dark) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 30px;
  position: relative;
}

.location-content-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.location-header {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-bottom: 40px;
}

.location-title {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.2;
}

.location-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.location-cards-container {
  position: relative;
  z-index: 2;
}

.location-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 0;
}

.location-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.location-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 1);
}

.location-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

.time-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-bottom: 3px;
}

.time-unit {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.location-list {
  text-align: left;
}

.location-item {
  color: var(--gray-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 4px;
  line-height: 1.3;
  position: relative;
  padding-left: 10px;
}

.location-item::before {
  content: "•";
  color: var(--primary-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.location-item:first-child {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-darker);
}

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

/* Location Section Responsive */
@media (max-width: 1200px) {
  .location-content-side {
    padding: 50px 25px;
  }

  .location-cards-grid {
    gap: 12px;
  }

  .location-card {
    padding: 12px 10px;
  }

  .location-title {
    font-size: 2rem;
  }

  .location-subtitle {
    font-size: 0.9rem;
  }

  .time-number {
    font-size: 1.8rem;
  }

  .time-unit {
    font-size: 0.6rem;
  }

  .location-item {
    font-size: 0.75rem;
  }

  .location-item:first-child {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {
  .location-section {
    flex-direction: column;
    min-height: auto;
  }

  .location-map-side {
    min-height: 50vh;
    order: 1;
  }

  .location-content-side {
    order: 2;
    padding: 50px 30px;
  }

  .location-header {
    margin-bottom: 40px;
    text-align: center;
  }

  .location-title {
    font-size: 2.2rem;
  }

  .location-subtitle {
    font-size: 1rem;
  }

  .location-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .location-card {
    padding: 18px 15px;
  }

  .time-number {
    font-size: 2.2rem;
  }

  .time-unit {
    font-size: 0.7rem;
  }

  .location-item {
    font-size: 0.85rem;
  }

  .location-item:first-child {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .location-map-side {
    min-height: 40vh;
  }

  .location-content-side {
    padding: 40px 20px;
  }

  .location-header {
    margin-bottom: 30px;
  }

  .location-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .location-subtitle {
    font-size: 0.95rem;
  }

  .location-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-card {
    padding: 18px 15px;
    text-align: center;
  }

  .location-list {
    text-align: center;
  }

  .location-item {
    padding-left: 0;
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .location-item::before {
    display: none;
  }

  .location-item:first-child {
    font-size: 0.9rem;
    margin-bottom: 7px;
  }

  .time-number {
    font-size: 2rem;
  }

  .time-unit {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .location-map-side {
    min-height: 35vh;
  }

  .location-content-side {
    padding: 30px 15px;
  }

  .location-header {
    margin-bottom: 25px;
  }

  .location-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .location-subtitle {
    font-size: 0.85rem;
  }

  .location-cards-grid {
    gap: 10px;
  }

  .location-card {
    padding: 15px 12px;
  }

  .location-time {
    margin-bottom: 12px;
  }

  .time-number {
    font-size: 1.8rem;
  }

  .time-unit {
    font-size: 0.6rem;
  }

  .location-item {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .location-item:first-child {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
}

/* Introduction Section */
.sec-introduction .bg {
  transform: translate3d(0, 0, 0) !important;
}

@media (min-width: 768px) {
  .sec-introduction [data-parallax="bg"] {
    height: 100vh !important;
  }

  .sec-introduction__inner {
    display: flex;
    justify-content: flex-end;
    color: #fff;
  }

  .sec-introduction__box {
    padding: 20px 0px;
    background-color: transparent;
    width: 350px;
    overflow: hidden;
  }
}

@media (min-width: 1260px) {
  .sec-introduction__box {
    width: 450px;
  }
}

/* Urban Connect Section */
.sec-urbanConnect .tabbox__list {
  display: none;
}

/* Utility Classes */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-dark) 100%
  );
  border-color: var(--primary-green);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: var(--accent-gold);
}

.btn-outline-primary {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* Form Styles */
.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Luxury Footer Styles */
.luxury-footer {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-dark) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.luxury-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  position: relative;
}

.footer-logo {
  max-height: 60px;
  filter: brightness(1.2);
}

.footer-title {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-heading {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 16px;
}

.contact-info {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links {
  margin-bottom: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent-gold);
  transform: translateX(5px);
  color: var(--white);
}

.social-link i {
  width: 20px;
  margin-right: 10px;
  font-size: 16px;
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.badge-item {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Distributor Logo in Footer */
.distributor-section {
  text-align: center;
}

.distributor-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.distributor-logo {
  max-height: 40px;
  width: auto;
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

.distributor-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }

  .header__humberger {
    display: block;
    cursor: pointer;
  }

  .sec-introduction__box {
    width: 100% !important;
    padding: 15px;
  }
}

/* Animation Classes */
.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

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

.fadeIn {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-gold);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--accent-gold-dark);
}

/* Lifestyle Section */
.lifestyle-swiper {
  padding: 20px 0;
}

.lifestyle-card {
  text-align: center;
  padding: 20px;
}

.lifestyle-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.lifestyle-card h5 {
  font-weight: 600;
  color: #333;
}

/* Partners Section */
.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.partners-swiper img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-swiper img:hover {
  filter: grayscale(0%);
}

/* Float Icons - Updated */
.float-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile responsive for float icons */
@media (max-width: 768px) {
  .float-icons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    width: 100vw;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0;
    padding: 0 10px;
  }

  .float-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 8px;
    flex: 1;
    max-width: 60px;
    margin: 0 5px;
  }

  .float-icon i {
    font-size: 18px !important;
  }
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  /* background: var(--white); */
  color: var(--accent-gold);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 50%;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
  /* border: 2px solid rgba(212, 175, 55, 0.2); */
  position: relative;
  overflow: hidden;
}

.float-icon:hover {
  transform: translateY(-3px) scale(1.05);
  /* box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: var(--gold-gradient) !important; */
  /* color: var(--white) !important; */
  /* border-color: var(--accent-gold) !important; */
}

.float-icon i {
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.float-icon:hover i {
  /* color: var(--white); */
  opacity: 90%;
  transform: scale(1.2);
}

/* Section Spacing */
/* section {
  padding: 80px 0;
} */

.section-header {
  margin-bottom: 40px;
}

.section-header .badge {
  font-size: 14px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--white);
  border: none;
}

.section-header h2 {
  color: var(--text-dark);
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
}

/* Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.map-container:hover img {
  transform: scale(1.02);
}

/* Developer Section */
#developer {
  color: var(--white);
}

#developer h2 {
  color: var(--white);
}

#developer h2::after {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
}

/* Lifestyle Cards */
.lifestyle-card {
  transition: transform 0.3s ease;
}

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

.lifestyle-card img {
  transition: transform 0.3s ease;
}

.lifestyle-card:hover img {
  transform: scale(1.05);
}

/* Partners Logo Hover */
.partners-swiper img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

/* Text Highlights */
.text-highlight {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Luxury Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.5px;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Section Styling for Luxury */
.section-header h2 {
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Badge Styling */
.badge {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 25px;
}

/* Lifestyle Hero Slider - Full Screen */
.lifestyle-hero-slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

/* Lifestyle Slides */
.lifestyle-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lifestyle-slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 30px 50px;
  /* border-radius: 10px; */
  /* backdrop-filter: blur(10px); */
}

.hero-content h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: "Montserrat", sans-serif;
}

/* Lifestyle Content - positioned at bottom */
.lifestyle-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 60px 50px 40px;
}

.lifestyle-content h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: "Libre Franklin", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 40px;
}

.hero-next {
  right: 40px;
}

/* Hero Pagination */
.hero-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.3);
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 20px 30px;
  }

  .lifestyle-content {
    padding: 40px 30px 30px;
  }

  .lifestyle-content h2 {
    font-size: 2rem;
  }

  .hero-nav {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 15px 20px;
  }

  .lifestyle-content {
    padding: 30px 20px 20px;
  }

  .lifestyle-content h2 {
    font-size: 1.5rem;
  }

  .hero-nav {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }
}

/* Thành Phố Mới Bình Dương Section */
.binh-duong-city-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.binh-duong-city-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e3c56b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231a4a3a" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e3c56b" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%231a4a3a" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

/* Background Elements */
.city-bg-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.city-bg-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.city-bg-element-1 {
  top: 20px;
  left: 20px;
  width: 160px;
  height: 160px;
}

.city-bg-element-2 {
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
}

.city-content-wrapper {
  padding: 40px;
  position: relative;
  z-index: 2;
}

.city-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  background: linear-gradient(135deg, var(--gold-color) 0%, #f4d03f 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.city-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: var(--font-family);
}

.city-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 30px;
  line-height: 1.3;
  font-style: italic;
}

.city-description {
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.city-highlights {
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(227, 197, 107, 0.3);
  border-right: 1px solid rgba(227, 197, 107, 0.3);
  margin-bottom: 0;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-item:first-child {
  border-left: none;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: rgba(227, 197, 107, 0.05);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d6b4f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.highlight-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.highlight-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

.city-image-wrapper {
  padding: 0;
  position: relative;
}

.city-image-container {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 74, 58, 0.2);
}

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

.city-image-container:hover .city-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 74, 58, 0.1) 0%,
    rgba(227, 197, 107, 0.1) 100%
  );
  pointer-events: none;
}

.overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="luxury-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 0L35 25L30 30L25 25Z" fill="%23e3c56b" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23luxury-pattern)"/></svg>');
  opacity: 0.3;
}

/* Responsive cho City Section */
@media (max-width: 992px) {
  .binh-duong-city-section {
    padding: 80px 0;
  }

  .city-content-wrapper {
    padding: 30px 20px;
  }

  .city-main-title {
    font-size: 2.8rem;
  }

  .city-subtitle {
    font-size: 1.5rem;
  }

  .city-bg-element-1 {
    width: 120px;
    height: 120px;
    top: 15px;
    left: 15px;
  }

  .city-bg-element-2 {
    width: 144px;
    height: 144px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .binh-duong-city-section {
    padding: 60px 0;
  }

  .city-main-title {
    font-size: 2.2rem;
  }

  .city-subtitle {
    font-size: 1.3rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .detail-text {
    font-size: 1rem;
  }

  .city-bg-element-1 {
    width: 100px;
    height: 100px;
    top: 10px;
    left: 10px;
  }

  .city-bg-element-2 {
    width: 120px;
    height: 120px;
    bottom: 10px;
    right: 10px;
  }

  .highlight-item {
    padding: 20px 15px;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(227, 197, 107, 0.3);
    border-bottom: 1px solid rgba(227, 197, 107, 0.3);
  }

  .highlight-item:first-child {
    border-top: none;
  }

  .highlight-item:last-child {
    border-bottom: none;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .city-content-wrapper {
    padding: 20px 15px;
  }

  .city-main-title {
    font-size: 1.8rem;
  }

  .city-subtitle {
    font-size: 1.1rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(227, 197, 107, 0.3);
    border-bottom: 1px solid rgba(227, 197, 107, 0.3);
  }

  .highlight-item:first-child {
    border-top: none;
  }

  .highlight-item:last-child {
    border-bottom: none;
  }

  .highlight-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Lifestyle Swiper Navigation */
.lifestyle-swiper .swiper-button-next,
.lifestyle-swiper .swiper-button-prev {
  color: var(--accent-gold);
  background: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lifestyle-swiper .swiper-button-next:after,
.lifestyle-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.lifestyle-swiper .swiper-button-next:hover,
.lifestyle-swiper .swiper-button-prev:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.lifestyle-swiper .swiper-pagination-bullet {
  background: var(--accent-gold);
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.lifestyle-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Lifestyle Slider - Fullscreen */
@media (max-width: 768px) {
  .lifestyle-slider-fullwidth {
    height: 100vh; /* Keep full height on tablet */
  }

  .lifestyle-swiper {
    height: 100%;
  }

  .lifestyle-swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .slide-caption {
    padding: 40px 20px 30px;
  }

  .slide-caption p {
    font-size: 1.4rem;
  }

  .lifestyle-swiper .swiper-button-next,
  .lifestyle-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }

  .lifestyle-swiper .swiper-button-next {
    right: 20px;
  }

  .lifestyle-swiper .swiper-button-prev {
    left: 20px;
  }

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

@media (max-width: 480px) {
  .lifestyle-slider-fullwidth {
    height: 100vh; /* Keep full height on mobile */
  }

  .lifestyle-swiper {
    height: 100%;
  }

  .lifestyle-swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .slide-caption {
    padding: 30px 15px 20px;
  }

  .slide-caption p {
    font-size: 1.2rem;
  }

  .lifestyle-swiper .swiper-button-next,
  .lifestyle-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }

  .lifestyle-swiper .swiper-button-next {
    right: 15px;
  }

  .lifestyle-swiper .swiper-button-prev {
    left: 15px;
  }

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

/* Contact Form Styling */
.contact-form-wrapper {
  background: transparent;
  padding: 0;
}

.contact-form .form-group {
  margin-bottom: 35px;
  position: relative;
}

.contact-form .form-label {
  display: none;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  padding: 15px 0;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .form-control:focus {
  border-bottom-color: var(--primary-green);
  box-shadow: none;
  background: transparent;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: #999;
  font-weight: 400;
  font-size: 16px;
}

.contact-form textarea.form-control {
  min-height: auto;
  resize: none;
  padding: 15px 0;
}

.form-submit-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
}

.contact-form .btn-submit {
  background: var(--primary-green);
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-width: 150px;
  color: var(--white);
}

.contact-form .btn-submit:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

.contact-info h2 {
  color: var(--primary-green);
  font-weight: 700;
}

.contact-info p {
  line-height: 1.6;
  font-size: 16px;
}

/* reCAPTCHA styling */
.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-gold) 100%
  );
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--primary-color) 100%
  );
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-swiper {
  overflow: visible;
  padding: 0 0 60px 0;
}

.gallery-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
}

.gallery-item {
  position: relative;
  width: 500px;
  height: 281px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 74, 58, 0.8),
    rgba(212, 175, 55, 0.8)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: var(--white);
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.gallery-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Gallery Swiper Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--accent-gold);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: -25px;
}

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

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--accent-gold);
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
  background: var(--gold-gradient);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  position: relative;
  padding: 100px 0;
  overflow: visible;
  z-index: 1;
}

.product-card {
  background: var(--white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid;
  border-image: var(--gold-gradient) 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-green);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.featured {
  background: var(--gold-gradient);
}

.product-badge.new {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 74, 58, 0.8);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

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

.product-actions {
  display: flex;
  gap: 15px;
}

.btn-action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary-green);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-action:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.product-content {
  padding: 25px;
}

.product-type {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-specs {
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--gray-text);
}

.spec-item i {
  color: var(--gold);
  margin-right: 10px;
  width: 16px;
}

.product-price {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section Enhancement */
.about-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(26, 74, 58, 0.03) 50%,
    transparent 60%
  );
  transform: rotate(-15deg);
}

.about-content {
  position: relative;
  z-index: 2;
}

.luxury-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 74, 58, 0.1);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Developer Section Enhancement */
.developer-section {
  background: url("../images/PC.jpg") center/cover no-repeat;
  position: relative;
  min-height: max(1000px, 100vh);
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
}

.developer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 74, 58, 0.85);
  z-index: 1;
}

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

.developer-logo {
  position: relative;
  padding: 30px;
  /* background: rgba(255, 255, 255, 0.95); */
  /* border-radius: 20px; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.developer-logo:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1); */
}

.developer-logo img {
  max-height: 120px;
  width: auto;
}

.developer-content {
  position: relative;
}

.developer-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.developer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.developer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.info-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.info-item h5 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper {
    margin-top: 30px;
  }

  .form-submit-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-form .btn-submit {
    width: 100%;
    min-width: auto;
  }

  .g-recaptcha {
    align-self: center;
    transform: scale(0.85);
    transform-origin: center;
  }

  .contact-form .form-control {
    padding: 12px 0;
    font-size: 16px;
  }

  .contact-form .form-group {
    margin-bottom: 30px;
  }

  .contact-info {
    text-align: center;
    margin-bottom: 30px;
  }

  .location-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .location-number {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .location-number span {
    font-size: 18px;
  }

  /* Developer Section Responsive */
  .developer-section {
    min-height: max(800px, 100vh);
    padding: 10px 0 60px 0;
  }

  .developer-logo {
    padding: 20px;
    margin-bottom: 30px;
  }

  .developer-logo img {
    max-height: 100px;
  }

  .developer-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-item {
    padding: 15px;
  }

  .developer-description {
    font-size: 1rem;
  }

  /* Footer Responsive */
  .distributor-section {
    margin: 20px 0;
  }

  .distributor-logo {
    max-height: 35px;
  }

  .location-name {
    font-size: 1.1rem;
  }

  .gallery-swiper {
    padding: 0 20px 40px 20px;
  }

  .gallery-item {
    width: 350px;
    height: 197px;
  }

  .gallery-content i {
    font-size: 2rem;
  }

  .gallery-content h4 {
    font-size: 1rem;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-btn {
    font-size: 24px;
    padding: 10px 15px;
  }

  /* Products Section Responsive */
  .product-image {
    height: 200px;
  }

  .product-content {
    padding: 20px;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-actions {
    gap: 10px;
  }

  .btn-action {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .price-value {
    font-size: 1.2rem;
  }

  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

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

  .footer-badges {
    justify-content: center;
    margin-top: 15px;
  }

  .developer-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    width: 320px;
    height: 180px;
  }

  .gallery-content i {
    font-size: 1.8rem;
  }

  .gallery-content h4 {
    font-size: 0.9rem;
  }

  .about-highlights {
    flex-direction: column;
    gap: 15px;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-title {
    font-size: 1.5rem;
  }
}

/* Product Slider Styles */
.product-slider-container {
  position: relative;
  overflow: visible; /* Changed from hidden to visible */
  margin: 0 80px; /* Increased margin for navigation buttons */
  padding: 20px 0;
}

.product-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  overflow: hidden; /* Move overflow hidden here */
}

.product-slide {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

/* Product Slider Navigation */
.product-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  background: var(--white);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  font-weight: bold;
}

.product-slider-nav:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: none;
}

.product-slider-nav.prev-btn {
  left: -70px;
}

.product-slider-nav.next-btn {
  right: -70px;
}

.product-slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
  color: #ccc;
  border-color: #ddd;
}

.product-slider-nav:disabled:hover {
  transform: translateY(-50%);
  background: #f5f5f5;
  color: #ccc;
}

/* Product Slider Dots */
.product-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.product-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active,
.product-dot:hover {
  background: var(--primary-green);
  transform: scale(1.2);
}

/* Ensure product cards don't overlap */
.product-card {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.product-specs {
  flex: 1;
  margin: 15px 0;
}

.product-price {
  margin-top: auto;
}

/* Product Slider Responsive */
@media (max-width: 1200px) {
  .product-slider-container {
    margin: 0 50px;
  }

  .product-slider-nav.prev-btn {
    left: -45px;
  }

  .product-slider-nav.next-btn {
    right: -45px;
  }
}

/* Tablet - Still show 3 products */
@media (max-width: 992px) {
  .product-slider-container {
    margin: 0 40px;
  }

  .product-slider-nav {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .product-slider-nav.prev-btn {
    left: -35px;
  }

  .product-slider-nav.next-btn {
    right: -35px;
  }
}

/* Mobile - Show 1 product per slide */
@media (max-width: 768px) {
  .product-slider-container {
    margin: 0 30px;
  }

  .product-slider-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .product-slider-nav.prev-btn {
    left: -25px;
  }

  .product-slider-nav.next-btn {
    right: -25px;
  }

  /* Mobile: Center single product */
  .product-slide {
    justify-content: center;
    align-items: center;
  }

  .product-slide .row {
    justify-content: center;
    margin: 0;
  }

  .product-slide .col-lg-4,
  .product-slide .col-md-6 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 auto;
    padding: 0 15px;
  }

  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .product-slider-container {
    margin: 0 5px;
  }

  .product-slider-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .product-slider-nav.prev-btn {
    left: -5px;
  }

  .product-slider-nav.next-btn {
    right: -5px;
  }

  /* Stack cards vertically on very small screens */
  .product-slide .row {
    flex-direction: column;
  }

  .product-slide .col-lg-4,
  .product-slide .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Fix any potential overflow issues */
.products-section .container {
  position: relative;
  z-index: 2;
}

/* Ensure proper spacing between sections */
.products-section + section {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* Smooth transitions for all slider elements */
.product-slider-wrapper,
.product-slide,
.product-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevent text selection during slide transitions */
.product-slider-container {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Ensure images load properly */
.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Loading state for slider */
.product-slider-wrapper:not(.loaded) {
  opacity: 0;
}

.product-slider-wrapper.loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Splide Product Slider Styles */
.product-slider-container {
  overflow: visible; /* Changed to visible so arrows can show outside */
  position: relative;
  margin: 0 0px; /* Removed margin to make container full width */
}

.product-slider-container .splide {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.product-slider-container .splide__track {
  overflow: hidden;
}

.product-slider-container .splide__list {
  align-items: stretch;
  display: flex;
}

.product-slider-container .splide__slide {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  width: calc(33.333% - 1.33rem); /* 3 slides per view with gap */
}

.product-slider-container .splide__slide .product-card {
  height: 100%;
  width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-slider-container .splide__slide {
    width: 100%; /* 1 slide per view on mobile */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-slider-container .splide__slide {
    width: calc(50% - 0.75rem); /* 2 slides per view on tablet */
  }
}

/* Custom Navigation Arrows */
.product-slider-container .custom-arrow {
  background: transparent;
  border: none;
  color: var(--primary-green);
  width: 50px;
  height: 50px;
  border-radius: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
  box-shadow: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
}

.product-slider-container .custom-arrow:hover:not(:disabled) {
  background: transparent;
  color: var(--primary-green);
  transform: translateY(-50%) scale(1.2);
  box-shadow: none;
  opacity: 1;
}

.product-slider-container .custom-arrow:disabled {
  opacity: 0.3;
  background: transparent;
  color: #ccc;
  border: none;
  cursor: not-allowed;
}

.product-slider-container .custom-arrow--prev {
  left: -200px;
}

.product-slider-container .custom-arrow--next {
  right: -200px;
}

/* Custom Splide pagination */
.product-slider-container .splide__pagination {
  bottom: -60px;
}

.product-slider-container .splide__pagination__page {
  background: #ddd;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.product-slider-container .splide__pagination__page.is-active {
  background: var(--primary-green);
  transform: scale(1.2);
}

/* Responsive adjustments for Custom Arrows */
@media (max-width: 1200px) {
  .product-slider-container {
    margin: 0 0px; /* No margin for full width */
  }

  .product-slider-container .custom-arrow--prev {
    left: -180px;
  }

  .product-slider-container .custom-arrow--next {
    right: -180px;
  }
}

@media (max-width: 992px) {
  .product-slider-container {
    margin: 0 0px; /* No margin for full width */
  }

  .product-slider-container .custom-arrow {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }

  .product-slider-container .custom-arrow--prev {
    left: -150px;
  }

  .product-slider-container .custom-arrow--next {
    right: -150px;
  }
}

@media (max-width: 768px) {
  .product-slider-container {
    margin: 0 0px; /* No margin for full width */
  }

  .product-slider-container .custom-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .product-slider-container .custom-arrow--prev {
    left: -120px;
  }

  .product-slider-container .custom-arrow--next {
    right: -120px;
  }
}

@media (max-width: 576px) {
  .product-slider-container {
    margin: 0 0px; /* No margin to make maximum width */
  }

  .product-slider-container .custom-arrow {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }

  .product-slider-container .custom-arrow--prev {
    left: -80px;
  }

  .product-slider-container .custom-arrow--next {
    right: -80px;
  }
}

/* Lot Plan Image Styles */
.lot-plan-image {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
  background: var(--white);
}

.lot-plan-image:hover {
  transform: scale(1.05);
  box-shadow: none;
}

.lot-plan-image img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  display: block;
}

.lot-plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 74, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

.lot-plan-image:hover .lot-plan-overlay {
  opacity: 1;
}

.lot-plan-overlay i {
  color: #d4af37;
  font-size: 28px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

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

.cursor-pointer {
  cursor: pointer;
}

/* Responsive adjustments for lot plan images */
@media (max-width: 768px) {
  .lot-plan-image {
    margin-top: 20px;
  }

  .product-specs .row {
    flex-direction: column;
  }

  .product-specs .col-md-7,
  .product-specs .col-md-5 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Policy Section */
.policy-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(212, 175, 55, 0.05) 50%,
    transparent 60%
  );
  transform: rotate(15deg);
  z-index: 1;
}

.policy-content {
  position: relative;
  z-index: 2;
}

.policy-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4a3a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin-bottom: 3rem;
  position: relative;
}

.policy-crown-icon {
  color: #d4af37;
  margin-right: 15px;
  font-size: 2.2rem;
  animation: pulse 2s infinite;
}

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

.policy-benefits {
  margin-top: 2rem;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  /* background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d4af37, #e3c56b);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.policy-item:hover::before {
  transform: scaleY(1);
}

.policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.policy-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, #d4af37, #e3c56b); */
  color: linear-gradient(135deg, #d4af37, #e3c56b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.policy-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

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

.policy-icon i {
  font-size: 1.5rem;
  color: linear-gradient(to bottom, #d4af37, #e3c56b);
  z-index: 1;
  position: relative;
}

.policy-text h4 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a4a3a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-text p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Bank Partners */
.bank-partners {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bank-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a4a3a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.bank-title i {
  color: #d4af37;
  margin-right: 10px;
  font-size: 1.3rem;
}

.bank-logos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.bank-logo {
  /* background: #ffffff; */
  padding: 2rem;
  /* border-radius: 15px; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.bank-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.bank-logo:hover::before {
  left: 100%;
}

.bank-logo:hover {
  transform: translateY(-5px) scale(1.05);
  /* box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); */
}

.bank-logo img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

/* Policy Section Responsive */
@media (max-width: 991px) {
  .policy-title {
    font-size: 2rem;
    text-align: center;
  }

  .policy-item {
    flex-direction: column;
    text-align: center;
  }

  .policy-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .bank-partners {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 1.8rem;
  }

  .policy-crown-icon {
    font-size: 1.8rem;
  }

  .policy-text h4 {
    font-size: 1.1rem;
  }

  .bank-logo {
    padding: 1.5rem;
    min-height: 100px;
  }

  .bank-logo img {
    max-width: 180px;
    max-height: 80px;
  }
}

@media (max-width: 576px) {
  .policy-title {
    font-size: 1.5rem;
  }

  .policy-item {
    padding: 1rem;
  }

  .bank-logo {
    padding: 1rem;
    min-height: 80px;
  }

  .bank-logo img {
    max-width: 160px;
    max-height: 70px;
  }
}
