/* =======================================================
   MASTER SERVICES STYLESHEET
   File Name: services.css
   Used for: Face Painting, Balloon Twisting, Complete Party
======================================================= */

/* 1. GLOBAL THEME & VARIABLES */
: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;
    background: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

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;
}

 /* 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);
}

/* 3. HERO SECTION */
.hero-section {
    position: relative; height: 75vh; min-height: 450px; background: #000; overflow: hidden;
    margin-bottom: -70px;
}
#heroCarousel { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero-overlay-pink {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(255, 108, 171, 0.5));
}
.hero-title { color: #fff; font-size: 3.5rem; text-shadow: 2px 2px 0px rgba(0,0,0,0.3); }
.lead {
    color: #fff; font-size: 1.3rem; font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.3); padding: 10px 20px; border-radius: 15px;
    display: inline-block;
}
.hero-wave-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }

/* 4. INTRO SECTION */
.lead-text { font-size: 1.1rem; line-height: 1.8; }
.image-wrapper { position: relative; padding: 20px; }
.blob-image {
    width: 100%; border-radius: 30px; border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: rotate(-3deg); transition: 0.4s;
}
.blob-image:hover { transform: rotate(0deg) scale(1.02); }
.decor-dot { position: absolute; border-radius: 50%; z-index: -1; }
.dot-1 { width: 80px; height: 80px; background: var(--primary-yellow); top: -10px; right: -10px; opacity: 0.5; }
.dot-2 { width: 50px; height: 50px; background: var(--primary-blue); bottom: 10px; left: -10px; opacity: 0.5; }

/* 5. FEATURE GRID (STICKER STYLE) */
.services-section { background: var(--bg-soft); }
.sticker-list-item {
    background: #fff; padding: 20px; border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex; align-items: center; border: 2px solid transparent;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sticker-list-item:hover {
    border-color: var(--primary-pink); transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.sticker-icon {
    width: 60px; height: 60px; background: var(--bg-soft); color: var(--primary-pink);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-right: 20px; flex-shrink: 0;
    border: 2px dashed rgba(0,0,0,0.1);
}
.sticker-list-item:hover .sticker-icon {
    background: var(--primary-pink); color: #fff; border-style: solid; border-color: #fff;
}

/* 6. GALLERY SECTION (EXISTING WORK) */
.gallery-card {
    border-radius: 20px; overflow: hidden; position: relative;
    border: 5px solid #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s; background: #000;
}
.gallery-card img {
    width: 100%; height: 300px; object-fit: cover; transition: 0.5s; opacity: 0.9;
}
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(255, 108, 171, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; font-size: 3rem; color: #fff;
}
.gallery-card:hover { transform: translateY(-10px); }
.gallery-card:hover img { transform: scale(1.1); opacity: 1; }
.gallery-card:hover .gallery-overlay { opacity: 1; }

/* 7. PRICING CARDS */
.pricing-card {
    background: #fff; border-radius: 30px; padding: 3rem 2rem;
    text-align: center; border: 2px solid #f0f0f0; transition: 0.4s;
    position: relative; overflow: hidden; height: 100%;
}
.pricing-card:hover {
    transform: translateY(-15px); box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: var(--primary-pink);
}
.pricing-duration {
    font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.pricing-price {
    font-family: 'Fredoka', sans-serif; font-size: 3.5rem; color: var(--primary-pink);
    line-height: 1; margin-bottom: 1rem; text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
.pricing-card .btn-custom {
    background: var(--primary-pink); color: #fff; font-family: 'Fredoka', sans-serif;
    padding: 12px 30px; border-radius: 50px; border: none; font-size: 1.1rem;
    box-shadow: 0 5px 0 #d63384; transition: 0.2s;
}
.pricing-card .btn-custom:hover {
    background: #ff85b6; color: #fff; transform: translateY(-2px); box-shadow: 0 7px 0 #d63384;
}
.pricing-card .btn-custom:active { transform: translateY(4px); box-shadow: none; }

.addons-box {
    background: #fff; border-radius: 30px; border: 3px dashed #cbd5e0;
    padding: 2.5rem; position: relative;
}
.addon-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee;
}
.addon-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.addon-price {
    font-family: 'Fredoka', sans-serif; color: var(--primary-pink); font-size: 1.4rem;
}

/* 8. ANIMATIONS & WHATSAPP */
.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; }

.reveal {
    opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-visible { opacity: 1; transform: translateY(0); }
.col-lg-4:nth-child(2) .reveal { transition-delay: 0.1s; }
.col-lg-4:nth-child(3) .reveal { transition-delay: 0.2s; }

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section{ height:45vh !important}
    .about-section { text-align: center; }
    .image-wrapper { margin-bottom: 40px; }
}