/* ==========================================================================
   Gayana Terrace Landing Page Styles
   ========================================================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Loading Screen
   ========================================================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9fc5b6 0%, #7ab8a3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
  color: white;
}

.logo-loader {
  font-family: "Audiowide", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  font-family: "Audiowide", sans-serif;
  color: #9fc5b6;
  font-weight: 400;
  font-size: 1.3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #9fc5b6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9fc5b6;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #f0f8f5 25%,
    #e8f5f0 50%,
    #f5f9ff 75%,
    #f8f9fa 100%
  );
  padding: 120px 0 40px;
  overflow: hidden;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-column {
  padding-right: 2rem;
}

.hero-tagline {
  margin-bottom: 1.5rem;
}

.tagline-text {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.brand-highlight {
  color: #9fc5b6;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-location {
  background: transparent;
  color: #9fc5b6;
  border: 2px solid #9fc5b6;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-location::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239fc5b6"><path d="M12 2L13.5 8.5L20 10L13.5 11.5L12 18L10.5 11.5L4 10L10.5 8.5L12 2Z"/></svg>')
    no-repeat center;
  background-size: contain;
}

.btn-location:hover {
  background: #9fc5b6;
  color: white;
  transform: translateY(-2px);
}

.hero-image-column {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(159, 197, 182, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: -15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-90deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(44, 62, 80, 0.3);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(44, 62, 80, 0.3);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #9fc5b6 0%, #7ab8a3 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(159, 197, 182, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(159, 197, 182, 0.6);
}

.btn-outline {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn-outline:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

/* .section-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
} */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.about-text h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #666;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-item h4 {
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.about-image {
  position: relative;
}

.image-placeholder {
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: #999;
  border: 2px dashed #ccc;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9fc5b6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */
.advantages {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5f9ff 30%,
    #e8f4f8 70%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    rgba(159, 197, 182, 0.1),
    rgba(122, 184, 163, 0.05)
  );
  border-radius: 50%;
  transform: rotate(45deg);
}

.advantages::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    45deg,
    rgba(159, 197, 182, 0.08),
    rgba(122, 184, 163, 0.03)
  );
  border-radius: 50%;
  transform: rotate(-30deg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(159, 197, 182, 0.1);
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
}

.advantage-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border-color: rgba(159, 197, 182, 0.3);
}

.advantage-card:hover::after {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.1) 0%,
    transparent 70%
  );
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   Units Section
   ========================================================================== */
.units {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f3e8 0%, #f0f8f5 50%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
}

.units::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.03) 0%,
    transparent 60%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.unit-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.unit-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.unit-image .image-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  border: none;
  border-radius: 0;
}

.unit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #9fc5b6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.unit-badge-premium {
  background: #ffd700;
  color: #2c3e50;
}

.unit-content {
  padding: 2rem;
}

.unit-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.unit-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.spec-item i {
  color: #9fc5b6;
  width: 16px;
}

.unit-price {
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9fc5b6;
}

.unit-btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fdf8f0 0%, #f0f8f5 50%, #e8f4f8 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-map {
  position: relative;
}

.map-placeholder {
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: #999;
  border: 2px dashed #ccc;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-info h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.access-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: 30px;
  background: #9fc5b6;
}

.timeline-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.timeline-content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Siteplan Section */
.siteplan-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}

.siteplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.siteplan-item {
  position: relative;
}

.siteplan-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.siteplan-image img {
  transition: transform 0.3s ease;
}

.siteplan-image:hover img {
  transform: scale(1.05);
}

.siteplan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.siteplan-image:hover .siteplan-overlay {
  opacity: 1;
}

.siteplan-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.siteplan-info p {
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5f0ff 30%,
    #ebe8ff 70%,
    #f8f9fa 100%
  );
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #9fc5b6;
  background: transparent;
  color: #9fc5b6;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #9fc5b6;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  border-radius: 12px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(159, 197, 182, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  color: #9fc5b6;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #fef9e8 0%,
    #f8f3e8 30%,
    #f0f8f5 70%,
    #e8f5f0 100%
  );
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0 0.1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.author-info h4 {
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background: #9fc5b6;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #7ab8a3;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #9fc5b6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatReverse 8s ease-in-out infinite;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(159, 197, 182, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(159, 197, 182, 0.4);
}

.contact-form {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9fc5b6;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-section {
  background: linear-gradient(135deg, #9fc5b6, #7ab8a3);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #2c3e50;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #9fc5b6;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9fc5b6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: #9fc5b6;
  width: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
}

.newsletter-form button {
  padding: 0.75rem 1rem;
  background: #9fc5b6;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #7ab8a3;
}

.footer-bottom {
  border-top: 1px solid #404040;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #9fc5b6;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
  font-size: 0.9rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.back-to-top {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #9fc5b6;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #7ab8a3;
  transform: translateY(-3px);
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  margin: 2% auto;
  padding: 2.5rem;
  width: 98%;
  max-width: 1400px;
  border-radius: 12px;
  max-height: 95vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #2c3e50;
}

.lightbox .modal-content {
  background: transparent;
  padding: 0;
  max-width: 90%;
  max-height: 90%;
  margin: 5vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  background: transparent;
  padding: 2rem;
  max-width: 100%;
  max-height: 90vh;
}

.lightbox-image {
  text-align: center;
  position: relative;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-image p {
  color: white;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.lightbox .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox .modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Unit Modal Specific Styles */
.unit-modal-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 1.5rem;
}

.unit-modal-header h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.unit-modal-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 0;
}

.unit-modal-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.unit-modal-gallery {
  position: relative;
}

.main-image {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.image-thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.05);
}

.unit-modal-details {
  padding-left: 1rem;
}

.unit-modal-specs {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: #495057;
}

.spec-value {
  font-weight: 600;
  color: var(--dark-color);
}

.unit-modal-description,
.unit-modal-features {
  margin-bottom: 1.5rem;
}

.unit-modal-description h4,
.unit-modal-features h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.unit-modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unit-modal-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.unit-modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.unit-modal-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.unit-modal-actions .btn {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  min-width: 200px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-content-wrapper {
    gap: 3rem;
  }

  .hero-text-column {
    padding-right: 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    height: 400px;
  }

  .about-content,
  .location-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .units-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
  }

  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .nav-container {
    max-width: none;
    padding: 1rem;
    margin: 0;
    width: 100%;
  }

  .navbar {
    width: 100%;
    left: 0;
    right: 0;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 80px 0 40px;
    overflow-x: hidden;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text-column {
    padding-right: 0;
    order: 1;
    padding: 0 10px;
  }

  .hero-image-column {
    order: 2;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    height: 240px;
    border-radius: 12px;
  }

  .hero-image-container {
    margin: 0;
    max-width: 100%;
  }

  .floating-shapes {
    display: none;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .btn {
    min-width: 200px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-header {
    padding: 0 10px;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text,
  .about-content {
    padding: 0 10px;
  }

  .units-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .siteplan-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .siteplan-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .testimonial-content {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-content {
    padding: 0 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    font-size: 1.5rem;
  }

  .modal-content {
    margin: 5% auto;
    padding: 2rem;
    width: 98%;
    max-height: 95vh;
  }

  /* Lightbox Mobile Styles */
  .lightbox .modal-content {
    margin: 2vh auto;
    padding: 0;
    width: 98%;
    max-width: 98%;
    max-height: 96vh;
  }

  .lightbox-content {
    padding: 1rem;
    max-height: 94vh;
  }

  .lightbox-image img {
    max-height: 70vh;
  }

  .lightbox .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .lightbox-image p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  /* Unit Modal Mobile Styles */
  .unit-modal-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .unit-modal-details {
    padding-left: 0;
  }

  .main-image img {
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
  }

  .unit-modal-actions {
    flex-direction: column;
  }

  .unit-modal-actions .btn {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .advantage-card {
    padding: 2rem 1.5rem;
  }

  .unit-content,
  .testimonial-content {
    padding: 1.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Animation Classes
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .modal {
    display: none !important;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .hero-background {
    display: none;
  }

  .hero-text {
    color: #2c3e50;
  }

  section {
    page-break-inside: avoid;
    padding: 2rem 0;
  }

  .btn {
    display: none;
  }
}
