/* Reset and Base Styles */
:root {
  --primary-color: #2f9e44; /* Bright aesthetic green */
  --primary-hover: #238234;
  --secondary-color: #ebfbee; /* Light green for backgrounds */
  --dark-color: #1a1a1a;
  --text-color: #4a4a4a;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --banner-bg: #FFD43B; /* Bright yellow for announcement */
  --banner-text: #1A1A1A;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Typography Utilities */
.highlight {
  color: var(--primary-color);
}
.mt-2 {
  margin-top: 1.5rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.bg-light {
  background-color: var(--light-color);
}
.text-center {
  text-align: center;
}

/* Layout Structure */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.max-w-narrow {
  max-width: 800px;
}
.section-padding {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn i {
  font-size: 1.2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header & Navigation */
.navbar {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  color: var(--primary-color);
}

/* Announcements & Badges */
.top-banner {
  background-color: var(--banner-bg);
  color: var(--banner-text);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.top-banner i {
  margin-right: 0.5rem;
  color: #E03131;
}
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--secondary-color) 100%
  );
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(47, 158, 68, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #555;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: visible;
}
.hero-image {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}
.image-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  z-index: 1;
  opacity: 0.1;
}

/* Problem-Solution Split */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.split-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.marathi-quote {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}
.split-image-wrapper {
  position: relative;
}
.split-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #ffe066;
  color: #333;
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
  border: 4px solid var(--white);
}
.badge-number {
  font-size: 2rem;
  font-weight: 800;
}
.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.benefit-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.marathi-sub {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}

/* Testimonial Section */
.testimonial {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1606811841689-23dfddce3e95?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80")
      center/cover;
  color: var(--white);
}
.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.stars {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.review-text {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.reviewer-info {
  text-align: left;
}
.reviewer-info strong {
  display: block;
  font-size: 1.1rem;
}
.reviewer-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* 3D Model Viewer */
.interactive-3d {
  background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
}
.model-container {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 2rem auto 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background-color: var(--white);
  border: 4px solid var(--white);
  /* Add padding to create a 'safe zone' for scrolling on mobile if they miss the model */
  padding: 10px;
}
.d-model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  /* Crucial for mobile: allows vertical page scrolling even when touching the model */
  touch-action: pan-y;
}

/* FAQ List */
.faq-list {
  margin-top: 3rem;
  text-align: left;
}
.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}
.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.faq-item p {
  color: #555;
  margin: 0;
}

/* Final CTA */
.final-cta {
  background-color: var(--primary-color);
  color: var(--white);
}
.final-cta .cta-title {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.final-cta .cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.final-cta .btn {
  background-color: var(--white);
  color: var(--primary-color);
}
.final-cta .btn:hover {
  background-color: var(--light-color);
  transform: scale(1.05);
}

/* Sticky WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
}
.small-address {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container,
  .split-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    text-align: center;
    padding: 3rem 0;
  }
  .hero-actions {
    justify-content: center;
  }
  .image-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
