/* =========================================
   HOMEPAGE STYLES (style.css)
========================================= */

/* 1. GLOBAL THEME */
:root {
    --primary-pink: #ff6cab;
    --primary-blue: #4cc9f0;
    --primary-yellow: #ffd166;
    --primary-purple: #a55eea;
    --text-dark: #2c3e50;
    --bg-soft: #fff9fc;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background: #fff;
  
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.sub-title {
    color: var(--primary-pink);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(255, 108, 171, 0.1);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* 2. HERO SECTION */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-section #heroCarousel { position: absolute; inset: 0; }
.hero-section .hero-img {
    width: 100%; height: 100%; object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }

.hero-section .hero-overlay-pink {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(255, 108, 171, 0.4));
    z-index: 1;
}

.hero-section .hero-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}

.hero-section .hero-title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

 
.hero-section .hero-wave-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 3; }

/* 3. ABOUT SECTION (STICKER STYLE) */
.about-section { padding: 5rem 0; margin-top:-55px;}
.about-section .image-wrapper { position: relative; padding: 15px; }
.about-section .blob-image {
    border-radius: 30px; border: 10px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(-3deg); transition: 0.4s;
}
.about-section .blob-image:hover { transform: rotate(0deg) scale(1.02); }

.about-section .decor-dot { position: absolute; border-radius: 50%; z-index: -1; }
.about-section .dot-1 { width: 80px; height: 80px; background: var(--primary-yellow); top: -20px; right: -20px; opacity: 0.5; }
.about-section .dot-2 { width: 50px; height: 50px; background: var(--primary-blue); bottom: 10px; left: -20px; opacity: 0.5; }

.about-section .btn-custom {
    background: var(--primary-pink); color: #fff; font-family: 'Fredoka', sans-serif;
    padding: 12px 30px; border-radius: 50px; border: none;
    box-shadow: 0 5px 0 #d63384; transition: 0.2s;
}
.about-section .btn-custom:hover { background: #ff85b6; color: #fff; transform: translateY(-2px); box-shadow: 0 7px 0 #d63384; }

/* 4. SERVICE CARDS */
.services-section { background: var(--bg-soft); overflow: hidden; }
.services-section .service-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.4s;
    height: 100%; border-bottom: 5px solid transparent;
}
/* Colorful borders */
.services-section .col-lg-3:nth-child(1) .service-card { border-color: var(--primary-pink); }
.services-section .col-lg-3:nth-child(2) .service-card { border-color: var(--primary-blue); }
.services-section .col-lg-3:nth-child(3) .service-card { border-color: var(--primary-purple); }
.services-section .col-lg-3:nth-child(4) .service-card { border-color: var(--primary-yellow); }

.services-section .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.services-section .card-img-wrapper { height: 180px; overflow: hidden; }
.services-section .card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.services-section .service-card:hover img { transform: scale(1.1); }
.services-section .card-body { padding: 1.5rem; text-align: center; }

.services-section .btn-outline-pink {
    border: 2px solid var(--primary-pink); color: var(--primary-pink); font-weight: 700;
}
.services-section .btn-outline-pink:hover { background: var(--primary-pink); color: #fff; }

.services-section .doodle { position: absolute; font-size: 4rem; opacity: 0.3; }
.services-section .doodle-leaf { bottom: 50px; left: 20px; transform: rotate(45deg); }
.services-section .doodle-balloon { top: 50px; right: 20px; }

/* 5. FEATURES */
.feature-card {
    background: #fff; border-radius: 20px; border: 2px solid #f0f0f0; transition: 0.3s;
}
.feature-card .feature-card:hover { border-color: var(--primary-pink); transform: translateY(-5px); }
.feature-card .icon-circle {
    width: 70px; height: 70px; background: #fff0f6; color: var(--primary-pink);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 15px;
}

/* 6. CONTACT FORM */
.contact-section { background: #fff; }
.contact-section .contact-form-card {
    background: #fff; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}
.contact-section .form-control-custom {
    background: #f8f9fa; border: 2px solid #eee; border-radius: 50px; padding: 12px 20px;
}
.contact-section .form-control-custom:focus { background: #fff; border-color: var(--primary-pink); box-shadow: none; }
.contact-section textarea.form-control-custom { border-radius: 20px; }

.contact-section .check-list li { margin-bottom: 10px; font-weight: 600; font-size: 1.1rem; }
.contact-section .check-list i { color: var(--primary-pink); margin-right: 10px; }
.contact-section .btn-custom {
    background: var(--primary-pink); color: #fff; font-family: 'Fredoka', sans-serif;
    padding: 12px 30px; border-radius: 50px; border: none;
    box-shadow: 0 5px 0 #d63384; transition: 0.2s;
}
.contact-section .btn-custom:hover { background: #ff85b6; color: #fff; transform: translateY(-2px); box-shadow: 0 7px 0 #d63384; }
 
 
/* LOADER */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: #fff7fb ;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-balloons {
  display: flex;
  gap: 16px;
}
.balloon {
  width: 40px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  background:  #ff6cab ;
  animation: float 1.4s ease-in-out infinite;
}
.balloon:nth-child(2) {
  background: #4cc9f0 ;
  animation-delay: 0.25s;
}
.balloon:nth-child(3) {
  background:  #ffd166 ;
  animation-delay: 0.5s;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #999999;
  transform: translateX(-50%);
}
@keyframes float {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(-8px); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: #fff; padding: 12px 25px; border-radius: 50px;
    font-weight: 700; text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999; transition: 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); color: #fff; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s; }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 991px) {
      .hero-section{height:45vh}
    .hero-section { height: auto; padding-bottom: 50px; }
    .hero-title { font-size: 2.5rem; }
    .about-section { text-align: center; }
    .contact-form-card { margin-top: 30px; }
}