/* ============================================
   Valley Creek Estates - Main Stylesheet
   ============================================ */

/* CSS Variables - Theme Colors from Logo */
:root {
  --green-dark: #2a7d4f;
  --green-primary: #4caf7a;
  --green-light: #8ed4a8;
  --green-pale: #e8f7ed;
  --blue-primary: #4a90d9;
  --blue-light: #7ab8f5;
  --blue-pale: #e3f2fd;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #343a40;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: 
    linear-gradient(180deg, 
      rgba(209, 250, 229, 0.7) 0%, 
      rgba(110, 231, 183, 0.5) 15%, 
      rgba(94, 187, 234, 0.5) 35%, 
      rgba(56, 189, 248, 0.4) 55%, 
      rgba(30, 144, 255, 0.5) 75%, 
      rgba(209, 250, 229, 0.6) 100%
    );
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,50 Q120,30 240,50 T480,50 T720,50 T960,50 T1200,50 T1440,50' stroke='rgba(255,255,255,0.3)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,70 Q120,90 240,70 T480,70 T720,70 T960,70 T1200,70 T1440,70' stroke='rgba(255,255,255,0.2)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,30 Q120,10 240,30 T480,30 T720,30 T960,30 T1200,30 T1440,30' stroke='rgba(255,255,255,0.15)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 720px 100px;
  pointer-events: none;
  z-index: 0;
  animation: flowBodyCreek 12s linear infinite;
  opacity: 0.6;
}

@keyframes flowBodyCreek {
  0% { background-position: 0 0; }
  100% { background-position: 720px 0; }
}


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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #0d2818;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.2rem, 5vw, 3.8rem); 
  font-weight: 700;
}
h2 { 
  font-size: clamp(1.9rem, 4vw, 2.8rem); 
  font-weight: 700;
}
h3 { 
  font-size: clamp(1.3rem, 3vw, 1.6rem); 
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  color: #3d5a4c;
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::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 ease;
}

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

.btn-primary {
  background: #1E90FF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 0.95rem;
  border: 2px solid #000000;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #0077DD;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: #1E90FF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 0.95rem;
  border: 2px solid #1E90FF;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #1E90FF;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 2px solid #000000;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.btn-outline:hover {
  background: #ffffff;
  color: #1E90FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  height: 120px;
  transition: all var(--transition-normal);
  background: linear-gradient(90deg, 
    #ffffff 0%, 
    #f0fdf4 10%, 
    #d1fae5 20%, 
    #6ee7b7 35%, 
    #34d399 45%, 
    #5ebbea 55%, 
    #38bdf8 65%, 
    #1E90FF 80%, 
    #0284c7 100%
  );
  border-bottom: 4px solid #4a9f4a;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  overflow: visible;
}

/* Animated creek water effect */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 35px;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath d='M0,30 Q60,20 120,30 T240,30 T360,30 T480,30 T600,30 T720,30 T840,30 T960,30 T1080,30 T1200,30 T1320,30 T1440,30' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,40 Q60,50 120,40 T240,40 T360,40 T480,40 T600,40 T720,40 T840,40 T960,40 T1080,40 T1200,40 T1320,40 T1440,40' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,20 Q60,10 120,20 T240,20 T360,20 T480,20 T600,20 T720,20 T840,20 T960,20 T1080,20 T1200,20 T1320,20 T1440,20' stroke='rgba(255,255,255,0.25)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 720px 60px;
  z-index: 0;
  pointer-events: none;
  animation: flowCreek 8s linear infinite;
  opacity: 0.8;
}

@keyframes flowCreek {
  0% { background-position: 0 0; }
  100% { background-position: 720px 0; }
}

/* Forest bottom border with trees */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 35'%3E%3Cpath d='M0,35 L10,35 L15,12 L20,35 L30,35 L35,18 L40,35 L50,35 L55,8 L60,35 L70,35 L75,15 L80,35 L90,35 L95,10 L100,35 L110,35 L115,20 L120,35 L130,35 L135,6 L140,35 L150,35 L155,14 L160,35 L170,35 L175,18 L180,35 L190,35 L195,11 L200,35 Z' fill='%231b5e20'/%3E%3Cpath d='M5,35 L15,35 L20,20 L25,35 L35,35 L40,24 L45,35 L55,35 L60,16 L65,35 L75,35 L80,22 L85,35 L95,35 L100,18 L105,35 L115,35 L120,25 L125,35 L135,35 L140,14 L145,35 L155,35 L160,20 L165,35 L175,35 L180,23 L185,35 L195,35 L200,18 L200,35 Z' fill='%232e7d32' opacity='0.85'/%3E%3Cpath d='M0,35 L8,35 L12,25 L16,35 L28,35 L32,28 L36,35 L48,35 L52,22 L56,35 L68,35 L72,26 L76,35 L88,35 L92,23 L96,35 L108,35 L112,28 L116,35 L128,35 L132,20 L136,35 L148,35 L152,25 L156,35 L168,35 L172,27 L176,35 L188,35 L192,24 L196,35 L200,35 Z' fill='%2343a047' opacity='0.6'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 35px;
  z-index: 1;
  pointer-events: none;
}

/* Creek sparkle highlights */
.navbar .nav-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 0;
  bottom: 35px;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.6) 0%, transparent 8%),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.4) 0%, transparent 6%),
    radial-gradient(circle at 60% 60%, rgba(255,255,255,0.5) 0%, transparent 7%),
    radial-gradient(circle at 75% 40%, rgba(255,255,255,0.4) 0%, transparent 5%),
    radial-gradient(circle at 90% 55%, rgba(255,255,255,0.5) 0%, transparent 6%);
  z-index: 0;
  pointer-events: none;
  animation: shimmerWater 4s ease-in-out infinite;
}

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

.navbar.scrolled {
  padding: 5px 0;
  height: 100px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-logo img {
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
  min-height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-logo img {
  height: 104px;
  width: auto;
  transition: all var(--transition-normal);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  position: relative;
  z-index: 1001;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-logo span {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 15;
}

.nav-links a {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  color: #1b5e20;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #000000;
  backdrop-filter: blur(5px);
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: #1b5e20;
  border-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(0);
}

.nav-cta {
  background: #1E90FF !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.35);
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  text-shadow: none !important;
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.45);
  background: #0066CC !important;
  border-color: #0066CC !important;
  color: #ffffff !important;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: linear-gradient(180deg, #1E90FF 0%, #3d8b6e 100%);
    padding: 20px 15px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
    gap: 0;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .nav-links a:last-child {
    margin-bottom: 0;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  background-color: #1E90FF;
  background-image: 
    linear-gradient(135deg, rgba(30, 144, 255, 0.55) 0%, rgba(61, 139, 110, 0.5) 50%, rgba(30, 144, 255, 0.55) 100%),
    url('community-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 5px solid #ffffff;
}

/* Bottom gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(30, 144, 255, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 5;
  max-width: 1400px;
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

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

/* Christmas Banner */
.christmas-banner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 100;
  margin-left: 20px;
  transform: rotate(-5deg);
}

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

.christmas-text {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  color: #cc0000;
  text-shadow: 
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff,
    -3px -3px 0 #1b5e20,
    3px -3px 0 #1b5e20,
    -3px 3px 0 #1b5e20,
    3px 3px 0 #1b5e20,
    0 0 10px rgba(255, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1;
}

.holly-left, .holly-right {
  font-size: 1.5rem;
  filter: hue-rotate(-30deg) saturate(1.5);
}

.holly-right {
  transform: scaleX(-1);
}

.hanging-lights {
  display: flex;
  gap: 8px;
  margin-top: -2px;
  position: relative;
}

.hanging-lights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.hanging-lights .bulb {
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  margin-top: 2px;
  animation: twinkle 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}

.hanging-lights .bulb.white { background: #ffffff; color: #ffffff; animation-delay: 0s; }
.hanging-lights .bulb.blue { background: #00bfff; color: #00bfff; animation-delay: 0.2s; }
.hanging-lights .bulb.red { background: #ff0000; color: #ff0000; animation-delay: 0.4s; }
.hanging-lights .bulb.green { background: #00ff00; color: #00ff00; animation-delay: 0.6s; }
.hanging-lights .bulb.gold { background: #ffd700; color: #ffd700; animation-delay: 0.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1E90FF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  border: none;
}

.hero-title {
  margin-bottom: 25px;
  color: #ffffff;
  font-family: 'Cabin', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-shadow: 
    -1.5px -1.5px 0 #000,
    1.5px -1.5px 0 #000,
    -1.5px 1.5px 0 #000,
    1.5px 1.5px 0 #000,
    0 0 3px #000,
    2px 2px 4px rgba(0,0,0,0.4);
}

.hero-title span {
  color: #4a9f4a;
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  -webkit-text-fill-color: #4a9f4a;
  -webkit-text-stroke: 1px #000;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.85;
  margin-bottom: 20px;
  transform: rotate(-5deg);
  text-shadow: 
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    0 0 4px #000,
    3px 3px 6px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 20px;
  max-width: 550px;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  border: 2px solid #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 4px solid #ffffff;
  background: #e0e0e0;
  min-height: 200px;
}

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

.slideshow-images {
  position: relative;
  width: 100%;
  height: 520px;
}

.slideshow-images .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slideshow-images .slide.active {
  opacity: 1;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #1E90FF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-nav:hover {
  background: #1E90FF;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
  left: 15px;
}

.slideshow-nav.next {
  right: 15px;
}

.slideshow-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.slideshow-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slideshow-dots .dot.active {
  background: #1E90FF;
  border-color: #1E90FF;
  transform: scale(1.2);
}

/* Keep old wrapper for backwards compatibility */
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 5px solid #ffffff;
  background: #ffffff;
  padding: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-stats {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #ffffff;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 20;
  border: 3px solid #3d8b6e;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1E90FF;
}

.stat-label {
  font-size: 0.8rem;
  color: #3d8b6e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: 1; /* Text comes first, slideshow below */
  }

  .hero-text {
    order: -1; /* Text appears first on mobile */
  }

  .hero-stats {
    position: relative;
    bottom: 0;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green-pale);
  color: var(--green-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 15px;
  color: #1E90FF;
  font-weight: 700;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* ============================================
   Features Section
   ============================================ */
/* Wave Dividers */
.wave-divider {
  display: none;
}

.wave-divider-green {
  display: none;
}

.features {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.features::before {
  display: none;
}

.features .container {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 2px solid #e8f4fc;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E90FF, #3d8b6e);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 144, 255, 0.2);
  border-color: #1E90FF;
}

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

.feature-icon {
  min-width: 60px;
  height: 60px;
  padding: 0 12px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(135deg, #1E90FF 0%, #3d8b6e 100%);
  border-radius: 50px;
  font-size: 1.8rem;
  transition: transform var(--transition-normal);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
  white-space: nowrap;
}

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

.feature-card h3 {
  margin-bottom: 12px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, #1E90FF 0%, #3d8b6e 100%);
  position: relative;
  overflow: visible;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .section-badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all var(--transition-normal);
  border: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: #1E90FF;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: linear-gradient(180deg, #e8f8f0 0%, #ffffff 100%);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #3d8b6e 0%, #1E90FF 100%);
  padding: 60px 40px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(30, 144, 255, 0.3);
}

.cta-box .cta-title,
.cta-box h2 {
  color: #ffffff;
}

.cta-box .cta-text,
.cta-box p {
  color: rgba(255,255,255,0.8);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  margin-bottom: 15px;
}

.cta-text {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 30%, #1E90FF 70%, #0284c7 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0,40 L10,40 L15,15 L20,40 L30,40 L35,20 L40,40 L50,40 L55,10 L60,40 L70,40 L75,18 L80,40 L90,40 L95,12 L100,40 L110,40 L115,22 L120,40 L130,40 L135,8 L140,40 L150,40 L155,16 L160,40 L170,40 L175,20 L180,40 L190,40 L195,14 L200,40 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 40px;
  pointer-events: none;
  animation: moveTreesFooter 35s linear infinite;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}


.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}

.footer-section a:hover {
  color: var(--green-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-contact-item span:first-child {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-contact-item span:last-child {
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

/* ============================================
   Units Page
   ============================================ */
.page-hero {
  padding: 160px 0 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.page-hero::before {
  display: none;
}

.page-hero::after {
  display: none;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #3d8b3d;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    2px 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.units-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border: 2px solid #1E90FF;
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.unit-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.15);
  border: 2px solid rgba(30, 144, 255, 0.15);
  transition: all var(--transition-normal);
}

.unit-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(92, 153, 214, 0.2);
}

.unit-image {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #f0f4f8;
}

.unit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  background: #f0f4f8;
}

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

/* Image Gallery Styles */
.unit-gallery {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #f0f4f8;
}

.unit-gallery-images {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.unit-gallery-images img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f0f4f8;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1E90FF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  z-index: 5;
}

.gallery-nav:hover {
  background: #1E90FF;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-dot.active {
  background: #1E90FF;
  transform: scale(1.2);
}

.unit-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  background: #1E90FF;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(30, 144, 255, 0.4);
}

.unit-badge.sold {
  background: #5a6268;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.unit-badge.pending {
  background: #f59e0b;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
}

.unit-content {
  padding: 25px;
}

.unit-title {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.unit-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E90FF;
  margin-bottom: 15px;
}

.unit-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.unit-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.unit-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
  padding: 60px 0 100px;
  background: transparent;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, #1E90FF 0%, #3d8b6e 100%);
  padding: 40px;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(30, 144, 255, 0.25);
}

.contact-info h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-info > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 1rem;
}

.info-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.office-hours {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.office-hours h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
  border: 2px solid rgba(30, 144, 255, 0.2);
}

.contact-form-wrapper h2 {
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

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

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   Map Section
   ============================================ */
.map-section {
  padding: 0 0 100px;
  background: transparent;
}

.map-wrapper {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
}

.map-placeholder span {
  font-size: 4rem;
  display: block;
  margin-bottom: 15px;
}

/* ============================================
   Animations - Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   Success Message
   ============================================ */
.success-message {
  display: none;
  background: var(--green-pale);
  border: 2px solid var(--green-primary);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-message span {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.success-message h3 {
  color: var(--green-primary);
  margin-bottom: 5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================
   Loading Spinner
   ============================================ */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

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

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-primary);
}

/* ============================================
   Mobile Responsive Improvements
   ============================================ */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .christmas-banner {
    display: none;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-title span {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 8px;
    display: block;
    word-spacing: 0.1em;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0.5px #000;
    text-stroke: 0.5px #000;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    -webkit-text-stroke: 0.5px #000;
    text-stroke: 0.5px #000;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-location {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  /* Slideshow Mobile */
  .hero-slideshow {
    height: 250px;
    margin-top: 5px;
  }

  .slideshow-images {
    height: 250px;
  }

  .slideshow-images .slide {
    height: 250px;
  }

  .slideshow-images img {
    height: 250px;
  }

  .slideshow-dots {
    bottom: 8px;
  }

  .slideshow-dots .dot {
    width: 8px;
    height: 8px;
  }

  .slideshow-nav {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .slideshow-nav.prev {
    left: 8px;
  }

  .slideshow-nav.next {
    right: 8px;
  }

  /* Hero Stats Mobile */
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    padding: 15px 20px;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .stat-label {
    font-size: 0.75rem;
  }

  /* Hero Buttons Mobile */
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  /* Navbar Mobile */
  .navbar {
    min-height: 70px;
    height: 80px;
    padding: 5px 0;
  }

  .navbar::before {
    display: none; /* Hide creek animation on mobile */
  }

  .navbar::after {
    height: 20px;
    background-size: 120px 20px;
  }

  .nav-container {
    min-height: 50px;
    padding: 0 10px;
  }

  .nav-logo {
    z-index: 1002;
  }

  .nav-logo img {
    height: 55px;
    max-height: 55px;
    width: auto;
  }

  .navbar.scrolled {
    height: 70px;
  }

  .navbar.scrolled .nav-logo img {
    height: 45px;
  }

  /* Mobile Nav Menu */
  .nav-links {
    background: linear-gradient(180deg, #1E90FF 0%, #3d8b6e 100%);
    padding: 20px 15px;
    gap: 0;
  }

  .nav-links a {
    color: #ffffff;
    padding: 14px 20px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-links a:last-child {
    margin-bottom: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* Page Hero Mobile */
  .page-hero {
    padding: 100px 0 40px;
  }

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

  .page-hero p {
    font-size: 0.95rem;
  }

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

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

  .section-title {
    font-size: 1.6rem;
  }

  /* Feature Cards Mobile */
  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Unit Cards Mobile */
  .units-grid {
    gap: 25px;
  }

  .unit-card .unit-image {
    height: 250px;
  }

  .unit-card .unit-details {
    padding: 20px;
  }

  .unit-card h3 {
    font-size: 1.2rem;
  }

  .unit-price {
    font-size: 1.3rem;
  }

  /* CTA Section Mobile */
  .cta-content h2 {
    font-size: 1.8rem;
  }

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

  /* Contact Page Mobile */
  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  /* Footer Mobile */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-about p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (under 480px) */
@media (max-width: 480px) {
  .hero {
    padding-top: 110px;
  }

  .christmas-banner {
    display: none;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero-title span {
    font-size: 3.4rem;
    letter-spacing: 0.01em;
    word-spacing: 0.08em;
    -webkit-text-stroke: 0.3px #000;
    text-stroke: 0.3px #000;
  }

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

  .hero-slideshow {
    height: 200px;
    margin-top: 3px;
  }

  .slideshow-images {
    height: 200px;
  }

  .slideshow-images .slide {
    height: 200px;
  }

  .slideshow-images img {
    height: 200px;
  }

  .navbar {
    height: 70px;
  }

  .nav-logo img {
    height: 45px;
    max-height: 45px;
  }

  .navbar.scrolled {
    height: 60px;
  }

  .navbar.scrolled .nav-logo img {
    height: 40px;
  }

  .container {
    padding: 0 12px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .unit-card .unit-image {
    height: 200px;
  }

  .hero-description {
    font-size: 0.85rem;
    padding: 0 5px;
  }

  .slideshow-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .slideshow-dots .dot {
    width: 8px;
    height: 8px;
  }
}

