* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff7fb;
  color: #333;
  line-height: 1.6;
}

/* PAGE FADE IN */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff7fb;
  color: #333;
  line-height: 1.6;

  animation: pageFadeIn 0.6s ease-out;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #d63384;
}

nav {
  display: flex;
  gap: 12px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 400;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffe0f0, #fff);
}

.hero h1 {
  font-size: 40px;
  color: #d63384;
}

.hero p {
  font-size: 16px;
}

/* BUTTONS (UNIFIED FIX) */
.btn,
.btn-small {
  background: linear-gradient(135deg, #d63384, #b52a6f);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover,
.btn-small:hover {
  transform: translateY(-2px);
}

/* HIGHLIGHTS */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 50px 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
}

/* SERVICES PREVIEW */
.preview {
  text-align: center;
  padding: 60px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* SERVICE SECTION */
.service-section {
  padding: 40px 20px;
  text-align: center;
}

.service-section h2 {
  color: #d63384;
}

/* SERVICE GRID (FIXED OVERFLOW SAFE) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* SERVICE CARD (CRITICAL FIX HERE) */
.service-item {
  background: white;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* BUTTON INSIDE SERVICE CARD (FIXED OVERFLOW ISSUE) */
.service-item .btn-small {
  margin-top: 15px;
  width: 100%;
}

/* TESTIMONIALS */
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #fff0f7;
}

.testimonial-box {
  background: white;
  padding: 20px;
  margin: 10px auto;
  max-width: 500px;
  border-radius: 14px;
}

/* INFO */
.info-section {
  text-align: center;
  padding: 40px 20px;
}

.info-card {
  background: white;
  padding: 20px;
  max-width: 600px;
  margin: auto;
  border-radius: 14px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #ffe0f0, #fff);
}

/* INSTAGRAM */
.instagram {
  text-align: center;
  padding: 60px 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 28px;
  }

  nav {
    gap: 8px;
    flex-wrap: wrap;
  }

  .service-grid,
  .grid,
  .highlights {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-small {
    width: 100%;
  }
}

.page-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.page-header h1 {
  color: #d63384;
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}