:root {
  /* ===== PRIMARY BRAND ===== */
  --primary: #b44bd2;          /* Main purple */
  --primary-light: #f1e6fa;    /* Soft lavender */
  --primary-soft: #faf3ff;

  /* ===== ACCENT ===== */
  --accent: #e255c3;           /* Pink accent */

  /* ===== BACKGROUNDS ===== */
  --bg-main: #fffdfc;
  --bg-white: #ffffff;

  /* Hero gradient (IMPORTANT) */
  --bg-hero: linear-gradient(
    135deg,
    #f1e6fa,
    #f9ecff,
    #fde7f3,
    #f1e6fa
  );

  /* ===== TEXT COLORS ===== */
  --text-main: #2f2433;        /* Dark purple text */
  --text-muted: #7a6f82;
  --text-nav: #5e5366;

  /* ===== BORDERS ===== */
  --border-light: #eee4f5;
  --border-soft: #e6d9ee;

  /* ===== SHADOWS ===== */
  --shadow-soft: 0 12px 35px rgba(180, 75, 210, 0.15);
}

a{
  text-decoration: none;
  color: inherit;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

body {
  font-family:'Playfair Display', serif;
  color: #3d3a37;
}

/* ===== HEADER ===== */


.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
}




/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fdeff1, #fff7ec);
  text-align: center;
  height: 80vh;
}

.hero-content {
  background-color: #b54bd225;
  height: 100%;
}

.badge {
  display: inline-block;
  background: #fde4e7;
  color: #d8707d;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #e2a084;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.large {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e6d9d2;
  border-radius: 30px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

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

  .desktop-only {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
  }

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



.logo-icon {
  background: var(--primary);
  color: var(--bg-white);
}

.logo-text span {
  color: var(--primary);
}




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

.btn-outline {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
}
.hero {
  background: var(--bg-hero);
}

.badge {
  background: var(--primary-light);
  color: var(--primary);
}

.hero h1 span {
  color: var(--accent);
}

/* .hero p {
  color: var(--text-muted);
} */


.features {
  background: #fff;
  padding: 100px 20px;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.features-header {
  max-width: 650px;
  margin: auto;
  margin-bottom: 64px;
}

.features-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
}

.features-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.feature-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: auto;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 34px;
  }
}


.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: auto;
  margin-bottom: 22px;
}

.features-badge i {
  margin-right: 6px;
}





.beauticians {
  background:var(--bg-hero);
  padding: 100px 20px;
}

.beauticians-container {
  max-width: 1200px;
  margin: auto;
}

.beauticians-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 64px;
}

.beauticians-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 16px;
}

.beauticians-header h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.beauticians-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

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

/* ===== Card ===== */
.beautician-card {
  background: var(--bg-white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.beautician-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image */
.beautician-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Info */
.beautician-info {
  padding: 26px;
  text-align: center;
}

.beautician-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.speciality {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 14px;
}

/* Rating */
.s-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #f3b600;
  font-size: 14px;
  margin-bottom: 14px;
}

.s-rating span {
  color: var(--text-muted);
  margin-left: 6px;
}

/* Meta */
.meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.meta i {
  color: var(--primary);
  margin-right: 4px;
}

.beautician-info .btn-primary {
  padding: 12px 26px;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .beauticians-grid {
    grid-template-columns: 1fr;
  }

  .beautician-image img {
    height: 260px;
  }
}




/* Swiper Styling */
.swiper {
  padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Swiper spacing */
.swiper {
  padding-bottom: 60px;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #e8c6cb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}


.cta {
  background:  var(--bg-hero);
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: auto;
}

.cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: auto;
  margin-bottom: 24px;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.cta p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* CTA Button */
.cta-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(216, 112, 125, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 34px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}



.footer {
  background: #fffaf6;
  padding-top: 80px;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-logo .logo-icon {
  background: var(--primary);
  color: #fff;
  padding: 6px 8px;
  border-radius: 50%;
}

.footer-logo span span {
  color: var(--primary);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Socials */
.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.socials a:hover {
  transform: translateY(-3px);
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  cursor: pointer;
}

/* Contact */
.footer-contact p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 8px;
}

/* Bottom */
.footer-bottom {
  background: #fdeff1;
  padding: 18px 20px;
  text-align: center;
    display: flex;
    justify-content: space-between;

}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}


/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}


.btn-gradient {
  background: linear-gradient(90deg, #e255c3, #b44bd2);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(178, 75, 210, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(178, 75, 210, 0.45);
}


.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Swiper full size */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
  width: 100%;
  height: 100%;
}

/* Background images */
.hero-slide {
  background-size: cover;
  background-position: center;
}

/* Dark overlay for text readability */
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

/* Content on top */
.hero-content {
  position: absolute;
  z-index: 2;
  margin: auto;
  text-align: center;
  padding: 140px 20px;
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%);                                                                                                                                                                                                                              
  width: 100%;
}

.hero-content h1 span {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


.testimonials{
  padding:120px 20px;
  background:linear-gradient(180deg,#faf3ff,#fff);
}

.testimonials-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.testimonials-header{
  margin-bottom:50px;
}

.testimonials-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 18px;
  border-radius:999px;
  background:var(--primary-light);
  color:var(--primary);
  font-weight:600;
  font-size:13px;
}

.testimonials-header h2{
  font-size:36px;
  margin:18px 0 8px;
}

.testimonials-header p{
  color:var(--text-muted);
}

/* ===== BUBBLE CARD ===== */
.testimonial-bubble{
  background:#fff;
  padding:36px 28px;
  border-radius:28px;
  max-width:520px;
  margin:auto;
  position:relative;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.testimonial-bubble::after{
  content:"";
  position:absolute;
  bottom:-18px;
  left:50%;
  transform:translateX(-50%);
  border-width:18px 18px 0;
  border-style:solid;
  border-color:#fff transparent transparent;
}

.testimonial-bubble h3{
  font-size:22px;
  margin-bottom:14px;
  color:var(--text-dark);
}

.testimonial-bubble p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:22px;
}

/* STARS */
.stars{
  display:flex;
  justify-content:center;
  gap:6px;
}

.stars .material-icons{
  color:var(--star);
  font-size:26px;
}

/* PAGINATION */
.swiper-pagination-bullet{
  background:#d1b3e6;
  opacity:1;
}
.swiper-pagination-bullet-active{
  background:var(--primary);
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimonials-header h2{
    font-size:28px;
  }
  .testimonial-bubble{
    padding:28px 22px;
  }
}
