:root {
  --gallery-img-width: 400px;
  --gallery-img-height: 400px;
  --gallery-gap: 1rem;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #bdc3c7;
}

/* Epic Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #f8f9fa, #ffffff);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: loadingProgress 3s ease-in-out forwards,
    shimmerLoad 1.5s ease-in-out infinite;
  width: 0%;
}

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

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(22, 33, 62, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(22, 33, 62, 0.9);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #bdc3c7;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}

.cta-button {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: linear-gradient(135deg, #2980b9 0%, #8e44ad 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section Styles - Enhanced with AIDA Model */
.hero {
  min-height: 780px;
  padding: 100px 0 60px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Particles Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: snowfall 20s linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(10vw) rotate(360deg);
    opacity: 0;
  }
}

/* Animated gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(52, 152, 219, 0.3) 0%,
    rgba(155, 89, 182, 0.3) 25%,
    rgba(52, 152, 219, 0.3) 50%,
    rgba(231, 76, 60, 0.3) 75%,
    rgba(52, 152, 219, 0.3) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 200, 255, 0.3) 0%,
      transparent 30%
    );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  animation: heroEntrance 1.5s ease-out;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f9fa 30%,
    #ffffff 60%,
    #e3f2fd 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  letter-spacing: -1px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  border-radius: 20px;
  animation: shimmer 3s ease-in-out infinite;
  z-index: -1;
}

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

.hero-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8rem;
  animation: fadeInUp 1s ease 0.8s both;
  overflow-x: auto;
  padding: 0 1rem;
}

.feature-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.hero-features .feature-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(173, 216, 230, 0.9) 100%);
  color: #2c3e50;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(173, 216, 230, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-features .feature-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-features .feature-badge:hover::before {
  left: 100%;
}

.hero-features .feature-badge:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 20px rgba(135, 206, 235, 0.4);
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  color: #1a365d;
  will-change: transform;
}

.hero-features .feature-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0.3rem;
  animation: gentlePulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes gentlePulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

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

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.2rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  position: relative;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
}

/* Default desktop styling for button lines */
.btn-line {
  display: inline;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: #2c3e50;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 1);
}

/* ========== AIDA-Enhanced Hero Section Styles ========== */

/* ATTENTION - Hero Announcement */
.hero-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.announcement-badge {
  background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: ctaPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.announcement-text {
  color: #f8f9fa;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* INTEREST - Value Propositions */
.hero-value-props {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-main-desc {
  font-size: 1.3rem !important;
  font-weight: 400;
  margin-bottom: 1.5rem !important;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #e8f4fd;
}

.investment-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.2rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.highlight-icon {
  font-size: 1.2rem;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* DESIRE - Urgency Section */
.hero-urgency {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.urgency-container {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(243, 156, 18, 0.8));
  padding: 1rem 2rem;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: urgencyPulse 3s ease-in-out infinite;
}

.urgency-text {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.urgency-countdown {
  display: block;
  color: #ffe5e5;
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes urgencyPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
  }
}

/* ACTION - Enhanced CTA Buttons */
.btn-primary-cta {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.btn-primary-cta::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.6s ease;
}

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

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.cta-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-subtext {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
}

.btn-secondary-info {
  background: transparent;
  color: #bdc3c7;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-secondary-info:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.info-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-secondary-info:hover .info-icon {
  transform: translateX(5px);
}

/* Enhanced Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  justify-content: center;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.feature-icon {
  font-size: 1.1rem;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease 1s both;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #bdc3c7;
  opacity: 0.8;
}

.trust-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.trust-text {
  transition: color 0.3s ease;
}

.trust-item:hover .trust-text {
  color: #ffffff;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .project-card {
    height: 350px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .project-name {
    font-size: 1.8rem;
  }
}

/* ========== Bootstrap-style Hero Responsive Heights ========== */

/* Large Desktop */
@media (min-width: 1200px) {
  .hero {
    min-height: 820px;
    padding: 110px 0 70px 0;
  }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    min-height: 800px;
    padding: 105px 0 65px 0;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    min-height: 700px;
    padding: 90px 0 50px 0;
  }
}

/* Mobile Large */
@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    min-height: 640px;
    padding: 90px 0 50px 0;
  }
}

/* Mobile Small */
@media (max-width: 575px) {
  .hero {
    min-height: 590px;
    padding: 80px 0 40px 0;
  }
}

/* ========== AIDA Mobile Responsive Styles ========== */
@media (max-width: 768px) {
  .hero-announcement {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .announcement-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .announcement-text {
    font-size: 0.9rem;
  }
  
  .hero-main-desc {
    font-size: 1.1rem !important;
    padding: 0 1rem;
    max-width: calc(100vw - 2rem);
  }
  
  .investment-highlights {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .highlight-item {
    padding: 0.6rem 1rem;
    min-width: auto;
  }
  
  .highlight-text {
    font-size: 0.85rem;
  }
  
  .urgency-container {
    padding: 0.8rem 1.5rem;
    margin: 0 1rem;
  }
  
  .urgency-text {
    font-size: 0.9rem;
  }
  
  .urgency-countdown {
    font-size: 0.8rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
    width: 100%;
  }
  
  .btn-primary-cta,
  .btn-secondary-info {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta-subtext {
    font-size: 0.8rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 1rem;
  }
  
  .feature-item {
    padding: 0.6rem 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  
  .feature-text {
    font-size: 0.8rem;
    white-space: normal;
  }
  
  .hero-trust {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 590px !important;
    padding: 80px 0 40px 0 !important;
  }
  
  .hero-content h1 {
    font-size: 1.1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 1rem;
    margin-bottom: 0.8rem;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
  }

  .hero-content {
    padding: 0;
    text-align: center;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .hero-content p {
    font-size: 0.75rem;
    padding: 0 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: calc(100vw - 2rem);
    word-wrap: break-word;
    box-sizing: border-box;
  }

  .hero-features {
    padding: 0 0.8rem;
    gap: 0.4rem;
    margin-top: 1rem;
    max-width: calc(100vw - 1.6rem);
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .feature-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
  }
  
  .hero-features .feature-badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.4rem;
    border-radius: 10px;
    letter-spacing: 0;
    min-width: auto;
  }
  
  .hero-features .feature-separator {
    font-size: 0.7rem;
    margin: 0;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 0.8rem;
    letter-spacing: -0.3px;
    max-width: calc(100vw - 1.6rem);
  }
  
  .hero-content p {
    font-size: 0.65rem;
    padding: 0 0.8rem;
    line-height: 1.6;
    max-width: calc(100vw - 1.6rem);
  }
  
  .hero-features {
    padding: 0 0.6rem;
    gap: 0.3rem;
    max-width: calc(100vw - 1.2rem);
  }
  
  .feature-line {
    gap: 0.2rem;
  }
  
  .hero-features .feature-badge {
    font-size: 0.5rem;
    padding: 0.2rem 0.35rem;
    border-radius: 8px;
  }
  
  .hero-features .feature-separator {
    font-size: 0.6rem;
  }
}

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

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

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Projects Section Styles */
.projects-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.2rem;
  color: #95a5a6;
  font-weight: 400;
}

/* Project Tabs */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-tab {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  opacity: 0.85;
}

.project-tab.active {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.project-tab:hover {
  transform: scale(1);
  opacity: 0.95;
}

.project-tab.active:hover {
  transform: scale(1.08);
}

/* Background images for each project */
.project-tab[data-project="kebun-teh"] {
  background-image: linear-gradient(
      135deg,
      rgba(25, 75, 120, 0.5) 0%,
      rgba(80, 45, 95, 0.6) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("images/Background/bg2.png");
}

.project-tab[data-project="ciq-project"] {
  background-image: linear-gradient(
      135deg,
      rgba(115, 40, 30, 0.5) 0%,
      rgba(120, 95, 10, 0.6) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("images/Background/bg1.png");
}

.project-tab[data-project="bukit-chagar"] {
  background-image: linear-gradient(
      135deg,
      rgba(25, 100, 60, 0.5) 0%,
      rgba(15, 95, 80, 0.6) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
}

/* Project tab content */
.project-tab-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.85) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  color: white;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.4s ease;
}

.tab-title-main, .tab-title-sub, .tab-title-location {
  display: block;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}

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

.tab-title-sub {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

.tab-title-location {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Active state enhancements */
.project-tab.active .project-tab-content {
  background: linear-gradient(
    transparent 0%,
    rgba(102, 126, 234, 0.3) 20%,
    rgba(102, 126, 234, 0.6) 60%,
    rgba(118, 75, 162, 0.8) 100%
  );
  padding: 2.5rem 1.5rem 2rem;
}

.project-tab.active .tab-title-main {
  font-size: 2.8rem;
  transform: translateY(-8px);
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

.project-tab.active .tab-title-main::after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  margin: 8px auto 0;
  animation: shimmer-underline 3s infinite;
}

@keyframes shimmer-underline {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.project-tab.active .tab-title-sub {
  font-size: 1.5rem;
  transform: translateY(-5px);
  color: #f0f8ff;
}

.project-tab.active .tab-title-location {
  font-size: 0.8rem;
  transform: translateY(-2px);
  color: #e0e8f0;
  opacity: 1;
}

/* Hover effects for better interactivity */
.project-tab:hover .project-tab-content {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

.project-tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.project-tab:hover:before {
  transform: translateX(100%);
}

/* Pulsing effect for active tab */
.project-tab.active {
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
      0 0 50px rgba(102, 126, 234, 0.6), 0 0 80px rgba(102, 126, 234, 0.3);
  }
}

/* Extra glow ring effect */
.project-tab.active::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.3),
    rgba(155, 89, 182, 0.3),
    rgba(102, 126, 234, 0.3)
  );
  border-radius: 25px;
  z-index: -1;
  filter: blur(10px);
  animation: rotateGlow 6s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Project Content */
.project-content {
  margin-top: 3rem;
}

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

.project-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.project-details {
  background: rgba(21, 33, 62, 0.7);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  min-height: 90vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-main-info {
  margin-bottom: 3rem;
}

.project-visual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.project-title-container {
  flex: 1;
}

.project-hero-image {
  max-width: 550px;
  margin: 0;
  margin-left: auto;
}

.project-hero-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.25);
}

.project-hero-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 15px;
}

.project-360-section {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #f8f9fa;
  height: 600px;
}

.project-360-title {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  z-index: 10;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.project-360-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.iframe-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #667eea;
}

.iframe-loading .loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.project-title-main {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
}
.project-title-main::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
  transition: width 0.3s;
}

.project-title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #95a5a6;
}

/* Foreign Ownership Badge Styling */
.ownership-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 10px 0 15px 0;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.ownership-text {
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

@keyframes pulse-glow {
  from {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  to {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  }
}

.project-description p {
  font-size: 1.1rem;
  color: #bdc3c7;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50%;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.features-section-title {
  text-align: center;
  margin: 2rem 0 1.5rem 0;
}

.features-section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
}

.features-section-title h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.features-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
  padding: 0 2rem;
  margin-left: 0;
  margin-right: 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.feature-card-icon {
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}

.feature-card-icon svg {
  width: 36px;
  height: 36px;
  fill: #3498db;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon svg {
  transform: scale(1.1);
}

.feature-card-text {
  color: #bdc3c7;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
  justify-content: flex-start;
  overflow: hidden;
}

.feature-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  flex-shrink: 0;
  max-height: 2.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-card-subtitle {
  font-size: 0.75rem;
  color: #95a5a6;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  flex: 1;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
  margin: 4rem auto;
  width: 70%;
}

/* Project Assets */
.project-assets {
  margin-top: 3rem;
}

.asset-section {
  margin-bottom: 3rem;
}

.asset-section h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

/* Floor Plan Types Selector */
.floor-plan-types {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  margin-bottom: 2rem;
}

.floor-type-btn {
  padding: 0.8rem 1rem;
  border: 2px solid #3498db;
  background: transparent;
  color: #3498db;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.3;
}

.floor-type-btn.active,
.floor-type-btn:hover {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  border-color: transparent;
}

.floor-plan-display {
  background: rgba(21, 33, 62, 0.7);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.floor-plan-image-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 580px;
  margin: 0 auto;
  perspective: 1000px;
  overflow: visible;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-carousel {
  position: relative;
  width: 500px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 500px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.floor-plan-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  pointer-events: auto;
}

.floor-plan-slide.prev {
  opacity: 0.3;
  transform: translate(-130%, -50%) scale(0.85) rotateY(25deg);
  z-index: 1;
  filter: blur(2px);
  pointer-events: none;
}

.floor-plan-slide.next {
  opacity: 0.3;
  transform: translate(30%, -50%) scale(0.85) rotateY(-25deg);
  z-index: 1;
  filter: blur(2px);
  pointer-events: none;
}

.floor-plan-slide.far-prev {
  opacity: 0.1;
  transform: translate(-180%, -50%) scale(0.7) rotateY(45deg);
  z-index: 0;
  filter: blur(4px);
  pointer-events: none;
}

.floor-plan-slide.far-next {
  opacity: 0.1;
  transform: translate(80%, -50%) scale(0.7) rotateY(-45deg);
  z-index: 0;
  filter: blur(4px);
  pointer-events: none;
}

.floor-plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  background: white;
  padding: 0;
  transition: all 0.6s ease;
}

.floor-plan-slide:hover .floor-plan-image {
  transform: scale(1.02);
}

.floor-plan-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(155, 89, 182, 0.9) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.floor-plan-nav:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 1) 0%, rgba(155, 89, 182, 1) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.floor-plan-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.floor-plan-nav.prev {
  left: -6px;
}

.floor-plan-nav.next {
  right: -6px;
}

.floor-plan-info {
  margin-top: 2rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.floor-plan-info.updating {
  opacity: 0;
  transform: translateY(20px);
}

.floor-plan-info h5 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #a7c5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s ease;
}

/* Enhanced floor type buttons */
.floor-type-btn {
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  color: #3498db;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.floor-type-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

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

.floor-type-btn.active {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
  border-color: transparent;
}

.floor-type-btn:hover:not(.active) {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
  color: #ffffff;
}

/* Enhanced detail items with animations */
.floor-plan-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
    padding: 0 0.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.detail-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 1.2rem;
  border-radius: 18px;
  text-align: center;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.detail-icon-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  fill: #ffffff;
}

.detail-icon svg {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.detail-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  line-height: 1;
}

.detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #bdc3c7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-item:hover::before {
  opacity: 1;
}

.detail-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(52, 152, 219, 0.3);
}

.detail-item:hover .detail-number {
  color: #3498db;
  transform: scale(1.1);
}

/* Loading animation for transitions */
.floor-plan-image-container.loading {
  pointer-events: none;
}

.floor-plan-image-container.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(52, 152, 219, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  z-index: 100;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Progress indicator */
.floor-plan-progress {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

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

.progress-dot.active {
  background: #3498db;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}

#ciq-project-gallery,
#kebun-teh-gallery {
  overflow: hidden;
  padding: 1rem 0;
}

.gallery-row {
  display: flex;
  width: calc(20 * var(--gallery-img-width) + 19 * var(--gallery-gap));
  gap: var(--gallery-gap);
}

.gallery-row:hover {
  animation-play-state: paused;
}

.gallery-row.row-1 {
  animation: scroll-l-to-r 80s linear infinite;
}

.gallery-row.row-2 {
  animation: scroll-r-to-l 80s linear infinite;
  padding-top: 1rem;
}

@keyframes scroll-l-to-r {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-10 * var(--gallery-img-width) - 10 * var(--gallery-gap)));
  }
}

@keyframes scroll-r-to-l {
  from {
    transform: translateX(calc(-10 * var(--gallery-img-width) - 10 * var(--gallery-gap)));
  }
  to {
    transform: translateX(0);
  }
}

.gallery-row img {
  height: var(--gallery-img-height);
  width: var(--gallery-img-width);
  object-fit: cover;
  border-radius: 10px;
}

.gallery-images img {
  width: 100%;
  height: var(--gallery-img-height);
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.location-map {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.location-card {
  display: block;
  flex: 1;
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
  background: rgba(255, 255, 255, 0.1);
}

.location-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3498db;
}

.location-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
}

.map-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-placeholder span {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Ripple effect animation */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 640px !important;
    padding: 90px 0 50px 0 !important;
  }
  
  :root {
    --gallery-img-width: 280px;
    --gallery-img-height: 180px;
  }
  .navbar {
    padding: 1rem;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 1rem 0;
  }
  .nav-links a {
    color: #bdc3c7;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
  }
  .menu-toggle {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    line-height: 1.45;
    word-wrap: break-word;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-features {
    margin-top: 1.5rem;
    padding: 0 1rem;
    gap: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .feature-line {
    display: none; /* Hide the original two-line layout on mobile */
  }
  
  .feature-diamond {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }
  
  .feature-top,
  .feature-bottom {
    display: flex;
    justify-content: center;
  }
  
  .feature-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
  }
  
  .feature-line::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .hero-features::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .hero-features .feature-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
    border-radius: 14px;
    letter-spacing: 0.2px;
    min-width: max-content;
    white-space: nowrap;
  }

  .hero-features .feature-separator {
    font-size: 0.9rem;
    margin: 0 0.1rem;
    flex-shrink: 0;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    min-width: 0;
    max-width: 48%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    height: auto;
  }
  
  .btn-line {
    display: block;
    line-height: 1;
  }
  .particle {
    display: none;
  }
  .particle:nth-child(-n + 20) {
    display: block;
  }
  .projects-section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .project-tabs {
    flex-direction: column;
    max-width: 400px;
    width: 90%;
    gap: 1.5rem;
    align-items: center;
  }
  .project-tab {
    height: 140px;
    width: 100%;
    flex: 0 0 auto;
  }
  .project-tab-content {
    padding: 1.5rem 1rem 1.2rem;
  }
  .project-tab-title {
    font-size: 1.3rem;
  }
  .project-tab-subtitle {
    font-size: 0.9rem;
  }
  .project-tab.active .project-tab-title {
    font-size: 1.2rem;
  }
  .project-tab.active .project-tab-subtitle {
    font-size: 0.9rem;
  }
  .project-tab.active .project-tab-content {
    padding: 1.8rem 1rem 1.3rem;
  }
  .project-details {
    padding: 2rem;
  }
  .project-main-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .project-visual-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .project-hero-image img,
  .project-360-section {
    height: 450px;
  }
  .project-360-iframe {
    height: 450px;
  }
  .floor-plan-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
  .floor-type-btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    min-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }
  .project-features {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .feature-item {
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    white-space: normal;
    min-width: initial;
  }
  .feature-icon {
    font-size: 0.9rem;
  }
  .floor-plan-display {
    padding: 2rem;
    min-height: 400px;
  }
  .floor-plan-image {
    height: 250px;
  }
  .floor-plan-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
  }
  .detail-item {
    width: auto;
    height: auto;
    min-height: auto;
    padding: 0.8rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
  }
  .detail-item .detail-number {
    font-size: 1.4rem;
  }
  .detail-item .detail-label {
    font-size: 0.7rem;
    white-space: nowrap;
  }
  .detail-icon-number {
    gap: 0.4rem;
    align-items: center;
    flex-direction: row;
  }
  .detail-icon img {
    width: 24px;
    height: 24px;
  }
  .features-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 0.5rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    height: auto;
    min-height: 220px;
    max-height: 250px;
    padding: 1.2rem 1rem;
    overflow: hidden;
  }
  
  .feature-card-icon {
    margin-bottom: 0.8rem;
    flex-shrink: 0;
  }

  .feature-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-card-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 600;
    max-height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .feature-card-subtitle {
    font-size: 0.65rem;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    flex: 1;
  }
  
  .gallery-images {
    display: grid;
    grid-template-columns: 1fr;
  }
  .location-map {
    flex-direction: column;
    gap: 1rem;
  }
  .map-placeholder {
    padding: 1rem;
    height: 100%;
  }
  .map-placeholder span {
    font-size: 0.9rem;
  }
  .map-placeholder p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .project-description p {
    max-width: 100%;
    text-align: center;
  }
  #ciq-project-gallery,
  #kebun-teh-gallery {
    overflow: hidden;
  }
  .gallery-row {
    animation-duration: 60s; /* Speed up for smaller track */
  }
  .is-clone {
    display: inline-block;
  }
  .features-section-title h3 {
    font-size: 1.5rem;
  }
  .project-intro-row {
    flex-direction: column;
    align-items: stretch;
  }
  .project-title-container {
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .project-title-main {
    order: 1;
  }
  
  /* Mobile responsive for ownership badge */
  .ownership-badge {
    padding: 6px 12px;
    margin: 8px 0 12px 0;
    order: 1.5;
  }
  
  .ownership-text {
    font-size: 0.8rem;
  }
  
  .project-hero-image {
    order: 2;
    margin-left: 0;
    margin-top: 1.2em;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .project-price-highlight {
    order: 3;
  }
  .project-description-points {
    order: 4;
  }
  .cta-animated-btn {
    order: 5;
  }
  
  /* Legacy price styling for compatibility */
  .project-price {
    order: 3;
  }
  .project-title-container p:not(.project-price) {
    order: 4;
  }
  
  .project-hero-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
  .site-footer {
    padding: 3rem 0 2rem 0;
    margin-top: 1.5rem;
  }

  /* Remove main card styling on mobile for full width */
  .project-details {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 1rem 0.5rem !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    min-height: auto !important;
    border: none !important;
  }

  .floor-plan-display {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 1rem 0.5rem !important;
    box-shadow: none !important;
    border: none !important;
    min-height: auto !important;
  }
  
  /* Mobile-specific floor plan adjustments */
  .floor-plan-image-container {
    height: 500px;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .floor-plan-carousel {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  
  .floor-plan-slide {
    width: calc(100vw - 60px);
    max-width: 350px;
    height: 410px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .floor-plan-slide.active {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .floor-plan-slide.prev,
  .floor-plan-slide.next,
  .floor-plan-slide.far-prev,
  .floor-plan-slide.far-next {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  
  .floor-plan-image {
    object-fit: contain;
    padding: 0.5rem;
    width: 100%;
    height: 100%;
  }
  
  /* Mobile navigation adjustments - rectangular buttons below image */
  .floor-plan-image-container {
    margin-bottom: 80px;
  }
  
  .floor-plan-nav {
    position: absolute;
    top: auto;
    bottom: -60px;
    transform: translateY(0);
    width: 120px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(155, 89, 182, 0.9) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .floor-plan-nav:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 1) 0%, rgba(155, 89, 182, 1) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
  }
  
  .floor-plan-nav.prev {
    left: 10%;
  }
  
  .floor-plan-nav.next {
    right: 10%;
  }
  

  
  /* Mobile price styling - display on two lines */
  .price-label {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .price-value {
    display: block;
    margin-left: 0;
  }
}

.project-price {
  display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.4em 1.2em;
  border-radius: 25px;
  margin: 0.5em 0 1em 0;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.10);
}

.project-title-container p {
  max-width: 85%;
  margin-left: 0;
  margin-right: auto;
}

.cta-animated-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7em 2em;
  border: none;
  border-radius: 30px;
  margin-top: 1.2em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: ctaPulse 2s infinite alternate;
  text-decoration: none;
}
.cta-animated-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.28);
  background: linear-gradient(135deg, #2980b9 0%, #8e44ad 100%);
}
@keyframes ctaPulse {
  0% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.18); }
  100% { box-shadow: 0 8px 30px rgba(102, 126, 234, 0.32); }
}
.cta-icon {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  animation: iconBounce 1.2s infinite alternate;
}
@keyframes iconBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

.price-label {
  font-size: 1.2rem;
  font-weight: 700;
}
.price-value {
  font-size: 1.7rem;
  font-weight: 800;
  margin-left: 0.5em;
  letter-spacing: 1px;
}

.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e0e6ed;
  padding: 3rem 0 2rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.site-footer::after {
  display: none;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: 0.7fr 0.6fr 1.7fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
  max-width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.footer-col-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  border-radius: 2px;
}

/* Contact Section */
.footer-contact-social {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.footer-contact {
  margin-bottom: 2rem;
  flex: 1;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.footer-contact strong {
  color: #3498db;
  font-weight: 600;
  min-width: 60px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #3498db;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #8e44ad);
}

/* Navigation Section */
.footer-nav-col {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.footer-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-nav-list a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #3498db;
  font-weight: bold;
}

.footer-nav-list a:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateX(5px);
}

.footer-nav-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Locations Section */
.footer-locations-col {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.footer-location-groups-wrapper {
  display: flex;
  gap: 2rem;
  flex: 1;
  align-items: stretch;
}

.footer-location-group {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-location-group:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-location-group:last-child {
  margin-bottom: 0;
  border-left-color: #9b59b6;
}

.footer-location-title {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.footer-location-title::before {
  content: '📍';
  font-size: 1.2rem;
}

.footer-location-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-location-link:hover {
  color: #3498db;
  transform: translateY(-1px);
}

.footer-location-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  transition: width 0.3s ease;
}

.footer-location-link:hover::after {
  width: 100%;
}

.footer-location-item {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.footer-location-item::before {
  content: '•';
  position: absolute;
  left: 0.8rem;
  color: #3498db;
  font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
}

.footer-brand {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 1rem;
  color: #95a5a6;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-locations-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 2rem 0;
    margin-top: 1.5rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-contact-social,
  .footer-nav-col,
  .footer-locations-col {
    padding: 1.5rem;
  }
  
  .footer-location-groups-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-location-group {
    text-align: left;
  }
  
  .footer-brand {
    font-size: 1.8rem;
  }
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 4rem 0;
  color: #e0e6ed;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #e0e6ed;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: #e0e6ed;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(224, 230, 237, 0.6);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a2e;
  color: #e0e6ed;
  padding: 0.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
}

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

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

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-section {
    padding: 2.5rem 0;
  }
  
  .contact-form-container {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    max-width: calc(100% - 2rem);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .form-submit {
    margin-top: 2rem;
  }
  
  .submit-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-form-container {
    margin: 0 0.8rem;
    padding: 1.8rem 1.2rem;
    border-radius: 12px;
    max-width: calc(100% - 1.6rem);
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .form-row {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .form-group label {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  
  .form-group textarea {
    min-height: 90px;
  }
  
  .form-submit {
    margin-top: 1.8rem;
  }
  
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    min-width: 180px;
    gap: 0.6rem;
  }
  
  .btn-icon {
    font-size: 1.1rem;
  }
}

/* Conditional citizenship input styling */
#otherCitizenship {
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

#otherCitizenship::placeholder {
  color: rgba(224, 230, 237, 0.5);
  font-style: italic;
}

.project-price {
  order: 3;
}

.price-label {
  display: block;
  margin-bottom: 0.2rem;
}

.price-value {
  display: block;
  margin-left: 0;
}

.project-title-container p:not(.project-price) {
  order: 4;
}

.project-tab.active .project-tab-title {
  font-size: 1.2rem;
}
.project-tab.active .project-tab-subtitle {
  font-size: 0.9rem;
}
.project-tab.active .project-tab-content {
  padding: 1.8rem 1rem 1.3rem;
}

/* Reduce active tab text size for mobile */
.project-tab.active .tab-title-main {
  font-size: 1.4rem;
}

.project-tab.active .tab-title-sub {
  font-size: 1.0rem;
}

.project-tab.active .tab-title-location {
  font-size: 0.8rem;
}

.project-price-highlight {
  margin: 1.5rem 0;
  text-align: left;
}

.project-price-highlight .price-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #95a5a6;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-price-highlight .price-value {
  display: block;
  font-size: 3.0rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
  position: relative;
}

.project-price-highlight .price-value::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
}

.project-description-points {
  margin: 1rem 0;
}

.project-description-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-description-points li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #bdc3c7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.project-description-points li:last-child {
  border-bottom: none;
}

.project-description-points li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: #3498db;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.project-description-points li:hover {
  color: #ffffff;
  padding-left: 2.5rem;
  transform: translateX(5px);
}

.project-description-points li:hover::before {
  color: #9b59b6;
  transform: scale(1.2);
}

/* Desktop specific gallery sizing */
@media (min-width: 769px) {
  :root {
    --gallery-img-width: 280px;
    --gallery-img-height: 230px;
  }
  
  .feature-diamond {
    display: none; /* Hide diamond layout on desktop */
  }
  
  .feature-line {
    display: flex; /* Show original two-line layout on desktop */
  }
}

@media (max-width: 768px) {
  :root {
    --gallery-img-width: 280px;
    --gallery-img-height: 180px;
  }
}

/* Header navigation specific styling for Book Viewing button */
.nav-links .btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-transform: none;
  letter-spacing: 0;
  overflow: hidden;
}

.nav-links .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.nav-links .btn-secondary:hover::before {
  width: 100%;
}

.nav-links .btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav-links .btn-secondary:hover::after {
  width: 0;
}

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-widget {
  position: fixed;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
  color: white !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 9999 !important;
}

.floating-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.floating-widget:hover::before {
  width: 100%;
}

.floating-widget:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(39, 174, 96, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.floating-widget svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  fill: white !important;
  color: white !important;
}

.floating-widget:hover svg {
  transform: scale(1.1);
}

/* Phone Widget - Bottom Left */
.phone-widget {
  bottom: 30px !important;
  left: 30px !important;
  animation: pulseLeft 3s ease-in-out infinite;
}

/* WhatsApp Widget - Bottom Right */
.whatsapp-widget {
  bottom: 30px !important;
  right: 30px !important;
  animation: pulseRight 3s ease-in-out infinite;
}

/* Pulse animations */
@keyframes pulseLeft {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 0 rgba(39, 174, 96, 0.7);
  }
  100% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 20px rgba(39, 174, 96, 0);
  }
}

@keyframes pulseRight {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  100% {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4), 0 0 0 20px rgba(46, 204, 113, 0);
  }
}

/* Mobile responsiveness for widgets */
@media (max-width: 768px) {
  .floating-widget {
    width: 55px;
    height: 55px;
  }
  
  .floating-widget svg {
    width: 24px;
    height: 24px;
  }
  
  .phone-widget {
    bottom: 20px !important;
    left: 20px !important;
  }
  
  .whatsapp-widget {
    bottom: 20px !important;
    right: 20px !important;
  }
}

.nav-links .btn-secondary:hover::after {
  width: 0;
}

/* Hero Section Enhanced Text Styling */
.hero-location {
  font-size: 1rem;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(52, 152, 219, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(52, 152, 219, 0.3);
  backdrop-filter: blur(10px);
  display: inline-block;
  animation: locationPulse 3s ease-in-out infinite;
}

@keyframes locationPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.5);
  }
}

.hero-subheading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #ffffff;
}

/* Mobile responsiveness for hero text */
@media (max-width: 768px) {
  .hero {
    min-height: 640px !important;
    padding: 90px 0 50px 0 !important;
  }
  
  .hero-location {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .key-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto;
  }
  
  .key-info li {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    min-width: 200px;
    width: 90%;
    max-width: 300px;
  }
  
  .key-info li::before {
    left: 0.8rem;
    font-size: 1rem;
  }
  
  .hero-price p {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 200px;
    text-align: center;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  animation: heroEntrance 1.5s ease-out;
}

.hero-location {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  animation: locationPulse 3s ease-in-out infinite;
}

.hero-subheading {
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.key-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem auto;
  list-style: none;
  padding: 0;
  max-width: 900px;
  flex-wrap: wrap;
}

.key-info li {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 1rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  text-align: center;
}

.key-info li::before {
  content: "✦";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3498db;
  font-size: 1.2rem;
  font-weight: bold;
}

.key-info li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-price {
  margin: 2.5rem auto;
}

.hero-price p {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* AIDA Marketing Funnel Styles */

/* Marketing Badges Container */
.marketing-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.marketing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s infinite;
  white-space: nowrap;
}

.marketing-badge.hot-selling {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.marketing-badge.best-price {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.marketing-badge.limited-time {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Enhanced Title Section */
.title-with-badge {
  margin-bottom: 12px;
}

.investment-highlight {
  display: block;
  font-size: 1rem;
  color: #007bff;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}

/* Enhanced Price Section - Dark Theme */
.project-price-highlight.enhanced {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px solid #00d4ff;
  border-radius: 16px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.project-price-highlight.enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: shimmerTop 3s infinite;
}

@keyframes shimmerTop {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.enhanced .price-label {
  color: #b0b8c5;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.enhanced .price-value {
  color: #ffffff;
  font-size: 3.0rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
  margin-bottom: 10px;
}

.price-with-badge {
  display: flex;
  align-items: center;
  gap: 360px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .price-with-badge {
    gap: 15px;
  }
}

.price-with-badge .marketing-badge {
  margin: 0;
  animation: badgePulse 2s infinite;
}

.price-savings {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #1a1a2e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 8px;
  animation: savingsPulse 2s infinite;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes savingsPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
  }
}

.investment-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding-top: 20px;
  margin-top: 5px;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.indicator-item:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.indicator-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.indicator-text {
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced Description */
.project-description-points.enhanced ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.project-description-points.enhanced ul li strong {
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

/* Social Proof Section - Dark Theme */
.social-proof-section {
  background: linear-gradient(135deg, #0f1419, #1a1a2e);
  border-radius: 16px;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #00d4ff, #00ff88);
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.proof-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  background: rgba(0, 212, 255, 0.05);
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.stat-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
  animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% { filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6)); }
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: #b0b8c5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  width: 100%;
}

.cta-section.side-by-side {
  flex-direction: row;
  gap: 20px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.cta-section.side-by-side .cta-primary-btn,
.cta-section.side-by-side .cta-secondary-btn {
  flex: 1;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: none;
}

.cta-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 18px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  max-width: 500px;
  margin: 0;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  color: white;
  text-decoration: none;
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .cta-primary-btn {
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    text-align: center;
  }
  
  .cta-primary-btn .cta-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .cta-primary-btn .cta-subtext {
    margin-top: 2px;
  }
}

.cta-subtext {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 400;
}

.cta-secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #007bff;
  padding: 15px 25px;
  border: 2px solid #007bff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Image Overlay Badge */
.project-hero-image {
  position: relative;
}

.image-overlay-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
  animation: overlayFloat 3s ease-in-out infinite, hotSellingPulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
  overflow: hidden;
  z-index: 10;
}

.image-overlay-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerHot 2.5s ease-in-out infinite;
}

@keyframes hotSellingPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
  }
}

@keyframes shimmerHot {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes overlayFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Responsive Design - Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .marketing-badges-container {
    justify-content: center;
  }
  
  .marketing-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .investment-indicators {
    flex-direction: column;
    gap: 10px;
  }
  
  .proof-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .cta-section {
    gap: 12px;
  }
  
  .cta-section.side-by-side {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-primary-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .image-overlay-badge {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .marketing-badges-container {
    justify-content: flex-start;
  }
  
  .investment-indicators {
    justify-content: space-between;
  }
  
  .indicator-item {
    flex: 1;
    justify-content: center;
  }
  
  .proof-stats {
    justify-content: space-between;
  }
  
  .cta-section {
    flex-direction: row;
    gap: 15px;
  }
  
  .cta-primary-btn, .cta-secondary-btn {
    flex: 1;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .marketing-badges-container {
    gap: 15px;
  }
  
  .marketing-badge {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
  
  .investment-indicators {
    justify-content: space-around;
  }
  
  .proof-stats {
    justify-content: space-around;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .marketing-badges-container {
    gap: 18px;
  }
  
  .marketing-badge {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  
  .cta-section {
    flex-direction: row;
    gap: 20px;
  }
  
  .cta-primary-btn {
    flex: 2;
  }
  
  .cta-secondary-btn {
    flex: 1;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .marketing-badges-container {
    gap: 20px;
  }
  
  .marketing-badge {
    font-size: 1rem;
    padding: 12px 24px;
  }
  
  .investment-indicators {
    justify-content: flex-start;
    gap: 25px;
  }
  
  .proof-stats {
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Mobile/Desktop Image Control for CIQ Project */
.mobile-image {
  display: none;
}

.desktop-image {
  display: block;
}

/* Remove border and background for both projects pricing */
#ciq-project .project-price-highlight.enhanced,
#kebun-teh .project-price-highlight.enhanced {
  border: none;
  box-shadow: none;
  background: transparent;
}

#ciq-project .project-price-highlight.enhanced::before,
#kebun-teh .project-price-highlight.enhanced::before {
  display: none;
}

/* Show mobile image and hide desktop image on mobile devices */
@media (max-width: 768px) {
  .mobile-image {
    display: block;
    margin: 15px 0;
    text-align: center;
  }
  
  .desktop-image {
    display: none;
  }
  
  .project-title-section {
    margin-bottom: 20px;
  }
  
  .mobile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Reorder elements on mobile - description points should come before CTA button */
  .project-title-container {
    display: flex;
    flex-direction: column;
  }
  
  .project-description-points.enhanced {
    order: 3;
  }
  
  .cta-section {
    order: 4;
  }
  
  .project-price-highlight.enhanced {
    order: 2;
  }
  
  .project-title-section {
    order: 1;
  }
  
  /* Make CTA button smaller on mobile */
  .cta-primary-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    max-width: 100%;
    width: 100%;
  }
  
  .cta-primary-btn .cta-text {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .cta-primary-btn .cta-subtext {
    font-size: 0.75rem;
  }
  
  .cta-primary-btn .cta-icon {
    font-size: 1rem;
  }
}

/* ===========================
   Discover Other Projects Section
   =========================== */

.other-projects-section {
  padding: 100px 0;
  background: linear-gradient(135deg, 
    var(--bg-primary) 0%, 
    #f8fafc 50%, 
    var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.other-projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.1"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Carousel Wrapper - contains buttons and carousel */
.carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 0; /* Full width - no padding */
}

/* Projects Carousel Container */
.projects-carousel-container {
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.other-projects-carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: calc(50% - 50px);
  transform: translateY(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-nav:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:disabled {
  background: rgba(156, 163, 175, 0.3);
  color: rgba(156, 163, 175, 0.6);
  border-color: rgba(156, 163, 175, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

.carousel-nav.prev-btn {
  left: 20px;
}

.carousel-nav.next-btn {
  right: 20px;
}

.project-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.3);
  flex: 0 0 420px;
  min-width: 420px;
  height: 600px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 1;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
  border-color: rgba(59, 130, 246, 0.6);
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px 15px 0 0;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.7);
  transform: scale(1.1);
  z-index: 1;
}

.project-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  z-index: 2;
  background: transparent;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.project-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
}

.project-status {
  background: linear-gradient(135deg, var(--primary-color), #4f46e5);
  color: white;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  animation: statusGlow 2s ease-in-out infinite alternate;
}

@keyframes statusGlow {
  0% { 
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: scale(1);
  }
  100% { 
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    transform: scale(1.05);
  }
}

/* Status color variations */
.project-status:contains("Coming Soon") {
  background: linear-gradient(135deg, #10b981, #059669);
}

.project-status:contains("Hot Selling") {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.project-status:contains("Exclusive") {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.project-status:contains("Investment") {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.project-status:contains("Available") {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.project-info {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.project-location {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.project-location::before {
  content: '📍';
  margin-right: 0.5rem;
}

.project-description {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.project-price {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.project-card .price-label {
  display: block;
  font-size: 0.8rem;
  color: #bdc3c7;
  font-weight: 500;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card .price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary-small {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: inline-block;
}

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

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

.btn-primary-small:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Other Projects CTA Section */
.other-projects-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  border: 2px dashed rgba(59, 130, 246, 0.4);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.other-projects-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.1) 49%, rgba(59, 130, 246, 0.1) 51%, transparent 52%);
  border-radius: 18px;
  animation: movingStripes 3s linear infinite;
}

@keyframes movingStripes {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

.other-projects-cta p {
  font-size: 1.1rem;
  color: #bdc3c7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .other-projects-section {
    padding: 60px 0;
  }
  
  .carousel-wrapper {
    margin-top: 2rem;
    padding: 0;
  }
  
  .projects-carousel-container {
    max-width: none;
  }
  
  .other-projects-carousel {
    gap: 20px;
  }
  
  .project-card {
    flex: 0 0 calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    height: 520px;
  }
  
  .project-image {
    height: 220px;
  }
  
  .project-info {
    padding: 1rem;
  }
  
  .project-name {
    font-size: 1.1rem;
  }
  
  .carousel-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: calc(50% - 40px);
  }
  
  .carousel-nav.prev-btn {
    left: 15px;
  }
  
  .carousel-nav.next-btn {
    right: 15px;
  }
  
  .project-card {
    border-radius: 15px;
  }
  
  .project-image {
    height: 240px;
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-name {
    font-size: 1.2rem;
  }
  
  .project-card .price-value {
    font-size: 1.5rem;
  }
  
  .other-projects-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
  
  .other-projects-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    margin-top: 1rem;
    padding: 0;
  }
  
  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
    top: calc(50% - 35px);
  }
  
  .carousel-nav.prev-btn {
    left: 10px;
  }
  
  .carousel-nav.next-btn {
    right: 10px;
  }
  
  .project-card {
    border-radius: 12px;
  }
  
  .project-image {
    height: 220px;
  }
  
  .project-info {
    padding: 1.2rem;
  }
  
  .project-name {
    font-size: 1.1rem;
  }
  
  .project-price {
    padding: 0.8rem;
  }
  
  .btn-primary-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .other-projects-cta {
    padding: 1.5rem 1rem;
  }
}
