/* Global Styles */
:root {
  --dark-grey: #333333;
  --light-grey: #f5f5f5;
  --gold-primary: #d4af37;
  --gold-secondary: #b8860b;
  --gold-gradient: linear-gradient(135deg, #d4af37, #b8860b);
  --white: #ffffff;
  --black: #000000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  /* Reduced padding for mobile */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.divider {
  width: 100px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto var(--spacing-md);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gold-gradient);
  color: var(--text-light);
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Header Styles */
header {
  background-color: var(--dark-grey);
  padding: 10px 0;
  /* Reduced padding for mobile */
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: var(--box-shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
  /* Prevent logo from shrinking */
}

.logo img {
  height: 45px;
  /* Smaller logo for mobile */
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: height 0.3s ease;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.language-selector a {
  color: var(--text-light);
  padding: var(--spacing-xs);
  border-radius: var(--border-radius);
  margin-left: 10px;
  font-size: 14px;
  transition: var(--transition);
}

.language-selector a.active {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
}

.language-selector a:hover {
  background-color: var(--gold-primary);
  color: var(--text-dark);
}

.main-nav ul {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 37, 41, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 80px 20px 20px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  display: flex;
}

.main-nav.active ul {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Ensure mobile menu covers all content */
.main-nav.active ul::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 37, 41, 0.98);
  z-index: -1;
}

.main-nav a {
  color: var(--text-light);
  padding: 15px 20px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  max-width: 200px;
}

.main-nav a:hover {
  color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.1);
}

.login-btn,
.contact-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
}

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

.contact-btn {
  background: var(--gold-gradient) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
}

.menu-toggle {
  display: block;
  /* Show by default for mobile-first */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10002;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 60vh;
  /* Reduced height for mobile */
  min-height: 400px;
}

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

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

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

.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.carousel-caption h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 15px;
}

.carousel-arrow.next {
  right: 15px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.indicator.active,
.indicator:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* Benefits Section */
.benefits {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item .icon {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm) auto;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item .icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-item:hover .icon {
  transform: scale(1.1);
  color: var(--white);
  background: var(--gold-gradient);
}

.benefit-item:hover .icon::before {
  opacity: 1;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.benefits-cta {
  text-align: center;
  margin-top: var(--spacing-md);
}

/* Benefits Section V2 - Index Page Specific */
.benefits-section.v2 {
  padding: 60px 0;
  background: #fff;
}

.benefits-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-section.v2 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-card-v2 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), #b8860b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

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

.benefit-icon-v2 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-icon-v2::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-icon-v2 i {
  font-size: 2rem;
  color: var(--gold-primary);
  transition: all 0.3s ease;
}

.benefit-card-v2:hover .benefit-icon-v2 {
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  transform: scale(1.1);
}

.benefit-card-v2:hover .benefit-icon-v2::before {
  opacity: 1;
}

.benefit-card-v2:hover .benefit-icon-v2 i {
  color: var(--white);
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Why Us Section */
.why-us {
  padding: var(--spacing-lg) 0;
  text-align: center;
  background-color: var(--white);
}

.why-us h2 {
  font-size: 2.5rem;
  color: var(--dark-grey);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature {
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  background-color: var(--light-grey);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-grey);
}

.feature .icon {
  position: absolute;
  bottom: var(--spacing-sm);
  right: var(--spacing-sm);
  font-size: 2rem;
  color: var(--gold-primary);
  opacity: 0.3;
}

/* Metrics Section */
.metrics {
  padding: var(--spacing-lg) 0;
  background: var(--dark-grey);
  color: var(--text-light);
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.metric h2 {
  font-size: 3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-xs);
}

.metric p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metrics-note {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Global Presence Section */
.global {
  padding: var(--spacing-lg) 0;
  text-align: center;
  background-color: var(--white);
}

.global h2 {
  font-size: 2.5rem;
  color: var(--dark-grey);
}

.world-map {
  margin: var(--spacing-md) 0;
}

.map-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
}

/* QR Code Styles */
.qr-code-container {
  margin: var(--spacing-md) 0;
  text-align: center;
}

.qr-code {
  max-width: 150px;
  height: auto;
  margin-bottom: var(--spacing-xs);
  border: 1px solid var(--light-grey);
  padding: 5px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
  padding: var(--spacing-lg) 0;
  text-align: center;
  background-color: var(--light-grey);
}

.testimonials h2 {
  font-size: 2.5rem;
  color: var(--dark-grey);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.client {
  font-weight: 700;
  color: var(--gold-primary);
}

/* News Section */
.news {
  padding: var(--spacing-lg) 0;
  text-align: center;
  background-color: var(--white);
}

.news h2 {
  font-size: 2.5rem;
  color: var(--dark-grey);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.news-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: var(--white);
}

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

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: var(--spacing-md);
  text-align: left;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.news-cta {
  margin-top: var(--spacing-md);
}

/* Footer */
footer {
  background-color: var(--dark-grey);
  color: var(--text-light);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: var(--spacing-md);
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-primary);
}

.footer-section p {
  margin-bottom: var(--spacing-xs);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-nav a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.footer-button {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-gradient);
  color: var(--text-light);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold-gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom p {
  margin-bottom: var(--spacing-xs);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Override the mobile nav to use our enhanced full-screen design */
  .main-nav ul {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(33, 37, 41, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 80px 20px 20px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    display: flex;
  }

  .main-nav.active ul {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }
}

/* Enhanced responsive breakpoints for benefits grid */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-item .icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
  }

  .benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.25rem;
  }

  .benefit-item .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    width: 60px;
    height: 60px;
  }

  .benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .benefit-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
  }

  .benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .features-grid,
  .metrics-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .benefits-cards-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .benefit-card-v2 {
    padding: 25px 20px;
  }

  .benefit-icon-v2 {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .benefit-icon-v2 i {
    font-size: 1.8rem;
  }

  .benefit-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .benefit-desc {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    gap: 0.75rem;
  }

  .benefit-item {
    padding: 1.25rem;
  }

  .benefit-item .icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    width: 60px;
    height: 60px;
  }

  .benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .benefits-cards-row {
    gap: 12px;
    padding: 0 10px;
  }

  .benefit-card-v2 {
    padding: 20px 15px;
  }

  .benefit-icon-v2 {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }

  .benefit-icon-v2 i {
    font-size: 1.6rem;
  }

  .benefit-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .benefit-desc {
    font-size: 0.9rem;
  }
}

/* Feature Image Styles */
.feature-image {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Contact Grid Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-item p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.icon-container {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-container img {
  width: 24px;
  height: 24px;
}

.qr-code-small img {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .contact-item {
    min-height: 120px;
    padding: 15px;
  }
}

/* Premium Renters Section Styles */
.premium-renters-section {
  padding: 60px 0;
  background-color: var(--light-bg-color);
}

.premium-renters-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.target-demographics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.demographic-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

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

.demographic-card h3 {
  margin: 15px 0;
  font-size: 1.2rem;
}

.demographic-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.blue-text {
  color: #4a7aff;
}

.purple-text {
  color: #b961ff;
}

.icon-container.blue {
  background-color: rgba(74, 122, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container.purple {
  background-color: rgba(185, 97, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .target-demographics {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Project Location Section */
.project-location {
  padding: 60px 0;
  background-color: var(--light-bg-color);
}

.project-location h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.location-details {
  max-width: 800px;
  margin: 0 auto;
}

.location-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.location-details ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.location-details li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Key Investment Features Section */
.key-investment-features {
  padding: 60px 0;
  background: white;
}

.key-investment-features h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background-color: var(--light-bg-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Premium Design Section */
.premium-design {
  padding: 60px 0;
  background: var(--light-bg-color);
}

.premium-design h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.design-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.design-feature {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.design-feature:hover {
  transform: translateY(-5px);
}

.design-feature h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.design-feature p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {

  .features-grid,
  .design-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Previous Projects Section */
.previous-projects {
  padding: 60px 0;
  background: #f8f9fa;
}

.previous-projects .section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.previous-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.project-info {
  padding: 20px;
}

.project-info h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #333;
}

.project-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .previous-projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .project-image {
    height: 180px;
  }
}

/* Modern Stats Section Styles */
.new-stats-section {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.stats-flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stats-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 200px;
  min-width: 180px;
}

.stat-block {
  margin-bottom: 0;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2341;
  letter-spacing: 1px;
  line-height: 1.1;
}

.stat-label {
  font-size: 1.1rem;
  color: #e74c3c;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.stats-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin: 0 30px;
}

.big-number-flag {
  font-size: 8rem;
  font-weight: 900;
  background: url('images/usa_flag.jpg') center/cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block;
  line-height: 1;
  letter-spacing: -8px;
}

.years-label {
  font-size: 1.3rem;
  color: #1a2341;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .stats-flex-container {
    flex-direction: column;
    gap: 30px;
  }

  .stats-center {
    margin: 0;
    min-width: 160px;
  }

  .big-number-flag {
    font-size: 5rem;
  }
}

@media (max-width: 600px) {
  .stats-flex-container {
    gap: 18px;
  }

  .big-number-flag {
    font-size: 3.2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .years-label {
    font-size: 1rem;
  }
}

/* Stats Cards Section Styles */
.stats-cards-section {
  background: #fff;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px 32px;
  width: 100%;
  max-width: 900px;
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #f7f7f7;
  color: #222;
  letter-spacing: 0.5px;
}

.stats-label {
  background: #9ccb3b;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: flex-end;
  padding-right: 18px;
}

.stats-value {
  background: #4ab0df;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: flex-start;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 18px;
  }
}

@media (max-width: 600px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-card {
    font-size: 1rem;
    min-height: 48px;
    padding: 0 8px;
  }
}

/* Stats Cards Section V2 Styles */
.stats-cards-grid.v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-card-v2 {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 10px 22px 10px;
  transition: box-shadow 0.25s, border 0.25s, transform 0.18s;
  border: 1.5px solid #f3e7c4;
}

.stats-card-v2:hover {
  box-shadow: 0 6px 24px 0 rgba(212, 175, 55, 0.13);
  border: 1.5px solid #d4af37;
  transform: translateY(-4px) scale(1.025);
}

.stats-label-v2 {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  text-align: center;
}

.stats-value-v2 {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.stats-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #222;
  line-height: 1.1;
  letter-spacing: 1px;
}

.stats-unit {
  font-size: 1.3rem;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .stats-cards-grid.v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}

@media (max-width: 600px) {
  .stats-cards-grid.v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-card-v2 {
    padding: 18px 4px 14px 4px;
  }

  .stats-number {
    font-size: 1.6rem;
  }

  .stats-unit {
    font-size: 1rem;
  }

  .stats-label-v2 {
    font-size: 0.95rem;
  }
}

/* Why Choose Us Cards Section Styles */
.why-choose-cards-section {
  background: #fff;
  padding: 56px 0 36px 0;
  display: flex;
  justify-content: center;
}

.why-choose-cards-grid {
  display: grid;
  grid-template-columns: 1.1fr 2.5fr;
  gap: 22px 36px;
  width: 100%;
  max-width: 950px;
}

.why-choose-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  min-height: 64px;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1.5px solid #f3e7c4;
  transition: box-shadow 0.22s, border 0.22s, transform 0.16s;
  padding: 0 18px;
}

.why-choose-card.why-choose-label {
  background: #f8f6f1;
  color: #b8860b;
  font-size: 1.13rem;
  font-weight: 700;
  justify-content: flex-end;
  text-align: right;
}

.why-choose-card.why-choose-value {
  background: #fff;
  color: #222;
  font-size: 1.08rem;
  font-weight: 500;
  justify-content: flex-start;
  text-align: left;
}

.why-choose-card:hover {
  box-shadow: 0 6px 24px 0 rgba(212, 175, 55, 0.13);
  border: 1.5px solid #d4af37;
  transform: translateY(-3px) scale(1.018);
}

@media (max-width: 900px) {
  .why-choose-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-choose-card {
    justify-content: center;
    text-align: center;
    padding: 0 10px;
  }
}

/* Why Choose Us Title Section 间距优化 */
.why-choose-title-section {
  background: #fff;
  padding: 56px 0 18px 0;
}

.why-choose-cards-section.v3 {
  background: #fff;
  padding: 18px 0 48px 0;
}

/* Why Choose Us 横向三列和大标题样式 */
.why-choose-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a2341;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.why-choose-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 0;
  min-width: 260px;
  max-width: 370px;
}

.why-choose-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  min-height: 64px;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1.5px solid #f3e7c4;
  transition: box-shadow 0.22s, border 0.22s, transform 0.16s;
  padding: 0 18px;
}

.why-choose-card.why-choose-label {
  background: #f8f6f1;
  color: #b8860b;
  font-size: 1.13rem;
  font-weight: 700;
  justify-content: flex-end;
  text-align: right;
}

.why-choose-card.why-choose-value {
  background: #fff;
  color: #222;
  font-size: 1.08rem;
  font-weight: 500;
  justify-content: flex-start;
  text-align: left;
}

.why-choose-card:hover {
  box-shadow: 0 6px 24px 0 rgba(212, 175, 55, 0.13);
  border: 1.5px solid #d4af37;
  transform: translateY(-3px) scale(1.018);
}

@media (max-width: 900px) {
  .why-choose-cards-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .why-choose-title {
    font-size: 2.1rem;
    margin-bottom: 28px;
  }

  .why-choose-cards-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Why Choose Us Section V3 (参考图片风格) */
.why-choose-cards-section.v3 {
  background: #fff;
  padding: 64px 0 48px 0;
}

.why-choose-title-v3 {
  font-size: 1.8rem;
  /* Smaller for mobile */
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.why-choose-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.why-choose-cards-row-v3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-card-v3 {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.why-choose-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.why-choose-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.why-choose-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.why-choose-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-card-icon i {
  font-size: 18px;
  color: white;
}

/* Stats Cards Mobile-First */
.stats-cards-grid.v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.stats-card-v2 {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.stats-label-v2 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.stats-value-v2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stats-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* CTA Buttons */
.benefits-cta {
  text-align: center;
  margin-top: 30px;
}

.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Mobile-First */
footer {
  background-color: var(--dark-grey);
  color: var(--text-light);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: var(--spacing-md);
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-primary);
}

.footer-section p {
  margin-bottom: var(--spacing-xs);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-nav a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.footer-button {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-gradient);
  color: var(--text-light);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold-gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom p {
  margin-bottom: var(--spacing-xs);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }

  header {
    padding: 15px 0;
  }

  .logo img {
    height: 55px;
  }

  .carousel-container {
    height: 70vh;
    min-height: 500px;
  }

  .carousel-caption {
    bottom: 40px;
    left: 40px;
    right: 40px;
    padding: 30px;
  }

  .carousel-caption h2 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .why-choose-title-v3 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 0;
  }

  .benefits-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .benefit-card-v2 {
    padding: 25px 20px;
  }

  .benefit-icon-v2 {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .benefit-icon-v2 i {
    font-size: 1.8rem;
  }

  .benefit-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .benefit-desc {
    font-size: 0.95rem;
  }

  .why-choose-cards-row-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats-cards-grid.v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  header {
    padding: 20px 0;
  }

  .logo img {
    height: 60px;
  }

  /* Desktop Navigation */
  .menu-toggle {
    display: none;
  }

  .main-nav ul {
    position: static;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    display: flex;
    z-index: auto;
  }

  .main-nav a {
    font-size: 16px;
    padding: 10px 15px;
    width: auto;
    max-width: none;
  }

  .carousel-container {
    height: 80vh;
    min-height: 600px;
  }

  .carousel-caption {
    bottom: 60px;
    left: 60px;
    right: 60px;
    padding: 40px;
    text-align: left;
  }

  .carousel-caption h2 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  .why-choose-title-v3 {
    font-size: 2.5rem;
  }

  section {
    padding: 80px 0;
  }

  .benefits-cards-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .benefit-card-v2 {
    padding: 35px 25px;
  }

  .benefit-icon-v2 {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .benefit-icon-v2 i {
    font-size: 2.2rem;
  }

  .benefit-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .benefit-desc {
    font-size: 1.05rem;
  }

  .why-choose-cards-row-v3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .stats-cards-grid.v2 {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation trigger classes */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card-v2.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.why-choose-card-v3.animate-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.stats-card-v2.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.news-card.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animation delays */
.benefit-card-v2:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card-v2:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card-v2:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card-v2:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card-v2:nth-child(5) {
  animation-delay: 0.5s;
}

.why-choose-card-v3:nth-child(1) {
  animation-delay: 0.1s;
}

.why-choose-card-v3:nth-child(2) {
  animation-delay: 0.2s;
}

.why-choose-card-v3:nth-child(3) {
  animation-delay: 0.3s;
}

.stats-card-v2:nth-child(1) {
  animation-delay: 0.1s;
}

.stats-card-v2:nth-child(2) {
  animation-delay: 0.2s;
}

.stats-card-v2:nth-child(3) {
  animation-delay: 0.3s;
}

.stats-card-v2:nth-child(4) {
  animation-delay: 0.4s;
}

.stats-card-v2:nth-child(5) {
  animation-delay: 0.5s;
}

/* Enhanced hover effects */
.benefit-card-v2:hover .benefit-icon-v2 {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-card-v3:hover .why-choose-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stats-card-v2:hover .stats-number {
  transform: scale(1.05);
  color: var(--gold-primary);
}

/* Loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

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

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.menu-toggle:focus,
.carousel-arrow:focus,
.indicator:focus,
.cta-button:focus,
.secondary-button:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

  .benefit-card-v2,
  .why-choose-card-v3,
  .stats-card-v2 {
    border: 2px solid var(--text-dark);
  }

  .carousel-arrow {
    background: var(--text-dark);
    border: 2px solid var(--white);
  }
}

/* Print styles */
@media print {

  .menu-toggle,
  .carousel-arrow,
  .carousel-indicators,
  .social-links {
    display: none !important;
  }

  .main-nav ul {
    position: static !important;
    background: none !important;
    flex-direction: row !important;
    gap: 20px !important;
  }

  .carousel-container {
    height: auto !important;
  }

  .carousel-slide {
    position: static !important;
    opacity: 1 !important;
  }
}

/* Project Advantages Section */
.project-advantages {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.advantage-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.advantage-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.advantage-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
}

/* Investment Process Section */
.investment-process {
  padding: 60px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: #333;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Project Timeline Section */
.project-timeline {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #007bff;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  text-align: right;
  padding-right: 30px;
  font-weight: bold;
  color: #007bff;
}

.timeline-content {
  margin-left: 150px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Project Location Section */
.project-location {
  padding: 60px 0;
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-date {
    position: relative;
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .timeline-content {
    margin-left: 0;
  }

  .advantages-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Project Selection Process Section */
.project-selection-process {
  padding: 60px 0 40px 0;
  background: #fff;
}

.project-selection-process .section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a2341;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.selection-divider {
  width: 80px;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
  margin: 0 auto 24px auto;
}

.selection-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px auto;
  font-size: 1.13rem;
  color: #444;
  line-height: 1.7;
}

.selection-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-content: center;
  margin-top: 0;
}

.selection-card {
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 24px 24px 24px;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  border: 1.5px solid #f3e7c4;
  transition: box-shadow 0.22s, border 0.22s, transform 0.16s;
}

.selection-card:hover {
  box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.13);
  border: 1.5px solid #d4af37;
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}

.selection-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.selection-icon i {
  color: #1a2341;
  font-size: 2.2rem;
}

.selection-card h3 {
  font-size: 1.13rem;
  font-weight: 800;
  color: #1a2341;
  margin-bottom: 12px;
}

.selection-card p {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .selection-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .selection-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .selection-card {
    padding: 18px 8px 14px 8px;
  }

  .selection-card h3 {
    font-size: 1rem;
  }

  .selection-card p {
    font-size: 0.95rem;
  }
}

/* Key Measures Supporting Capital Return and Immigration Success Section */
.key-measures-section {
  padding: 60px 0 40px 0;
  background: #fff;
}

.key-measures-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #222;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.key-measures-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px auto;
  font-size: 1.13rem;
  color: #444;
  line-height: 1.7;
}

.key-measures-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.key-measure-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 38px 18px 18px 18px;
  text-align: left;
  transition: box-shadow 0.22s, transform 0.16s;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.key-measure-card:hover {
  box-shadow: 0 12px 32px 0 rgba(212, 175, 55, 0.18);
  transform: translateY(-8px) scale(1.035);
  z-index: 2;
}

.key-measure-icon {
  width: 54px;
  height: 54px;
  background: #f3e7c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.key-measure-icon i {
  color: #b8860b;
  font-size: 2rem;
}

.key-measure-card h3 {
  font-size: 1.13rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}

.key-measure-card p {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .key-measures-cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .key-measures-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .key-measures-title {
    font-size: 2.1rem;
  }

  .key-measures-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .key-measure-card {
    padding: 16px 8px 10px 8px;
  }

  .key-measure-card h3 {
    font-size: 1rem;
  }

  .key-measure-card p {
    font-size: 0.95rem;
  }
}

.projects-section .carousel-arrow i {
  font-size: 3rem;
  /* Increased size for project carousel arrows */
}

.projects-section .project-content .section-title {
  font-size: 2rem;
  /* Smaller font size for this specific title */
  white-space: nowrap;
  /* Prevent text from wrapping */
  overflow: hidden;
  /* Hide overflowing text */
  text-overflow: ellipsis;
  /* Show ellipsis for overflow */
}

.projects-section .project-details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.projects-section .project-details {
  display: grid;
  /* Use grid for more controlled alignment */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  /* Responsive columns */
  gap: 15px;
  /* Adjusted space between small detail cards */
  flex-grow: 1;
  /* Removed previous flex/grid styles if any were here */
  padding: 10px 0;
  /* Add some padding to align with potential carousel padding */
}

.projects-section .detail-item {
  background-color: var(--white);
  /* White background for cards */
  border: 1px solid var(--light-grey);
  /* Subtle border */
  border-radius: var(--border-radius);
  /* Rounded corners */
  padding: 15px;
  /* Increased padding inside cards */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center text within the card */
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
  text-align: center;
  /* Center text horizontally */
}

.projects-section .detail-item .detail-label {
  font-weight: bold;
  color: var(--gold-primary);
  /* Use gold color for labels */
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.projects-section .detail-item .detail-value {
  color: var(--text-dark);
  font-size: 1.1rem;
  /* Make value slightly larger */
  font-weight: 600;
}

.projects-section .project-description-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  /* Subtle border */
  border-radius: var(--border-radius);
  padding: 20px;
  flex-basis: 100%;
  box-shadow: var(--box-shadow);
}

.projects-section .project-description {
  margin-bottom: 0;
  line-height: 1.8;
}

/* Responsive adjustments for project details */
@media (max-width: 768px) {
  .projects-section .project-details-container {
    flex-direction: column;
  }

  .projects-section .project-details {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    /* Adjust columns for smaller screens */
    gap: 10px;
    padding: 0;
  }

  .projects-section .detail-item {
    flex-basis: auto;
    /* Allow grid to control sizing */
    padding: 10px;
  }
}

.cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--light-grey);
  /* Or a light color that fits the theme */
  margin-bottom: 80px;
  /* Add space below the CTA section */
}

/* FAQ Page Styles */
.page-banner {
  background: linear-gradient(135deg, var(--dark-grey) 0%, #2c2c2c 100%);
  color: var(--text-light);
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::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="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Categories */
.faq-categories {
  background: var(--white);
  padding: 40px 0 20px 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 100px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 8px;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  background: transparent;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  min-width: fit-content;
}

.category-tab:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.category-tab.active {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* FAQ Content */
.faq-content {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.faq-category {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.faq-category.active {
  display: block;
}

.faq-category h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.faq-category .divider {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 0 auto 50px auto;
  border-radius: 2px;
}

/* FAQ Items */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-question:hover::before,
.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question:hover {
  background: #fafbfc;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}

.toggle-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.toggle-icon i {
  color: var(--white);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
}

.faq-answer p {
  padding: 25px 30px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.faq-answer a {
  color: var(--gold-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--gold-secondary);
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* CTA Section for FAQ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-grey) 0%, #2c2c2c 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

.cta-button.secondary:hover {
  background: var(--gold-primary);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-banner h1 {
    font-size: 2.8rem;
  }

  .page-banner p {
    font-size: 1.1rem;
  }

  .faq-category h2 {
    font-size: 2.2rem;
  }

  .category-tabs {
    padding: 6px;
    gap: 5px;
  }

  .category-tab {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 60px 0 40px 0;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .page-banner p {
    font-size: 1rem;
  }

  .faq-categories {
    padding: 20px 0 15px 0;
    top: 80px;
  }

  .category-tabs {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 10px;
    border-radius: 0;
  }

  .category-tab {
    border-radius: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
  }

  .category-tab.active {
    transform: none;
  }

  .faq-content {
    padding: 40px 0;
  }

  .faq-category h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 0;
  }

  .toggle-icon {
    align-self: flex-end;
    width: 35px;
    height: 35px;
  }

  .faq-answer p {
    padding: 20px;
    font-size: 1rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 1.8rem;
  }

  .faq-categories {
    top: 70px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 15px;
    font-size: 0.95rem;
  }

  .toggle-icon {
    width: 30px;
    height: 30px;
  }

  .toggle-icon i {
    font-size: 0.9rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  .faq-item,
  .faq-question,
  .faq-answer,
  .category-tab,
  .toggle-icon i {
    transition: none;
  }

  .faq-category {
    animation: none;
  }
}

/* Focus states for accessibility */
.category-tab:focus,
.faq-question:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .faq-item {
    border: 2px solid #000;
  }

  .faq-question h3 {
    color: #000;
  }

  .toggle-icon {
    background: #000;
  }
}

/* FAQ Search Functionality (Optional) */
.faq-search-container {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.1rem;
}

/* Loading state for FAQ items */
.faq-item.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Smooth transitions for show/hide */
.faq-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item[style*="none"] {
  opacity: 0;
  transform: scale(0.95);
}

/* Enhanced mobile responsiveness for search */
@media (max-width: 768px) {
  .faq-search-container {
    padding: 20px 0;
  }

  .search-box input {
    padding: 12px 45px 12px 15px;
    font-size: 0.95rem;
  }

  .search-box i {
    right: 15px;
    font-size: 1rem;
  }
}

/* Enhanced Page-Specific Styles */

/* Contact Form Enhancements */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.contact-form-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.form-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  transform: scale(1.2);
  accent-color: var(--gold-primary);
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

/* Enhanced Button Styles */
.cta-button,
.secondary-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before,
.secondary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before,
.secondary-button:hover::before {
  left: 100%;
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

.secondary-button:hover {
  background: var(--gold-primary);
  color: var(--white);
}

/* Enhanced Card Animations */
.benefit-item,
.feature,
.advantage-card,
.rc-card,
.why-choose-card-v3,
.stats-card-v2,
.key-measure-card,
.selection-card,
.news-card,
.contact-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover,
.feature:hover,
.advantage-card:hover,
.rc-card:hover,
.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Process Steps - Legacy styles for other pages */
.investment-process .process-step {
  position: relative;
  transition: all 0.3s ease;
}

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

.investment-process .process-step-number {
  position: relative;
  z-index: 2;
}

.investment-process .process-step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.investment-process .process-step:hover::before {
  opacity: 1;
}

/* Enhanced Global Cards */
.global-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.global-card::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.6s ease;
}

.global-card:hover::before {
  left: 100%;
}

/* Enhanced News Cards */
.news-card {
  position: relative;
  overflow: hidden;
}

.news-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.news-image img {
  transition: transform 0.5s ease;
}

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

/* Enhanced Stats Animation */
.stats-number {
  position: relative;
  display: inline-block;
}

.stats-card-v2:hover .stats-number {
  animation: pulse 1s ease-in-out;
}

@keyframes pulse {

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

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

/* Enhanced Company Overview */
.company-overview {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

/* Enhanced EB-5 Overview */
.eb5-overview {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.overview-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Benefits Section */
.detail-benefits {
  padding: 80px 0;
  background: var(--white);
}

.detail-benefits h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

/* Enhanced Process Section */
.process {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.process h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

/* Enhanced Regional Center Section */
.regional-center {
  padding: 80px 0;
  background: var(--white);
}

.regional-center h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

/* Enhanced Contact Info Section */
.contact-info {
  padding: 60px 0;
  background: var(--white);
}

/* Form Message Styles */
.form-message {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideInFromTop 0.5s ease-out;
}

.form-message.success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.form-message.error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.message-content {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.message-content p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  flex: 1;
}

.message-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

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

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

/* Form Loading State Enhancement */
.contact-form button.loading {
  position: relative;
  color: transparent;
}

.contact-form button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
  .message-content {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .message-close {
    align-self: flex-end;
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  .message-content p {
    font-size: 1rem;
  }
}

/* Enhanced Global Offices */
.global-offices {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.global-offices h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.offices-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Global Cards Grid - 匹配线上版本布局 */
.global-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.global-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 100px;
}

.global-card::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.6s ease;
}

.global-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.global-card:hover::before {
  left: 100%;
}

.global-card-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.global-card-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.global-card-info {
  flex: 1;
}

.global-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.global-card-detail {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.4;
}

.global-card-detail:last-child {
  margin-bottom: 0;
}

.global-card-detail a {
  color: inherit;
  text-decoration: none;
}

.global-card-detail a:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* 平板端 - 2列布局 */
@media (min-width: 768px) {
  .global-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .global-card {
    padding: 30px 25px;
    gap: 25px;
  }

  .global-card-logo {
    width: 65px;
    height: 65px;
  }

  .global-card-logo img {
    width: 45px;
    height: 45px;
  }

  .global-card-title {
    font-size: 1.15rem;
  }

  .global-card-detail {
    font-size: 0.95rem;
  }
}

/* 桌面端 - 3列布局 */
@media (min-width: 1024px) {
  .global-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .global-card {
    padding: 35px 30px;
    gap: 25px;
    min-height: 120px;
  }

  .global-card-logo {
    width: 70px;
    height: 70px;
  }

  .global-card-logo img {
    width: 50px;
    height: 50px;
  }

  .global-card-title {
    font-size: 1.2rem;
  }

  .global-card-detail {
    font-size: 1rem;
  }
}

/* 大屏幕 - 保持3列但增加间距 */
@media (min-width: 1200px) {
  .global-cards-grid {
    gap: 35px;
  }

  .global-card {
    padding: 40px 35px;
  }
}

/* 移动端优化 */
@media (max-width: 576px) {
  .global-cards-grid {
    gap: 15px;
    margin-top: 30px;
  }

  .global-card {
    padding: 20px 15px;
    gap: 15px;
    min-height: 90px;
  }

  .global-card-logo {
    width: 50px;
    height: 50px;
  }

  .global-card-logo img {
    width: 35px;
    height: 35px;
  }

  .global-card-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .global-card-detail {
    font-size: 0.85rem;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {

  .contact-form-section h2,
  .company-overview h2,
  .eb5-overview h2,
  .detail-benefits h2,
  .process h2,
  .regional-center h2,
  .global-offices h2 {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 20px;
    margin: 0 15px;
  }

  .form-intro,
  .offices-intro {
    font-size: 1.1rem;
  }

  .overview-content p {
    font-size: 1rem;
  }

  .checkbox-group {
    align-items: flex-start;
  }

  .checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {

  .contact-form-section h2,
  .company-overview h2,
  .eb5-overview h2,
  .detail-benefits h2,
  .process h2,
  .regional-center h2,
  .global-offices h2 {
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 15px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* Focus Visible Enhancement */
.cta-button:focus-visible,
.secondary-button:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Form Error and Success States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: #fdf2f2;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error-message::before {
  content: '⚠';
  font-size: 1rem;
}

.success-message {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
  animation: slideInFromTop 0.5s ease-out;
}

.success-content {
  text-align: center;
}

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

.success-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.success-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.character-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
  font-family: monospace;
}

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

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

/* Enhanced Button Loading State */
.cta-button.loading {
  position: relative;
  color: transparent;
}

.cta-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

/* Location Highlights Section - Convenient Surroundings, Shopping & Landmarks */
.location-highlights {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.location-highlights h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  cursor: pointer;
}

.location-card::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.6s ease;
  z-index: 1;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.location-card:hover::before {
  left: 100%;
}

.location-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.location-desc {
  padding: 25px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.5;
  background: white;
  position: relative;
  z-index: 2;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .location-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .location-highlights {
    padding: 60px 0;
  }

  .location-highlights h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .location-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .location-img {
    height: 180px;
  }

  .location-desc {
    padding: 20px 15px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .location-highlights {
    padding: 50px 0;
  }

  .location-highlights h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

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

  .location-img {
    height: 160px;
  }

  .location-desc {
    padding: 18px 12px;
    font-size: 0.95rem;
  }

  .location-card:hover {
    transform: translateY(-4px);
  }
}

/* Enhanced Map Styles */
.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
}

.map-instruction {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.map-container:hover .map-instruction {
  opacity: 0;
}

/* Enhanced Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

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

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dots .dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* Lazy Loading Images */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* Print Styles */
@media print {

  .page-banner,
  .cta-section,
  footer,
  .contact-form-section {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* EB-5 Page Specific Styles */

/* Process Flow Styles */
.process-flow {
  margin-top: 40px;
}

.process-flow-2rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--gold-primary);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.process-arrow {
  font-size: 2rem;
  color: var(--gold-primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.process-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Regional Center Cards */
.rc-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.rc-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.rc-card::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.6s ease;
}

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

.rc-card:hover::before {
  left: 100%;
}

.rc-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.rc-card:hover .rc-card-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.rc-card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.rc-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.rc-card-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Enhanced Benefits Grid for EB-5 Page */
.detail-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.detail-benefits .benefit-item {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.detail-benefits .benefit-item::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.6s ease;
}

.detail-benefits .benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--gold-primary);
}

.detail-benefits .benefit-item:hover::before {
  left: 100%;
}

.detail-benefits .benefit-item .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
  opacity: 1;
}

.detail-benefits .benefit-item:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.detail-benefits .benefit-item .icon i {
  font-size: 2rem;
  color: var(--white);
}

.detail-benefits .benefit-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.detail-benefits .benefit-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Why Us Section Enhancement */
.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-us .feature {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.why-us .feature::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.6s ease;
}

.why-us .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--gold-primary);
}

.why-us .feature:hover::before {
  left: 100%;
}

.why-us .feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-us .feature .icon {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  opacity: 1;
}

.why-us .feature:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.why-us .feature .icon i {
  font-size: 1.5rem;
  color: var(--white);
}

/* CTA Container */
.cta-container {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design for EB-5 Page */
@media (max-width: 1200px) {
  .process-flow-2rows {
    max-width: 100%;
    padding: 0 20px;
  }

  .process-step {
    min-width: 260px;
    max-width: 300px;
  }

  .rc-cards-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .process-row {
    flex-direction: column;
    gap: 30px;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .process-step {
    min-width: 100%;
    max-width: 400px;
  }

  .detail-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .why-us .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .process-flow-2rows {
    gap: 30px;
    padding: 0 15px;
  }

  .process-step {
    padding: 25px 20px;
    min-width: 100%;
  }

  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .process-step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .process-step-desc {
    font-size: 0.95rem;
  }

  .rc-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rc-card {
    padding: 30px 20px;
  }

  .rc-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .rc-card-icon i {
    font-size: 1.8rem;
  }

  .rc-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .detail-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-benefits .benefit-item {
    padding: 30px 20px;
  }

  .detail-benefits .benefit-item .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .detail-benefits .benefit-item .icon i {
    font-size: 1.8rem;
  }

  .detail-benefits .benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .why-us .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us .feature {
    padding: 30px 25px 80px 25px;
  }

  .why-us .feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .why-us .feature .icon {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .why-us .feature .icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .process-step {
    padding: 20px 15px;
  }

  .process-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .process-step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .process-step-desc {
    font-size: 0.9rem;
  }

  .rc-card,
  .detail-benefits .benefit-item {
    padding: 25px 15px;
  }

  .rc-card-icon,
  .detail-benefits .benefit-item .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .rc-card-icon i,
  .detail-benefits .benefit-item .icon i {
    font-size: 1.5rem;
  }

  .rc-card-title,
  .detail-benefits .benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .rc-card-desc,
  .detail-benefits .benefit-item p {
    font-size: 0.95rem;
  }

  .why-us .feature {
    padding: 25px 20px 70px 20px;
  }

  .why-us .feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .why-us .feature p {
    font-size: 0.95rem;
  }

  .why-us .feature .icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .why-us .feature .icon i {
    font-size: 1.2rem;
  }
}

/* Animation Enhancements */
@keyframes processStepIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.process-flow .process-step {
  animation: processStepIn 0.6s ease-out forwards;
}

.process-flow .process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-flow .process-step:nth-child(3) {
  animation-delay: 0.2s;
}

.process-flow .process-step:nth-child(5) {
  animation-delay: 0.3s;
}

.process-flow .process-row:nth-child(2) .process-step:nth-child(1) {
  animation-delay: 0.4s;
}

.process-flow .process-row:nth-child(2) .process-step:nth-child(3) {
  animation-delay: 0.5s;
}

.process-flow .process-row:nth-child(2) .process-step:nth-child(5) {
  animation-delay: 0.6s;
}

/* Print Styles */
@media print {
  .process-arrow {
    display: none;
  }

  .process-row {
    flex-direction: column;
    gap: 20px;
    page-break-inside: avoid;
  }

  .process-step,
  .rc-card,
  .detail-benefits .benefit-item,
  .why-us .feature {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* About Page Specific Styles */

/* Transparency Section */
.transparency-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.transparency-section .section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.transparency-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
}

.transparency-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.transparency-side {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transparency-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: left 0.6s ease;
}

.transparency-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold-primary);
}

.transparency-side:hover::before {
  left: 100%;
}

.transparency-side.traditional {
  border-left: 4px solid #e74c3c;
}

.transparency-side.west-maingate {
  border-left: 4px solid var(--gold-primary);
}

.transparency-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.transparency-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.transparency-subtitle {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}

.transparency-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.transparency-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.transparency-step:hover {
  background: #f0f2f5;
  transform: translateX(5px);
}

.transparency-step.main {
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  color: var(--white);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.transparency-step.main:hover {
  background: linear-gradient(135deg, #b8860b, var(--gold-primary));
  transform: translateX(0) scale(1.02);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.transparency-step.main .step-icon {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

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

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.transparency-step.main .step-title {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.transparency-step.main .step-desc {
  color: rgba(255, 255, 255, 0.9);
}

.main-content .highlight-point {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  display: block;
}

.main-content .point {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.main-content .point::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.step-arrow {
  text-align: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin: 10px 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.step-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

.step-arrow i {
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.testimonials h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 40px 35px;
  margin: 30px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 4px solid var(--gold-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--gold-primary);
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.client {
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1.1rem;
  text-align: right;
  position: relative;
}

.client::before {
  content: '— ';
  color: #ccc;
}

/* Enhanced CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #2c3e50 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

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

.cta-title-small {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-primary), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

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

/* Enhanced Metrics Section */
.metrics {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2c3e50 100%);
  position: relative;
  overflow: hidden;
}

.metrics::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.metrics h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-primary), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.metric {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.metric::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.6s ease;
}

.metric:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.metric:hover::before {
  left: 100%;
}

.metric h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.metric p {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
  .transparency-comparison {
    gap: 30px;
    max-width: 100%;
    padding: 0 20px;
  }

  .transparency-side {
    padding: 35px 25px;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .transparency-comparison {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transparency-section .section-title {
    font-size: 2.5rem;
  }

  .transparency-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .metrics h2 {
    font-size: 2.5rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .testimonials h2 {
    font-size: 2.5rem;
  }

  .cta-title-small {
    font-size: 2.2rem;
  }
}

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

  .transparency-comparison {
    padding: 0 15px;
    gap: 30px;
  }

  .transparency-side {
    padding: 30px 20px;
  }

  .transparency-header h3 {
    font-size: 1.4rem;
  }

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

  .transparency-step {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }

  .transparency-step.main {
    padding: 25px 20px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
  }

  .step-icon i {
    font-size: 1.1rem;
  }

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

  .transparency-step.main .step-title {
    font-size: 1.2rem;
  }

  .step-desc {
    font-size: 0.9rem;
  }

  .metrics {
    padding: 60px 0;
  }

  .metrics h2 {
    font-size: 2.2rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 40px;
  }

  .metric {
    padding: 25px 15px;
  }

  .metric h2 {
    font-size: 2rem;
  }

  .metric p {
    font-size: 0.85rem;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials h2 {
    font-size: 2.2rem;
  }

  .testimonial {
    padding: 30px 25px;
    margin: 20px 0;
  }

  .testimonial p {
    font-size: 1.1rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title-small {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .transparency-section .section-title {
    font-size: 2rem;
  }

  .transparency-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .transparency-side {
    padding: 25px 15px;
  }

  .transparency-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .transparency-header h3 {
    font-size: 1.3rem;
  }

  .transparency-step {
    padding: 15px 10px;
  }

  .transparency-step.main {
    padding: 20px 15px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon i {
    font-size: 1rem;
  }

  .step-title {
    font-size: 1rem;
  }

  .transparency-step.main .step-title {
    font-size: 1.1rem;
  }

  .step-desc {
    font-size: 0.85rem;
  }

  .metrics h2 {
    font-size: 2rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric {
    padding: 20px 10px;
  }

  .metric h2 {
    font-size: 1.8rem;
  }

  .metric p {
    font-size: 0.8rem;
  }

  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonial {
    padding: 25px 20px;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .client {
    font-size: 1rem;
  }

  .cta-title-small {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* Animation Enhancements for About Page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.transparency-step {
  animation: fadeInUp 0.6s ease-out forwards;
}

.transparency-step:nth-child(1) {
  animation-delay: 0.1s;
}

.transparency-step:nth-child(2) {
  animation-delay: 0.2s;
}

.transparency-step:nth-child(3) {
  animation-delay: 0.3s;
}

.transparency-step:nth-child(4) {
  animation-delay: 0.4s;
}

.transparency-step:nth-child(5) {
  animation-delay: 0.5s;
}

.transparency-step:nth-child(6) {
  animation-delay: 0.6s;
}

.metric {
  animation: fadeInUp 0.6s ease-out forwards;
}

.metric:nth-child(1) {
  animation-delay: 0.1s;
}

.metric:nth-child(2) {
  animation-delay: 0.2s;
}

.metric:nth-child(3) {
  animation-delay: 0.3s;
}

.metric:nth-child(4) {
  animation-delay: 0.4s;
}

.metric:nth-child(5) {
  animation-delay: 0.5s;
}

.metric:nth-child(6) {
  animation-delay: 0.6s;
}

.metric:nth-child(7) {
  animation-delay: 0.7s;
}

.metric:nth-child(8) {
  animation-delay: 0.8s;
}

.metric:nth-child(9) {
  animation-delay: 0.9s;
}

.metric:nth-child(10) {
  animation-delay: 1.0s;
}

/* Print Styles for About Page */
@media print {
  .transparency-comparison {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transparency-side,
  .testimonial,
  .metric {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .cta-section {
    background: none;
    color: #333;
  }

  .metrics {
    background: none;
  }

  .metrics h2,
  .metric h2 {
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
  }
}

/* Projects Page Carousel Styles */

/* Project Carousel Container */
.project-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #000;
}

.project-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-carousel .carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.project-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-carousel:hover .carousel-slide.active img {
  transform: scale(1.05);
}

/* Project Carousel Arrows */
.project-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.project-carousel .carousel-arrow:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.project-carousel .carousel-arrow.left {
  left: 20px;
}

.project-carousel .carousel-arrow.right {
  right: 20px;
}

.project-carousel .carousel-arrow i {
  font-size: 1.2rem;
}

/* Project Carousel Dots */
.project-carousel .carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

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

.project-carousel .carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.project-carousel .carousel-dots .dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transform: scale(1.3);
}

/* Projects Section Layout */
.projects-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafbfc 0%, var(--white) 100%);
}

.projects-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.projects-grid {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.project-card {
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-content {
  padding: 40px;
}

.project-content .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.project-details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #f0f2f5;
  transform: translateX(5px);
}

.detail-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.detail-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.project-description-card {
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  padding: 30px;
  border-radius: 15px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: var(--white);
}

/* Enhanced Home Page Carousel Responsive Styles */
.hero-section .carousel-container {
  height: 600px;
  border-radius: 0;
}

.hero-section .carousel-arrow {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.9);
  font-size: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-section .carousel-arrow:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-section .carousel-indicators {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.hero-section .indicator {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

.hero-section .indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-section .indicator.active {
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transform: scale(1.3);
}

/* Responsive Design for Carousels */
@media (max-width: 1200px) {
  .project-carousel {
    height: 450px;
  }

  .project-content {
    padding: 35px;
  }

  .project-content .section-title {
    font-size: 2rem;
  }

  .project-details-container {
    gap: 30px;
  }

  .hero-section .carousel-container {
    height: 550px;
  }
}

@media (max-width: 992px) {
  .project-carousel {
    height: 400px;
  }

  .project-carousel .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .project-carousel .carousel-arrow.left {
    left: 15px;
  }

  .project-carousel .carousel-arrow.right {
    right: 15px;
  }

  .project-content {
    padding: 30px;
  }

  .project-content .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .project-details-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-details {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .detail-item {
    padding: 15px;
  }

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

  .project-description-card {
    padding: 25px;
  }

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

  .hero-section .carousel-container {
    height: 500px;
  }

  .hero-section .carousel-arrow {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .carousel-caption {
    left: 5%;
    max-width: 70%;
  }

  .carousel-caption h2 {
    font-size: 2.2rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .project-carousel {
    height: 350px;
    border-radius: 12px;
  }

  .project-carousel .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .project-carousel .carousel-arrow.left {
    left: 10px;
  }

  .project-carousel .carousel-arrow.right {
    right: 10px;
  }

  .project-carousel .carousel-dots {
    bottom: 15px;
    gap: 8px;
    padding: 8px 15px;
  }

  .project-carousel .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }

  .projects-section {
    padding: 60px 0;
  }

  .projects-section h2 {
    font-size: 2.5rem;
  }

  .project-card {
    margin: 0 15px;
    border-radius: 15px;
  }

  .project-content {
    padding: 25px 20px;
  }

  .project-content .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-item {
    padding: 15px;
  }

  .detail-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .detail-value {
    font-size: 1.1rem;
  }

  .project-description-card {
    padding: 20px;
  }

  .project-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-section .carousel-container {
    height: 450px;
  }

  .hero-section .carousel-arrow {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hero-section .carousel-arrow.prev {
    left: 15px;
  }

  .hero-section .carousel-arrow.next {
    right: 15px;
  }

  .carousel-caption {
    bottom: 15%;
    left: 5%;
    max-width: 85%;
  }

  .carousel-caption h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .hero-section .carousel-indicators {
    bottom: 15px;
    padding: 8px 15px;
    gap: 8px;
  }

  .hero-section .indicator {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .project-carousel {
    height: 300px;
    border-radius: 10px;
  }

  .project-carousel .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .project-carousel .carousel-arrow.left {
    left: 8px;
  }

  .project-carousel .carousel-arrow.right {
    right: 8px;
  }

  .project-carousel .carousel-dots {
    bottom: 12px;
    gap: 6px;
    padding: 6px 12px;
  }

  .project-carousel .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }

  .projects-section h2 {
    font-size: 2.2rem;
  }

  .project-card {
    margin: 0 10px;
    border-radius: 12px;
  }

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

  .project-content .section-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .project-details-container {
    gap: 20px;
  }

  .detail-item {
    padding: 12px;
  }

  .detail-label {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

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

  .project-description-card {
    padding: 18px;
  }

  .project-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-section .carousel-container {
    height: 400px;
  }

  .hero-section .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .hero-section .carousel-arrow.prev {
    left: 10px;
  }

  .hero-section .carousel-arrow.next {
    right: 10px;
  }

  .carousel-caption {
    bottom: 12%;
    left: 5%;
    max-width: 90%;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-section .carousel-indicators {
    bottom: 12px;
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-section .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .project-carousel {
    height: 280px;
  }

  .project-carousel .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .project-carousel .carousel-arrow.left {
    left: 5px;
  }

  .project-carousel .carousel-arrow.right {
    right: 5px;
  }

  .projects-section h2 {
    font-size: 2rem;
  }

  .project-content .section-title {
    font-size: 1.3rem;
  }

  .detail-item {
    padding: 10px;
  }

  .detail-value {
    font-size: 0.95rem;
  }

  .project-description-card {
    padding: 15px;
  }

  .project-description {
    font-size: 0.85rem;
  }

  .hero-section .carousel-container {
    height: 350px;
  }

  .hero-section .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .carousel-caption h2 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }
}

/* Touch and Interaction Enhancements */
@media (hover: none) and (pointer: coarse) {

  .project-carousel .carousel-arrow,
  .hero-section .carousel-arrow {
    opacity: 0.8;
  }

  .project-carousel .carousel-arrow:active,
  .hero-section .carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }

  .project-carousel .carousel-dots .dot:active,
  .hero-section .indicator:active {
    transform: scale(0.9);
  }
}

/* Print Styles for Carousels */
@media print {

  .project-carousel,
  .hero-section .carousel-container {
    height: auto;
    overflow: visible;
  }

  .project-carousel .carousel-slide,
  .hero-section .carousel-slide {
    position: static;
    opacity: 1;
    display: block;
    page-break-inside: avoid;
  }

  .project-carousel .carousel-arrow,
  .project-carousel .carousel-dots,
  .hero-section .carousel-arrow,
  .hero-section .carousel-indicators {
    display: none;
  }

  .carousel-caption {
    position: static;
    color: #333;
    text-shadow: none;
    background: #f8f9fa;
    padding: 20px;
    margin-top: 10px;
  }
}