/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#fff;
}

/* ================= CONTAINER ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= TOP BAR ================= */
.topbar{
  background:#111;
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

/* ================= HEADER ================= */
.header {
  position: absolute;   /* important */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 20px 0;
}


.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}


.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:140px;
  width:auto;
  display:block;
}





.nav a{
  color:#fff;
  text-decoration:none;
  margin-left:35px;
  font-weight:500;
  font-size:15px;
  letter-spacing:1px;
}

.nav a:hover{
  color:#f8a5c2;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  background:url('../images/hero.jpg') center center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:950px;
  padding:20px;
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:75px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero h1 span{
  color:#f8a5c2;
}

.hero p{
  font-size:22px;
  margin-bottom:45px;
  opacity:0.95;
}

/* ================= BUTTON ================= */
.hero-btn{
  display:inline-block;
  background:#d63384;
  padding:18px 65px;
  border-radius:50px;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:500;
  box-shadow:0 15px 40px rgba(214,51,132,.4);
  transition:0.3s ease;
}

.hero-btn:hover{
  transform:translateY(-6px);
  background:#c2185b;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .hero h1{
    font-size:45px;
  }

  .hero p{
    font-size:18px;
  }

  .nav{
    display:none;
  }

  .header{
    top:20px;
  }
}



.services-section {
    padding: 100px 0;
    background: #f8f8f8;
    text-align: center;
}

.section-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.service-card {
    min-width: 33.33%;
    padding: 15px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.service-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4f87;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: -20px; }
.next { right: -20px; }

.carousel-btn:hover {
    background: #e83e70;
}

/* Responsive */
@media (max-width: 992px) {
    .service-card {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .service-card {
        min-width: 100%;
    }
}

.why-amy {
  background-color: #ffe6f0; /* Light Pink */
  padding: 80px 20px;
  text-align: center;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.feature-box p {
  font-size: 16px;
  color: #666;
}

/* ================= TESTIMONIALS (COMPACT VERSION) ================= */
/* ================= TESTIMONIALS (ULTRA COMPACT) ================= */

.testimonials {
  background: #e9e9e9;
  padding: 70px 0;   /* much tighter */
  text-align: center;
}

.testimonial-wrapper {
  width: 90%;
  max-width: 620px;   /* narrower for luxury feel */
  margin: 0 auto;
}

.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;    /* slightly smaller */
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;   /* reduced */
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.quote-mark {
  font-size: 40px;   /* smaller quote */
  color: #ff4f87;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.testimonial h4 {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.dots {
  margin-top: 5px;
}

.dot {
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background: #cfcfcf;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #ff4f87;
}




/* ================= PINK ELEGANT CONTACT ================= */

.contact-section {
  background: #f8f8f8;
  padding: 100px 0;
  text-align: center;
}

.contact-wrapper {
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-divider {
  width: 70px;
  height: 2px;
  background: #ff4f87;
  margin: 20px auto;
  position: relative;
}

.contact-divider span {
  width: 8px;
  height: 8px;
  background: #ff4f87;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-subtitle {
  color: #777;
  margin-bottom: 50px;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 25px;
  margin-bottom: 20px;
  border-radius: 40px;
  border: 1.5px solid #ffb3c6;   /* soft pink border */
  background: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.3s ease;
}

.contact-form textarea {
  border-radius: 25px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4f87;   /* darker pink on focus */
  box-shadow: 0 0 0 3px rgba(255,79,135,0.1);
}

.contact-btn {
  background: #ff4f87;
  color: #fff;
  border: none;
  padding: 12px 45px;
  border-radius: 40px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #e63b74;
}



/* ================= PREMIUM FOOTER ================= */

.footer {
  background: #ffe6ef;   /* richer soft pink */
  padding: 80px 0 0;
}



.footer-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.footer-col ul li:hover {
  color: #ff4f87;
  cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
  background: #111;
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}


