/* ============================================================
   ARUJA Property Landing Page
   High-Conversion Sales Page Design
   Mobile-First, Premium, Modern
   ============================================================ */

/* --- Landing Base --- */
.landing-page {
  background: var(--surface-bg);
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text-primary);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,250,252,0.7) 40%, #f0f4ff 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: var(--space-4);
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  max-width: 800px;
  letter-spacing: -0.02em;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-weight: 500;
}
.hero-location i { color: var(--primary-500); font-size: 1.2rem; }
.hero-price-box {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary-600);
}
.hero-price-old {
  font-size: var(--text-xl);
  color: var(--accent-500);
  text-decoration: line-through;
  opacity: 0.6;
}
.hero-type-badge {
  padding: 6px 16px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow-accent);
}
.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-cta .btn { padding: 16px 32px; font-size: var(--text-base); font-weight: 700; }

/* --- Section Container --- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
}

/* --- Quick Info Cards --- */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-5);
}
.info-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.info-card:hover { 
  border-color: var(--primary-300); 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-xl); 
}
.info-card i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-3);
  display: block;
}
.info-card .info-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}
.info-card .info-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.1); }

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.benefit-card:hover { 
  border-color: var(--primary-400); 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: var(--shadow-xl); 
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-600);
  font-size: 1.5rem;
}
.benefit-card h4 { font-size: var(--text-lg); font-weight: 700; color: var(--text-primary); }
.benefit-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

/* --- Storytelling --- */
.story-section {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gradient-primary);
}
.story-section .story-text {
  font-size: var(--text-xl);
  line-height: 2;
  color: var(--text-secondary);
}

/* --- Payment Simulator --- */
.sim-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}
.sim-result {
  background: var(--primary-50);
  border: 2px dashed var(--primary-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-8);
}
.sim-result .sim-amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-600);
}

/* --- Testimonials --- */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

/* --- Agent Contact Card --- */
.agent-card {
  background: var(--gradient-sidebar);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
  color: #ffffff;
}
.agent-card .agent-photo {
  width: 120px;
  height: 120px;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-glow);
}
.agent-card h3 { color: #ffffff; font-size: var(--text-2xl); }
.agent-card .agent-label { color: rgba(255,255,255,0.7); }

/* --- Lead Form --- */
.lead-form-section {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

/* --- Sticky CTA Mobile --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-4);
  box-shadow: 0 -10px 30px rgba(99, 102, 241, 0.1);
  border-top: 1px solid var(--surface-border);
}
.sticky-cta .sticky-buttons {
  display: flex;
  gap: var(--space-2);
}
.sticky-cta .btn { flex: 1; padding: 12px; font-size: var(--text-sm); }

/* --- Landing Footer --- */
.landing-footer {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--surface-border);
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-section { min-height: 70vh; }
  .hero-content { padding: var(--space-6) var(--space-4) var(--space-8); }
  .section { padding: var(--space-8) var(--space-4); }
  .sticky-cta { display: block; }
  .landing-page { padding-bottom: 70px; }
  .hero-cta .btn { flex: 1; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { padding: var(--space-6); }
  .sim-card { padding: var(--space-5); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
}
