html { scroll-behavior: smooth; }
:root {
  /* Color Palette */
  --pink-light: #F7C7D9;
  --pink-medium: #F4A8C4;
  --pink-white: #F8F3F5;
  --green-dark: #1F6B3B;
  --green-medium: #4FAE57;
  --green-light: #8ED35A;
  --aqua: #74C9B0;
  --gray-light: #B7C4C3;
  --black: #000000;
  --yellow: #F6C522;
  
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #666666;
  
  --shadow-sm: 0 4px 6px rgba(244, 168, 196, 0.2);
  --shadow-md: 0 10px 25px rgba(244, 168, 196, 0.3);
  --shadow-lg: 0 20px 40px rgba(244, 168, 196, 0.4);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  
  background-color: var(--pink-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
  color: var(--black);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--green-medium);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 174, 87, 0.3);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 174, 87, 0.4);
}

.btn-large {
  background-color: var(--aqua);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(116, 201, 176, 0.4);
}

.btn-large:hover {
  background-color: #5bbda0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(116, 201, 176, 0.5);
}

.btn-submit {
  background-color: var(--green-medium);
  color: var(--white);
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--green-dark);
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
}

.header-container { background: rgba(0, 0, 0, 0.6) !important; border: 1px solid rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.1); flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.logo { flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-bright { color: var(--gray-light); }
.logo-home { color: var(--green-medium); }
.logo-services { color: var(--black); font-size: 0.8rem; display: block; line-height: 1; margin-top: -2px; }

.contact-info { flex-shrink: 0; white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.phone-number { color: #ffffff !important; color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--green-medium);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 4rem;
}

.stars-shine { justify-content: center; width: 100%;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.stars-shine svg {
  width: 24px;
  height: 24px;
  animation: pulse 2s infinite alternate;
}

.stars-shine svg:nth-child(2) { animation-delay: 0.3s; }
.stars-shine svg:nth-child(3) { animation-delay: 0.6s; }
.stars-shine svg:nth-child(4) { animation-delay: 0.9s; }
.stars-shine svg:nth-child(5) { animation-delay: 1.2s; }

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.image-backdrop {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--green-light);
  border-radius: 30px;
  z-index: -1;
  transform: rotate(3deg);
  transition: var(--transition);
}

.hero-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.floating-bubble {
  position: absolute;
  background-color: var(--aqua);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.bubble-1 {
  width: 60px;
  height: 60px;
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.bubble-2 {
  width: 40px;
  height: 40px;
  bottom: 40px;
  left: -20px;
  animation-delay: 1s;
  background-color: var(--yellow);
}

.bubble-3 {
  width: 25px;
  height: 25px;
  top: 50%;
  right: -30px;
  animation-delay: 2s;
  background-color: var(--green-light);
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--pink-white);
}

/* Team Section */
.team {
  padding: 6rem 0;
  background-color: var(--pink-white);
}

.team-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.team-image-wrapper {
  position: relative;
}

.team-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.leaf-decoration {
  position: absolute;
  top: -30px;
  left: -30px;
  color: var(--green-light);
  width: 80px;
  height: 80px;
  z-index: 0;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: rgba(142, 211, 90, 0.2);
  color: var(--green-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.badge-alt {
  background-color: rgba(116, 201, 176, 0.2);
  color: var(--aqua);
}

.benefits {
  margin-top: 2rem;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: rgba(79, 174, 87, 0.1);
  color: var(--green-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Booking Section */
.booking {
  padding: 6rem 0 8rem;
  background-color: var(--white);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--pink-white) 0%, var(--white) 100%);
  z-index: 0;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244, 168, 196, 0.3);
}

.booking-form {
  margin-top: 2rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  
}

.input-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--pink-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.input-group input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(116, 201, 176, 0.1);
}

.booking-image-wrapper {
  position: relative;
}

.alt-backdrop {
  background-color: var(--aqua);
  top: 20px;
  left: -20px;
  transform: rotate(-3deg);
}

.booking-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--pink-medium);
  
  padding: 4rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info p {
  
  opacity: 0.8;
  margin-top: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-links h3, .footer-contact h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact p {
  
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
  
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* New Sections Additions */
.text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Stats Section */
.stats {
  background-color: var(--green-dark);
  padding: 4rem 0;
  color: var(--white);
  position: relative;
  z-index: 10;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  color: var(--yellow);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--pink-white);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--pink-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  background-color: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 168, 196, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(116, 201, 176, 0.2);
  color: var(--aqua);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background-color: var(--white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: rgba(142, 211, 90, 0.3);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--green-light);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px var(--white);
}

.step h3 {
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background-color: var(--pink-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--yellow);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  
  margin-bottom: 1.5rem;
}

.author {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0;
}

/* FAQ */
.faq {
  padding: 6rem 0;
  background-color: var(--white);
}

.faq-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 1rem;
}

.faq-image {
  position: relative;
}

.faq-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.floating-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--yellow);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: -1;
  animation: pulse 3s infinite alternate;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Typebot Bubble Customization */
typebot-bubble::part(button) {
  transform: scale(1.3) !important;
  animation: pulse-neon-btn 2s infinite alternate !important;
}

typebot-bubble::part(bot) {
  max-height: 60vh !important;
}

@keyframes pulse-neon-btn {
  0% { box-shadow: 0 0 4px rgba(142, 211, 90, 0.4); }
  100% { box-shadow: 0 0 18px rgba(142, 211, 90, 0.9); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .team-container, .booking-container, .faq-container {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2.8rem; }
  
  .hero-image-wrapper { margin-top: 3rem; }
  .team-image-wrapper { order: -1; }
  .steps-container::before { display: none; }
}

@media (max-width: 768px) {
  .header-container {
    background: rgba(0, 0, 0, 0.8) !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.6rem 1rem !important;
    width: 95%;
    margin: 0.5rem auto;
  }
  
  .logo-text { display: none; }
  .contact-info { gap: 0.8rem !important; }
  .phone-number { font-size: 0.85rem !important; }
  .btn-primary { padding: 0.6rem 1rem !important; font-size: 0.8rem !important; }
  
  .hero { height: auto; padding: 8rem 0 4rem; min-height: 100vh; }
  .hero h1 { font-size: 2.2rem !important; }
  .hero p { font-size: 1rem !important; }
  .stats-container { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
  
  .footer-logo { justify-content: center; margin-bottom: 1rem; }
  .footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a, .footer-contact p {
    margin-bottom: 0.8rem;
  }
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 2.5rem;
  margin: 0 2rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-nav a { color: #ffffff !important; text-decoration: none; font-weight: 600; font-size: 0.8rem; transition: var(--transition); position: relative; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }

.main-nav a:hover {
  color: var(--green-dark);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-light);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 1rem;
  }
  .main-nav a { color: #ffffff !important; text-decoration: none; font-weight: 600; font-size: 0.8rem; transition: var(--transition); position: relative; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}

/* Hero Typography Overrides */
.hero h1 {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero p {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  opacity: 1;
}

/* FAQ Accordion Styles */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(142, 211, 90, 0.05);
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green-medium);
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
}