/* ============================================================
   MAHINDRA RAINFOREST - MOBILE-FIRST STYLES
   ============================================================
   A luxury real estate landing page with nature-inspired design
   Mobile-first approach - scales up to larger screens
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Primary Colors - Nature Inspired */
  --primary: #1a5d1a;
  --primary-dark: #0d3d0d;
  --primary-light: #2d8f2d;
  
  /* Accent Colors - Gold/Luxury */
  --accent: #c9a227;
  --accent-light: #e6c34d;
  --accent-dark: #9a7b1c;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #1a1a1a;
  
  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  
  /* Shadows */
  --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.16);
  --shadow-glow: 0 0 30px rgba(26, 93, 26, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--space-sm); }

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

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

.section-header p {
  color: var(--gray);
  font-size: 1rem;
  margin-top: var(--space-sm);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: var(--shadow-md);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-block {
  width: 100%;
}

/* ==================== HEADER / NAVBAR ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: var(--space-sm) 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .logo {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-fast);
}

.header.scrolled .logo {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--black);
  font-size: 1.25rem;
  animation: pulse 2s infinite;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a3d1a 0%, #0d2d0d 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff08"/></svg>');
  background-size: 30px 30px;
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26,93,26,0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 var(--space-md);
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent-light);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-price {
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-price .label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-price .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.highlight-item span:first-child {
  font-size: 1.25rem;
}

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

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

/* ==================== ABOUT SECTION ==================== */
.about {
  background: var(--off-white);
}

.about-description {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.feature-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.feature-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--accent);
}

.price-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--accent);
  color: var(--black);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.price-card-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-md);
  text-align: center;
}

.price-card.popular .price-card-header {
  background: var(--gradient-gold);
  color: var(--black);
}

.price-card-header h3 {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 4px;
}

.price-card-header .size {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-card-body {
  padding: var(--space-md);
}

.price-amount {
  text-align: center;
  margin-bottom: var(--space-md);
}

.price-amount .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-amount .range {
  font-size: 0.85rem;
  color: var(--gray);
}

.price-features {
  margin-bottom: var(--space-md);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
}

.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: var(--space-md);
  font-style: italic;
}

/* ==================== AMENITIES SECTION ==================== */
.amenities {
  background: var(--off-white);
}

.amenities-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.amenity-category h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.amenity-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.amenity-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.amenity-item span:first-child {
  font-size: 1.5rem;
}

.amenity-item span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==================== LOCATION SECTION ==================== */
.location {
  background: var(--white);
}

.location-address {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.location-address p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 1rem;
  color: var(--gray);
}

.location-map {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.location-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.location-item:hover {
  background: var(--light-gray);
}

.location-item .icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.location-item .details {
  flex: 1;
}

.location-item .place {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.location-item .distance {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray);
  text-align: center;
  padding: var(--space-sm);
}

.gallery-placeholder span:first-child {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.gallery-placeholder span:last-child {
  font-size: 0.75rem;
}

/* ==================== DEVELOPER SECTION ==================== */
.developer {
  background: var(--gradient-primary);
  color: var(--white);
}

.developer .section-header h2 {
  color: var(--white);
}

.developer .section-header h2::after {
  background: var(--accent);
}

.developer-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.developer-tagline {
  text-align: center;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.developer-description {
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.developer-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.achievement-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
}

.achievement-item .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.achievement-item .label {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  background: var(--off-white);
}

.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 93, 26, 0.1);
}

.form-group input::placeholder {
  color: var(--gray);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: var(--space-sm);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-lg);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-rera {
  background: rgba(255,255,255,0.1);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: var(--space-sm) var(--space-md);
  z-index: 999;
  display: flex;
  gap: var(--space-sm);
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  padding: 12px 20px;
}

/* ==================== POPUP MODAL ==================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-header {
  background: var(--gradient-gold);
  padding: var(--space-md);
  text-align: center;
}

.popup-header h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 4px;
}

.popup-header p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin: 0;
}

.popup-body {
  padding: var(--space-md);
}

.popup-benefits {
  margin-bottom: var(--space-md);
}

.popup-benefits li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.popup-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: var(--space-md);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  animation: bounce 2s infinite;
  transition: var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

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

/* ==================== LOADING STATE ==================== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--gradient-primary);
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ==================== UTILITIES ==================== */
.hidden { display: none !important; }
.visible { display: block !important; }

/* ==================== MEDIA QUERIES ==================== */

/* Tablet and up */
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .location-map {
    height: 350px;
  }
  
  .location-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .developer-achievements {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .sticky-cta {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
  }
  
  .whatsapp-btn {
    bottom: 100px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .sticky-cta,
  .whatsapp-btn,
  .popup-overlay {
    display: none !important;
  }
  
  section {
    break-inside: avoid;
  }
}
