@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}
:root {
    --nav-primary: #5e3e30;
    --nav-secondary: #c4a1a1;
    --nav-light: #fff9f7;
    --nav-accent: #ffe4da;
    --nav-text: #3c2e28;
    --primary-bg: #FEF4F1;
    --card-bg: #FFF9F7;
    --accent-color: #D68B63;
    --dark-text: #321F15;
    --light-text: #5E3E30;
    --neutral-text: #333333;
    --shadow: 0 6px 30px rgba(216, 139, 99, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --dusty-rose: #C4A1A1;
    --pale-pink: #FEF4F1;
    --salmon: #FFE4DA;
    --deep-brown: #5E3E30;
    --soft-shadow: 0 4px 20px rgba(94, 62, 48, 0.08);
}

.book-now-img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.aro {
  margin-left: 0.5rem;
}

/* Animation  */
@keyframes fadeIn-left {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes fadeIn-top {
  from {
    opacity: 0;
    transform: translateY(70px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeIn-right {
  from {
    opacity: 0;
    transform: translateX(70px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
  animation: fadeIn-left 1s ease-out forwards;
}



.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll-right.visible {
  animation: fadeIn-right 1s ease-out forwards;
}


.service-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
}

.animate-on-scroll-top {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll-top.visible {
  animation: fadeIn-top 1s ease-out forwards;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: rgb(255, 255, 255);
  color: #1a1a1a;
}

main {
  padding-inline: 1rem;
  max-width: 85vw;
  margin: 0 auto;
}

/* Coming soon overlay */

.popup-overlay-cs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay-cs.active-cs {
    opacity: 1;
    visibility: visible;
}

.popup-container-cs {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(214, 139, 99, 0.15);
}

.popup-overlay-cs.active-cs .popup-container-cs {
    transform: translateY(0);
}

.popup-image-cs {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: white;
    border-radius: 50%;
    box-shadow: var(--soft-shadow);
}

.popup-image-cs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-title-cs {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.popup-text-cs {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--light-text);
    font-weight: 500;
    opacity: 0.9;
}

.social-links-cs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.social-link-cs {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--salmon);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
    box-shadow: 0 2px 8px rgba(94, 62, 48, 0.05);
}

.social-link-cs:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 4px 12px rgba(214, 139, 99, 0.2);
}

.close-btn-cs {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--salmon);
    border: none;
    color: var(--light-text);
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(94, 62, 48, 0.1);
}

.close-btn-cs:hover {
    background-color: var(--accent-color);
    color: white;
}

.launch-btn-cs {
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
}

.launch-btn-cs:hover {
    background-color: var(--deep-brown);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 62, 48, 0.15);
}
/* Navbar 2.0 */
.main-navigation-wrap {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--nav-light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 4%;
    max-width: 95vw;
    margin: 0 auto;
}

.brand-identity-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;

}

.brand-logo-img {
    height: 42px;
    width: auto;
}

.brand-name-text {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 5px;
    user-select: none;

}

.navigation-menu-items {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link-item {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.nav-link-item:hover {
    color: var(--nav-primary);
}

.nav-link-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--nav-primary);
    transition: width 0.3s ease;
}

.nav-link-item:hover::before {
    width: 100%;
}

.cta-button-nav {
    background: var(--nav-primary);
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-left: 1.2rem;
    box-shadow: 0 2px 8px rgba(94, 62, 48, 0.2);
}

.cta-button-nav:hover {
    background: #4a3126;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 62, 48, 0.3);
}

.mobile-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--nav-primary);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 4rem;
  background-color: #FFE4D9;
  flex-wrap: wrap;

  /* ✅ Add subtle shadow below */
  box-shadow: 0 60px 40px rgba(255, 228, 217, 1);
}

.hero-left {
  max-width: 50%;
  padding-left: 5rem;
  /* ⬅️ Right shift for text */
}

.subtitle {
  font-size: 1rem;
  /* ⬆️ Slightly increased */
  letter-spacing: 0.08rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2.5rem;
  /* ⬆️ Increased text size */
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
}

.book-btn {
  background-color: #6b3b28;
  color: white;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;

  transition: background-color 0.3s;
}

.login-btn {
  background-color: #5c5c5c00;
  color: #6b3b28;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;

  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #5a3020;
}

/* Hero Right */
.hero-right {
  position: relative;
  max-width: 50%;
  margin-left: -4rem;
}

/* Circle glow behind both images */
.hero-right::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 149, 149, 0.988) 4%, transparent 70%);
  border-radius: 90%;
  filter: blur(20px);
  z-index: 0;
}

/* Chat Image (background image) */
.chat-img {
  width: 30%;
  display: block;
  left: 30%;
  position: relative;
  z-index: 1;
  /* Ensure it's above the glowing circle */
  border-radius: 1rem;
}

/* Maid Image (foreground image) */
.maid-img {
  position: absolute;
  bottom: 0;
  left: 55%;
  bottom: -6%;
  width: 20%;
  height: auto;
  z-index: 2;
  /* Stays above chat image and glow */
}


/* Responsive Navbar & Layout */

.material-symbols-outlined {
  font-size: 32px;
  color: white;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon {
  background-color: #f99e97;
  border-radius: 50%;
}

a {
  text-decoration: none;
  color: inherit;
}


.features-section {
  background-color: #fef4f000;
  margin-top: 100px;
  margin-bottom: -90px;
  padding: 4rem 0.5rem;
  text-align: center;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #333;
  font-family: 'Inter', sans-serif;
}


.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: #fef3ec;
  border-radius: 1rem;
  width: 20rem;
  padding: 2rem 1.5rem;
  text-align: center;
}


.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.grid-placeholder {
  padding: 0.5rem;
  border-radius: 1rem;
  width: 25rem;
  aspect-ratio: 1 / 1;
  /* Makes it square */
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}



.grid-placeholder p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.whatsapp-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 03rem;
  max-width: 1700px;
  margin: 0 auto;
  padding-block: 2rem;

  /* ✅ Responsive horizontal padding */
  padding-inline: clamp(1rem, 10vw, 15rem);

  flex-wrap: wrap;
}



/* Left box: square with aspect ratio */
.chat-phone {
  flex: 1;
  aspect-ratio: 1 / 1;
  /* background-color: #d4d4d4; */
  /* background: url('./WhatsApp_Service.png'); */
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  /* object-fit: cover; */
}

.service-grid-img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.phone-screen {
  /* width: 90%; */
  height: 100%;
  object-fit: fill;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

  /* Ensures the image covers the box */
}

/* Right content: match height by using flex */
.whatsapp-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
  max-width: 600px;
  min-width: 280px;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-item .icon {
  font-size: 24px;
  background-color: #fff;
  border: 2px solid #f36e3a;
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: #f28d8d;
}

.feature-item h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 300;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.faq-section {
  /* background-color: #fef4f0; */
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #000;
}

.faq-card {
  background-color: #ffe1cb;
  border-radius: 1.2rem;
  margin: 1.5rem auto;
  max-width: 800px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  background-color: #fff;
  padding: 1.2rem;

  font-size: 1.3rem;
  color: #000;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}

.faq-answer {
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.book-now-section {
  background-color: #fef4f0;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
  border-radius: 35px;
}

.book-now-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.book-now-left {
  flex: 1;
  min-width: 300px;
}

.book-now-left h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #0f0f0f;
}

.book-now-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.book-now-button {
  display: inline-block;
  background-color: #744d3c;
  color: white;

  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.book-now-button:hover {
  background-color: #5e3e30;
}

.book-now-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.book-now-img {
  width: 100%;
  max-width: 400px;
  border-radius: 2rem;
}

/* ✅ Responsive Breakpoints */

.services-section {
  display: flex;
  background-color: #ffffff;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;

  /* ✅ Responsive side padding */
  padding: 3rem clamp(1rem, 5vw, 10rem);

  max-width: 1700px;
  margin: 0 auto;
  align-items: center;
  box-sizing: border-box;
}

.services-content h2 {
  margin: 20px;
  padding: 0rem;

}

.services-content {
  flex: 1;
  min-width: 320px;
  box-sizing: border-box;
}

.service-box {
  border: 1px solid #f3c4b6;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background-color: #fff;
  transition: box-shadow 0.3s;
}

.service-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}



.service-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #777;
}

.grid-placeholder {
  /* flex: 1; */
  min-width: 45%;
  height: 80%;
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  font-size: 1rem;
}

.faq-section {
  /* background-color: #fef4f0; */
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #000;
}

.faq-card {
  background-color: #ffe1cb;
  border-radius: 1.2rem;
  margin: 1.5rem auto;
  max-width: 800px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq-question {
  background-color: #fff;
  padding: 1.2rem;
  font-size: 1.3rem;
  color: #000;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  background-color: #fef3ec;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: left;
}

.faq-card.active .faq-answer {
  max-height: 400px;
  padding: 1.2rem 1.5rem;
}

.faq-card.active {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Footer 2.0 */
.footer {
  margin-top: 3rem;
    background-color: var(--light-text);
    color: var(--nav-light);
    padding: 1rem 2rem;
    box-shadow: var(--soft-shadow);
    border-top: 1px solid var(--salmon);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--pale-pink);
    font-weight: 700;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--pale-pink);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--card-bg);
    color: var(--light-text);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background-color: var(-pl);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--pale-pink);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    margin: 1rem auto;
    margin-top: 0;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 10px;
    border-radius: 3px;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--salmon);
    text-align: center;
    color: var(--pale-pink);
    font-size: 0.9rem;
}