/* Project: Weight Loss Mentor Shri - Landing Page
    Theme: Modern, Professional, High-Conversion
    Colors: Navy (#002D62), Mustard (#E1AD01), Soft Gray (#F8F9FA)
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --primary: #002d62;
  --primary-light: #00408f;
  --secondary: #e1ad01;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --bg-light: #e6f4ea;
  --white: #ffffff;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

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

/* --- BUTTONS --- */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 45, 98, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 45, 98, 0.4);
  background: var(--primary-light);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  margin-left: 15px;
}

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

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border: none;
}

.btn-secondary:hover {
  transform: scale(1.05);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 35px;
}

/* --- HERO SECTION --- */
.hero {
  padding: 8px 0 80px;
  /* Updated Background: Keeps your radial gradient but adds a subtle organic leaf/grid texture overlay */
  /* background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url("https://www.transparenttextures.com/patterns/pinstriped-suit.png"),
    radial-gradient(circle at top right, #f0f4f8, var(--white)); */
  background-attachment: fixed; /* Creates a parallax-like depth as you scroll */
  position: relative;
  overflow: hidden;
  background-color: #e6f4ea;
}

/* Subtle decorative "blob" to remove any remaining 'empty' feeling in the hero */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 45, 98, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 10rem;
  position: relative;
  z-index: 1; /* Ensures content stays above background texture */
}

.hero-text {
  flex: 1.2;
}
.hero-image {
  flex: 0.8;
}

.hero-image img {
  border-radius: 30px;
  scale: 0.9;
  box-shadow: var(--shadow);
  /* Added a slight glassmorphism border to the image for more "texture" */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
  .hero {
    padding-top: 4rem;
    background-attachment: scroll; /* Performance optimization for mobile */
  }
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(225, 173, 1, 0.1);
  color: #b38a00;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* Glow effect to make the mustard badge pop against texture */
  box-shadow: 0 4px 10px rgba(225, 173, 1, 0.1);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px; /* Improves readability */
}

/* --- TRUST STRIP (Continuous Marquee) --- */
.trust-strip {
  background: #001a3a;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-items {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 5s linear infinite;
}

.trust-items div {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.trust-items div::before {
  content: "•";
  color: var(--secondary);
  margin-right: 20px;
  font-size: 24px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   Mentor Section
   =============================== */

.mentor {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
  /* background-color: #e6f4ea; */
}

/* Decorative background accent */
.mentor::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(225, 173, 1, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
}

.mentor-container {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* Image Card */
.mentor-image {
  flex: 0.9;
  position: relative;
}

.mentor-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 6px solid var(--white);
}

/* Mustard Accent Border */
.mentor-image::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 3px solid var(--secondary);
  z-index: -1;
}

.mentor-image img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Text Area */

.mentor-text {
  flex: 1.1;
}

.mentor-text h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 10px;
}

.mentor-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 25px;
}

.mentor-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CTA spacing */
.mentor-text .btn-primary {
  margin-top: 15px;
}

/* ===============================
   Mobile Responsive
   =============================== */

@media (max-width: 900px) {
  .mentor-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mentor-image {
    max-width: 320px;
  }
}

/* --- ABOUT SECTION --- */
.about {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Image Layer */
.about::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/about-bg.png"); /* change image name if needed */
  background-size: cover;
  background-position: center;

  filter: blur(5px);
  transform: scale(1.1); /* prevents blur edge cutoff */

  opacity: 0.25;
  z-index: -2;
}

/* White overlay for readability */
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.346);
  z-index: -1;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  max-width: 800px;
  color: var(--primary);
  margin-inline: auto;
}

.about p {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- PROCESS (Timeline Tree) --- */
.process {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.process h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 2.5rem;
  color: var(--primary);
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 40px;
}

/* The Connecting Line (Desktop) */
.steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: #dde2e7;
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.step h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  color: var(--primary);
}

.step h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--secondary);
  border: 5px solid var(--bg-light);
  border-radius: 50%;
  margin: 0 auto 30px;
  box-shadow: 0 0 0 4px var(--secondary);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* WHY CHOOSE US */

.why-choose {
  padding: 100px 0;
  background: var(--bg-light);
}

.why-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT IMAGE STACK */

.why-images {
  flex: 1;
  position: relative;
}

.why-img {
  overflow: hidden;
  border-radius: 60px;
  box-shadow: var(--shadow);
}

.why-img img {
  width: 100%;
  display: block;
}

.top-img {
  width: 90%;
  margin-bottom: 40px;
}

.bottom-img {
  width: 90%;
  margin-left: 60px;
}

/* RIGHT CONTENT */

.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 30px;
}

/* BENEFIT LIST */

.why-list {
  list-style: none;
  margin-bottom: 35px;
}

.why-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 28px;
}

/* green check icon */

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* MOBILE */

@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
  }

  .bottom-img {
    margin-left: 0;
  }
}

/* --- TESTIMONIALS (Modern Floating Grid) --- */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Image Layer */
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/google-reviews.png");
  background-size: contain;
  background-position: center;

  filter: blur(2px);
  transform: scale(1); /* prevents blur edges */

  opacity: 0.18;
  z-index: -2;
}

/* Soft white overlay to keep text readable */
.testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(248, 249, 250, 0.92); */
  z-index: -1;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--primary);
}

/* Sub-heading for extra flair */
/* .testimonials::after {
  content: "Real Stories. Real Progress.";
  display: block;
  text-align: center;
  color: var(--primary-light);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
} */

/* The Grid Layout */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(79, 111, 82, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(134, 167, 137, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Floating Quotation Mark Decor */
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 8rem;
  color: var(--accent);
  font-family: "Poppins", serif;
  opacity: 0.4;
  line-height: 1;
  z-index: 0;
}

.testimonial p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.testimonial span {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--accent);
  padding-top: 20px;
}

/* Star Rating Enhancement */
/* .testimonial span::after {
  content: " ★★★★★";
  color: var(--secondary);
  margin-left: auto;
  font-size: 1.1rem;
} */

/* Hover Effect */
.testimonial:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(79, 111, 82, 0.15);
  border-color: var(--primary-light);
}

/* Specific styling for the 2nd card to create visual interest */
@media (min-width: 992px) {
  .testimonial:nth-child(2) {
    transform: translateY(30px);
  }
  .testimonial:nth-child(2):hover {
    transform: translateY(15px);
  }
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2.2rem;
  }
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }
  .testimonial {
    min-width: unset;
  }
}

/* stars */
.review-stars {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 15px;
}

/* testimonial sub heading */
.testimonial-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* disclaimer */
.testimonial-disclaimer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.google-rating {
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 40px;
}

/* --- FINAL CTA --- */
/* --- FINAL CTA (High-Contrast Navy & Mustard) --- */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  /* Navy Blue Gradient over the food texture image */
  background:
    linear-gradient(
      135deg,
      rgba(0, 45, 98, 0.95) 0%,
      /* Deep Navy */ rgba(0, 26, 58, 0.9) 100% /* Darker Navy */
    ),
    url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates depth on scroll */
  color: #ffffff;
  overflow: hidden;
  margin: 60px 20px;
  border-radius: 40px; /* Modern organic feel */
  box-shadow: 0 20px 50px rgba(0, 45, 98, 0.15);
}

/* Decorative background glow to remove the "empty" feel */
.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(225, 173, 1, 0.08) 0%,
    /* Subtle Mustard glow */ transparent 60%
  );
  transform: rotate(-15deg);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive sizing */
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.final-cta p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 45px;
  opacity: 0.9;
  color: #f0f4f8; /* Very light blue-grey for better readability than pure white */
  max-width: 600px;
  margin-inline: auto;
}

/* THE "CLICK ME" BUTTON - High Contrast Mustard */
.final-cta .btn-primary {
  background: #e1ad01 !important; /* Forces Mustard Yellow */
  color: #002d62 !important; /* Forces Navy Blue text for legibility */
  padding: 18px 43px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(225, 173, 1, 0.3);
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.final-cta .btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  background: #ffffff !important; /* Flips to white on hover */
  color: #002d62 !important;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .final-cta {
    padding: 70px 20px;
    margin: 30px 15px;
    border-radius: 30px;
    background-attachment: scroll; /* Better performance on mobile */
  }

  .final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .final-cta p {
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.5;
  }

  .final-cta .btn-primary {
    width: 100%; /* Full-width button for mobile ergonomics */
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* --- FORM SECTION (Modern & Interactive) --- */
/* --- FORM SECTION (Premium & Fully Responsive) --- */
.form-section {
  padding: 120px 0;
  background: var(--bg-light); /* Off-white background */
  position: relative;
  overflow: hidden; /* Ensures background decor doesn't cause scroll */
}

/* Background decoration to add depth and fill space */
.form-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 45, 98, 0.04) 0%,
    transparent 70%
  );
  z-index: 0;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(
    2rem,
    5vw,
    2.8rem
  ); /* Scales perfectly from mobile to desktop */
  color: var(--primary); /* Navy Blue */
  font-weight: 800;
  padding: 0 20px;
}

form {
  max-width: 550px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 50px;
  border-radius: 40px; /* Highly rounded for modern feel */
  box-shadow: 0 30px 60px rgba(0, 45, 98, 0.08);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 45, 98, 0.05);
}

form input,
form select {
  width: 100%;
  padding: 20px;
  margin-bottom: 25px;
  border: 2px solid #f1f4f8;
  border-radius: 16px;
  font-size: 16px; /* 16px is critical to prevent iOS auto-zoom on focus */
  background: #f9fbff;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none; /* Removes default iOS styling */
}

/* Focused State: Interactive Lift */
form input:focus,
form select:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 45, 98, 0.05);
  transform: translateY(-2px);
}

/* Custom Select Arrow */
form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23002d62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  cursor: pointer;
}

/* THE BUTTON - High Visibility Mustard */
form .btn-primary {
  width: 100%;
  padding: 22px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
  background: var(--secondary) !important; /* Mustard Yellow */
  color: var(--primary) !important; /* Navy Blue text */
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(225, 173, 1, 0.3);
  transition: all 0.4s ease;
  margin-top: 15px;
  display: block;
}

form .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 15px 40px rgba(0, 45, 98, 0.2);
}

/* Mobile Specific Optimizations */
@media (max-width: 768px) {
  .form-section {
    padding: 80px 15px;
  }

  form {
    padding: 40px 25px; /* Reduced padding to fit screen width */
    border-radius: 30px;
    width: 100%;
  }

  form h2 {
    margin-bottom: 40px;
  }

  form input,
  form select {
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  form .btn-primary {
    margin-top: 0px;
    margin-bottom: 5px;
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 12px; /* Matching input radius for consistent mobile look */
  }

  form p {
    font-size: 11px;
    padding: 0 12px;
  }
}

/* --- FOOTER (Aesthetic & Perfectly Aligned) --- */
footer {
  background: #001a3a; /* Deep Navy theme */
  color: #e2e8f0;
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
  display: grid;
  /* Multi-column layout for desktop interest */
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer h4 {
  color: #e1ad01; /* Mustard accent */
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

/* Centered accent line for headers */
footer h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #e1ad01;
  margin-top: 8px;
}

footer p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
  margin: 0;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: #e1ad01;
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: none;
}

/* --- MOBILE RESPONSIVE FIXES --- */

@media (max-width: 768px) {
  footer {
    padding: 60px 0 20px;
    text-align: center !important; /* Force global centering */
  }

  footer .container {
    grid-template-columns: 1fr !important; /* Force single column stack */
    gap: 45px;
    justify-items: center;
  }

  .footer-col {
    align-items: center !important; /* Force all children to center axis */
    width: 100%;
  }

  footer h4 {
    margin-bottom: 15px;
  }

  footer h4::after {
    margin: 8px auto 0 !important; /* Center the underline accent */
  }

  footer p {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links li {
    margin-bottom: 18px; /* Easier touch target */
  }

  footer a:hover {
    transform: none; /* Better mobile UX */
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 10px 0;
  }
}
.footer-address {
  margin-top: 12px;
  font-size: 0.9rem;
  /* color: #666; */
  line-height: 1.6;
}
.footer-logo {
  /* width: 80px; */
  height: 120px;
  margin-bottom: 15px;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .btn-outline {
    margin-left: 0;
  }
  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .steps::before {
    left: 30px;
    top: 0;
    width: 3px;
    height: 100%;
  }
  .step {
    text-align: left;
    padding-left: 70px;
  }
  .step h3::before {
    position: absolute;
    left: 18px;
    top: 0;
    margin: 0;
  }
  .testimonial {
    min-width: 85vw;
  }
}

/* =========================
   MODAL POPUP
========================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: popupFade 0.3s ease;
}
.modal-content p,
h3 {
  margin-bottom: 15px;
}

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   VALIDATION
========================= */

.input-error {
  border-color: #dc2626 !important;
  background: #fff5f5 !important;
}

.error-text {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: -8px;
  margin-bottom: 8px;
}

/* =========================
   BUTTON LOADING STATE
========================= */

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

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

.btn-loading .btn-text {
  display: none;
}

.btn-loading .btn-spinner {
  display: inline-block;
}

/* TELEGRAM BUTTON */

.btn-telegram {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 10px 20px;

  background: var(--secondary); /* mustard yellow */
  color: var(--white);

  font-weight: 700;
  font-size: 16px;
  text-decoration: none;

  border-radius: 50px;
  border: none;

  box-shadow: 0 8px 20px rgba(225, 173, 1, 0.35);

  transition: var(--transition);
}

/* hover effect */

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(225, 173, 1, 0.45);
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #e6f4ea;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--primary);
}

.logo img {
  /* width: 60px; */
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--secondary);
  /* background: var(--accent); */
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .logo {
    margin-left: 1rem;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    scale: 1.2;
    margin-right: 2rem;
  }
}
