

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, 'Poppins', sans-serif;
  line-height: 1.6;
  color: #2d2430;
  background-color: #fff8fb;
}

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

a {
  text-decoration: none;
}

ul {
  list-style-position: inside;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}



.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left-align {
  margin: 0 0 20px;
  text-align: left;
}

.section-heading h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #7d1749;
  margin-bottom: 14px;
}

.section-heading p {
  color: #5b5160;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #c2185b;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a5144c;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #c2185b;
  color: #c2185b;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #c2185b;
  color: #ffffff;
}

/* ====== Header ====== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f1d9e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a01850;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.logo span {
  color: #2f2430;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #453848;
  font-weight: 600;
  font-size: 0.95rem;
  
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: #7f1848;
}

/* ====== Hero ====== */
.hero {
  padding: 90px 0 70px;
  background: linear-gradient(to right, #e9c8d4, #fff0f5);
  
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background-color: #ffd9e8;
  color: #8e184f;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  color: #2e2030;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.1rem;
  color: #514756;
  margin-bottom: 22px;
}

.hero-list {
  list-style: none;
  margin-bottom: 28px;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #433848;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #c2185b;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  background: linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
  border: 1px solid #f3dce7;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(125, 23, 73, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-proof:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(125, 23, 73, 0.20);
  
}  


.proof-label {
  color: #8d1750;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-proof img {
  border-radius: 16px;
  margin-bottom: 14px;
  width: 100%;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.proof-text {
  color: #5d5261;
  font-size: 0.95rem;
}

/* ====== Value Bar ====== */
.value-bar {
  background-color: #7f1848;
  color: #ffffff;
  padding: 24px 0;
}

.value-bar h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-box {
  text-align: center;
  padding: 10px;
}

.value-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.value-box p {
  color: #ffe8f2;
  font-size: 0.95rem;
  max-width: 220px;
  margin: 0 auto;
}

/* ====== Cards ====== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #f2dbe6;
  border-radius: 20px;
  padding: 28px;
  box-shadow:   0 10px 30px rgba(255, 0, 255, 0.145);

   transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);

  box-shadow: 0 22px 48px rgba(150, 11, 74, 0.522);

  border-color: #e3b3c8;
}

.card h3 {
  color: #8a184d;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card:hover h3 {
  color: #a12d67;
}

.card p {
  color: #5a5160;
  margin-bottom: 16px;
}

.card ul {
  color: #423748;
  padding-left: 18px;
}

.card ul li {
  margin-bottom: 10px;
  position: relative;
}

/* ====== About ====== */
.about-section {
  background: linear-gradient(180deg, #fff8fb 0%, #fff1f6 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(128, 21, 71, 0.11);
}

.about-content p {
  color: #514756;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #413646;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c2185b;
  font-weight: 700;
}

/* ====== Process ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-box {
  background-color: #ffffff;
  border: 1px solid #f1dbe6;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(126, 24, 72, 0.06);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffd9e8;
  color: #8e184f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.process-box h3 {
  color: #7d1749;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.process-box p {
  color: #5b5160;
  font-size: 0.95rem;
}

/* ====== CTA ====== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8c184f 0%, #c2185b 100%);
  color: #ffffff;
}

.cta-box {
  max-width: 860px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-box p {
  color: #ffe7f1;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.95rem;
}

/* ====== Footer ====== */
.site-footer {
  background-color: #2c1f2e;
  color: #f4e6ee;
  padding: 28px 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.95rem;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .hero-grid,
  .value-grid,
  .card-grid,
  .about-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    right: 5%;
    width: 220px;
    background-color: #ffffff;
    border: 1px solid #f0d8e4;
    border-radius: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  
  }

  .site-nav a {
    display: block;
    width: 100%;
  }

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

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 70px 0 55px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: 1.9rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img {
  
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.social-links {
  margin-top: 15px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  color: #555;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff4da6; 
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  right: 70px;
  bottom: 50px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.30);
}

.whatsapp-float img {
  width: 67px;
  height: 67px;
  display: block;
}

.whatsapp-tooltip {
  position: absolute;
  right: 90px;
  background-color: #ffffff;
  color: #222222;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }

  .whatsapp-tooltip {
    right: 78px;
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* Mobile tap effect only */
button:active,
.btn:active,
.card:active {
  transform: scale(0.97);
}

button,
.btn,
.card {
  transition: all 0.2s ease;
}