@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #c69c38; /* Gold */
  --primary-pink: #d9b662; /* Light Gold */
  --primary-mint: #997522; /* Dark Gold */
  --primary-yellow: #f0e6d2; /* Pale Gold */
  --dark-blue: #111111; /* Black / Dark */
  --text-gray: #444444; /* Dark Gray */
  --bg-light-blue: #fdfbf7; /* Light warm cream */
  --bg-dotted: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmZmZmIi8+CjxjaXJjbGUgY3g9IjMiIGN5PSIzIiByPSIxIiBmaWxsPSIjZTBlMGUwIi8+Cjwvc3ZnPg==');
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', cursive;
  color: #c69c38; /* Logo color */
  font-weight: normal;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-pink {
  background-color: #ffccd5;
  color: #333;
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 25px;
}
.btn-pink:hover {
  background-color: #fca0b1;
}

.btn-blue {
  background-color: var(--primary-blue);
  color: #fff;
}
.btn-blue:hover {
  background-color: #5593c7;
}

.btn-yellow {
  background-color: #c69c38;
  color: #fff;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: 700;
}
.btn-yellow:hover {
  background-color: #b58e33;
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 30px;
  padding: 12px 25px;
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-outline-pink {
  background-color: transparent;
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}
.btn-outline-pink:hover {
  background-color: var(--primary-pink);
  color: #fff;
}

/* Top Bar */
.top-bar {
  background-color: #c69c38;
  color: #fff;
  padding: 8px 10px;
  width: 100%;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.top-bar .left span {
  margin-right: 20px;
}
.top-bar .left i {
  margin-right: 5px;
}
.top-bar .right a {
  color: #fff;
  margin-left: 15px;
  font-weight: 500;
}
.top-bar .right a i {
  margin-right: 5px;
}

/* Header */
header {
  background-color: #fff;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  color: #f7941d; /* Orange for Peggy */
  font-size: 2.2rem;
  letter-spacing: 1px;
}
nav ul {
  display: flex;
  align-items: center;
}
nav ul li {
  margin: 0 15px;
}
nav {
  display: flex;
  align-items: center;
}
nav ul li a {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover, nav ul li a.active {
  color: #c69c38;
  border-bottom: 2px solid #c69c38;
}
.header-btn {
  margin-left: 80px; /* Increased to push right */
}

/* Hero Section */
/* Hero Slider */
.hero-slider {
  position: relative;
}
.heroSwiper {
  width: 100%;
  height: auto;
}
.hero-slide {
  position: relative;
  padding: 120px 0 150px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(30, 50, 70, 0.4);
  z-index: 1;
}
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: var(--primary-blue);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-subtitle {
  background-color: #a9d4d9;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.hero-slide h1 {
  color: #fff;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: none;
}
.hero-slide p {
  font-size: 1.2rem;
  color: #f8f8f8;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hero-btns .btn {
  margin: 0;
}


/* Section Common */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h5 {
  color: #c69c38;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Bringing Joy (Section 1) */
.joy-section {
  background: var(--bg-dotted);
  padding: 100px 0;
}
.joy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.joy-text .subtitle {
  margin-bottom: 15px;
}
.joy-divider {
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #9EC9D6 2px, transparent 2px);
  background-size: 15px 4px;
  background-repeat: repeat-x;
  margin: 25px 0;
}
.joy-images-new {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.real-collage-img, .real-collage-video {
  width: 100%;
  max-width: 520px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  display: block;
}
.real-collage-img:hover, .real-collage-video:hover {
  transform: scale(1.02);
}
a.slider-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.img-main {
  width: 75%;
  border-radius: 15px;
  border: 12px solid #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: rotate(4deg);
  z-index: 2;
  position: absolute;
  right: 0;
  top: 10%;
}
.img-sub {
  width: 50%;
  border-radius: 15px;
  border: 10px solid #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transform: rotate(-5deg);
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 10%;
}
.joy-graphic-popper {
  position: absolute;
  top: -20px;
  left: 20%;
  width: 120px;
  z-index: 4;
  transform: rotate(-10deg);
}
.joy-graphic-popper img {
  width: 100%;
}

/* Stats */
.stats-section {
  background-color: #fff;
  padding: 40px 0 20px;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-bottom: 2px dotted #d1d5db;
  padding-bottom: 40px;
  margin-bottom: 0;
}
.stat-box {
  text-align: left;
  border-right: 2px dotted #d1d5db;
  padding-right: 20px;
  padding-left: 20px;
}
.stat-box:first-child {
  padding-left: 0;
}
.stat-box:last-child {
  border-right: none;
}
.stat-box h4 {
  font-size: 3.5rem;
  color: #c69c38; /* Updating to logo color matching screenshot */
  display: flex;
  align-items: flex-start;
  font-family: 'Fredoka One', cursive;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-box h4 sup.mint-sup {
  font-size: 1.5rem;
  color: #c69c38;
  margin-left: 5px;
  margin-top: 10px;
}
.stat-box h4 span {
  color: #c69c38 !important;
}
.stat-box h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #c69c38;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-box p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.logos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.logos-container img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Ultimate Popular Party (Blue Clouds) */
.ultimate-party {
  background-color: var(--bg-light-blue);
  position: relative;
  padding: 100px 0;
}
.cloud-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: repeat-x;
  background-size: contain;
}
.cloud-top {
  top: -1px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05c71.21,53.86,183.3,28.84,213.68-54.49,27-74-72.2-127.35-125.1-94.46-32.32,20.08-49.88,57.17-73.65,85.12C41.31,33.09,19.34,11.83,0,0Z" fill="%23ffffff"/></svg>'); /* Need proper cloud svg, using simple wave for now */
}
.cloud-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.ultimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.ultimate-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.ultimate-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--dark-blue);
}
.check-list li i {
  color: #fff;
  background-color: var(--primary-blue);
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex; justify-content: center; align-items: center;
  font-size: 0.7rem;
  margin-right: 15px;
}
.ultimate-images {
  position: relative;
}
.ultimate-img-main {
  border-radius: 20px;
  border: 10px solid #fff;
  transform: rotate(3deg);
}
.ultimate-img-sub {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 50%;
  border-radius: 20px;
  border: 8px solid #fff;
  transform: rotate(-5deg);
}
.price-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  color: var(--dark-blue);
  font-family: 'Fredoka One', cursive;
  z-index: 10;
}
.price-badge span {
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-gray);
}
.price-badge strong {
  font-size: 2rem;
  color: var(--primary-pink);
}

/* Blob Section (Discover Fun) */
.blob-section {
  padding: 80px 0;
  position: relative;
  background-color: #fcfdfe;
}
.blob-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.blob-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #c69c38;
}
.btn-pill {
  display: inline-block;
  background-color: var(--primary-pink);
  color: var(--dark-blue);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  text-decoration: none;
}
.blob-image-container {
  position: relative;
  text-align: center;
}
.blob-image {
  width: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.blob-image img {
  width: 100%;
  display: block;
}
.blob-balloons {
  position: absolute;
  top: 0;
  left: -20px;
  z-index: 5;
}
.balloon {
  width: 40px; height: 50px;
  border-radius: 50%;
  position: absolute;
}
.balloon-1 { background-color: #FF6B6B; top: -30px; left: 10px; transform: rotate(-15deg); }
.balloon-2 { background-color: #FFD93D; top: -10px; left: 50px; transform: rotate(5deg); }
.balloon-3 { background-color: #4D96FF; top: -50px; left: 40px; transform: rotate(15deg); }

.feature-box {
  display: flex;
  align-items: center;
}
.feature-divider {
  height: 1px;
  border-bottom: 1px dashed #ccc;
  margin: 15px 0;
  width: 100%;
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.feature-box h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #c69c38;
}
.feature-box p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
}
.bg-blue { background-color: #9EC9D6; }
.bg-pink { background-color: #FFAEC0; }
.bg-mint { background-color: #88CBAE; }
.bg-blue2 { background-color: #72AEE4; }

/* Categories Grid */
.categories-section {
  padding: 60px 0 20px;
  background-color: #fff;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.category-card {
  text-align: center;
}
.category-img-wrap {
  margin-bottom: 20px;
}
.category-img-wrap img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.category-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* Video Section */
.video-section {
  background: url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.video-content {
  position: relative;
  z-index: 1;
}
.play-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #fff;
  color: var(--primary-pink);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
}
.video-section h2 {
  color: #fff;
  font-size: 3rem;
  max-width: 700px;
  margin: 0 auto 20px;
}
.video-section p {
  color: #fff;
  margin-bottom: 30px;
}

/* Trusted Experts (Pill Cards) */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.expert-card {
  border-radius: 100px;
  padding: 15px 15px 40px;
  text-align: center;
  color: #fff;
}
.expert-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid rgba(255,255,255,0.3);
}
.expert-card h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.expert-card p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Commitment Section */
.commitment-section {
  position: relative;
}
.commitment-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.commitment-overlay-text {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  text-align: center;
}
.commitment-overlay-text h2 {
  color: #fff;
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  max-width: 800px;
  margin: 0 auto;
}
.commitment-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.commit-box {
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}
.commit-box i {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.commit-box h3 {
  color: #fff;
  margin-bottom: 15px;
}
.commit-box p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Pricing */
.pricing-section {
  padding-top: 150px; /* space for overlapping boxes */
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
}
.price-header {
  padding: 20px;
  color: #fff;
}
.price-header h3 {
  color: #fff;
  margin-bottom: 5px;
}
.price-header p {
  font-size: 0.8rem;
  opacity: 0.9;
}
.price-amount {
  padding: 20px 0;
  background: #fcfcfc;
}
.price-amount h2 {
  font-size: 3rem;
  color: var(--primary-pink);
  margin: 0;
}
.price-features {
  padding: 20px;
  text-align: left;
}
.price-features li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-gray);
}
.price-features li i {
  color: var(--primary-mint);
  margin-right: 10px;
}
.price-btn-wrap {
  padding: 0 20px 30px;
}

/* Contact Section */
.contact-section {
  background-color: #f6f7f9;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary-blue);
}
.contact-info-wrap h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-info-wrap p {
  margin-bottom: 30px;
}
.info-box {
  background: var(--primary-blue);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}
.info-item {
  display: flex;
  margin-bottom: 25px;
}
.info-item:last-child { margin-bottom: 0; }
.info-item h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.info-item p {
  font-size: 0.95rem;
}

/* Testimonial */
.testimonial-section {
  text-align: center;
  padding: 80px 0;
}
.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.quote-mark {
  font-size: 4rem;
  color: var(--primary-pink);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}
.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 30px;
}
.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-author h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-author p {
  font-size: 0.85rem;
  color: var(--primary-blue);
}

footer {
  background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('../image/slider_1.png') center/cover no-repeat;
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
  border-top: 5px solid var(--primary-pink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 50px;
}
.footer-logo h2 {
  color: #f7941d;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-contact li i {
  margin-right: 10px;
}
.footer-links h4, .footer-newsletter h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #fff;
  font-size: 0.9rem;
}
.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.newsletter-form {
  display: flex;
}
.newsletter-form input {
  padding: 10px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 100%;
  outline: none;
}
.newsletter-form button {
  background: var(--primary-pink);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 0.85rem;
}
.footer-bottom .social-icons {
  margin-bottom: 10px;
}
.footer-bottom .social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
}

/* Wavy Section Dividers for SVG Backgrounds */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.wave-top { top: -59px; }
.wave-bottom { bottom: -59px; transform: rotate(180deg); }

/* Birthday Decoration Slider */
.birthday-slider-section {
  padding: 20px 0 20px;
  background: linear-gradient(120deg, #fdfbfb 0%, #f4eae6 100%);
}
.kids-party-slider-section {
  padding: 10px 0 20px;
  background-color: #fff;
  background-image: 
    radial-gradient(at 0% 0%, rgba(252, 182, 195, 0.3) 0px, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(108, 170, 221, 0.3) 0px, transparent 50%), 
    radial-gradient(at 100% 100%, rgba(158, 220, 207, 0.3) 0px, transparent 50%), 
    radial-gradient(at 0% 100%, rgba(241, 213, 112, 0.3) 0px, transparent 50%);
}
.newborn-slider-section {
  padding: 10px 0 60px;
  background-color: #f6fbff;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(108, 170, 221, 0.04) 0px,
    rgba(108, 170, 221, 0.04) 20px,
    transparent 20px,
    transparent 40px
  );
}
.slider-card {
  text-align: center;
  background: transparent;
}
.slider-img-wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.slider-img-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  z-index: 10;
  text-transform: uppercase;
}
.badge-red {
  background-color: #8b3a3a;
}
.badge-purple {
  background-color: #4a235a;
}
.badge-blue {
  background-color: #2874a6;
}
.slider-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #c69c38;
  font-weight: 600;
  margin-top: 15px;
}

.form-control-light {
    background-color: #f5f8fa;
    border: 1px solid #e1e8ed;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.95rem;
    align-items: center;
}
.hours-list li:last-child {
    margin-bottom: 0;
}
.hours-list li .dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255,255,255,0.4);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a, nav ul li .dropdown-content a {
    color: var(--dark-blue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover, nav ul li .dropdown-content a:hover {
    background-color: var(--primary-mint);
    color: white;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Category Grid Page Styles */
.category-page-header {
    background-color: var(--primary-mint);
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.category-page-header h1 {
    color: white;
    font-size: 3rem;
    font-family: 'Fredoka One', cursive;
    position: relative;
    z-index: 1;
}

.category-grid-section {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #c69c38;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Theme Card Styles */
.theme-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.theme-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid var(--primary-pink);
}
.theme-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.theme-card:hover .theme-img-wrap img {
    transform: scale(1.1);
}
.theme-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.theme-title {
    color: var(--primary-pink);
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.theme-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.theme-btn {
    display: inline-block;
    background: #ffcc00; /* Yellow */
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: auto;
}
.theme-btn:hover {
    background: var(--primary-pink);
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Mobile Responsiveness & App-like Feel */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none !important;
    }
    
    /* Header & Mobile Menu */
    header .container {
        position: relative;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    header .header-btn {
        display: none; /* Hide header call button on mobile, use bottom nav instead */
    }
    .page-header,
    .category-page-header {
        padding: 35px 0 !important;
    }
    .page-header h1,
    .category-page-header h1 {
        font-size: 1.8rem !important;
    }
    nav ul {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    nav ul.show {
        left: 0;
    }
    nav ul li {
        margin: 15px 0;
    }
    
    /* Padding Adjustments */
    .about-preview, .services, .why-us, .testimonials, .contact-section {
        padding: 40px 0;
    }
    .categories-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .joy-section {
        padding: 20px 0 40px 0;
    }
    .hero-slide {
        padding: 60px 0 60px;
    }
    h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    h4 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    .hero-slider .hero-content h1 {
        font-size: 26px !important;
    }
    .section-title h2 {
        font-size: 24px !important;
    }
    .category-title {
        font-size: 14px !important;
    }
    
    /* Grids to 1 Column */
    .joy-grid,
    .ultimate-grid,
    .blob-grid,
    .experts-grid,
    .pricing-grid,
    .contact-grid,
    .commitment-boxes,
    .discover-grid,
    .inline-style-69 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .inline-style-78 {
        order: -1;
    }
    .inline-style-70 {
        order: 1;
        padding-right: 0 !important;
        margin-top: 10px;
    }
    .inline-style-79 {
        width: 290px !important;
        height: 290px !important;
    }
    
    .commitment-boxes {
        margin-top: -30px !important;
    }
    
    /* Grids to 2 Columns (2x2) */
    .categories-grid,
    .features-grid,
    .stats-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }
    
    .stats-container {
        border-bottom: none !important;
        padding-bottom: 20px;
        gap: 20px !important;
    }
    .stat-box {
        border-right: none !important;
        text-align: center;
        padding: 20px 15px !important;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    .stat-box h4 {
        font-size: 2rem !important;
        justify-content: center;
    }
    .stat-box h4 sup.mint-sup {
        font-size: 1.2rem !important;
    }
    
    .categories-grid .category-card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        padding: 10px;
    }
    
    /* Make category images square and fit well in 2-column mobile layout */
    .category-img-wrap {
        height: auto; /* let aspect ratio control height */
        aspect-ratio: 1;
    }
    .category-img-wrap img {
        height: 100%;
        object-fit: cover;
    }
    
    /* Adjust feature box padding for 2-column */
    .features-grid > div {
        padding: 20px !important;
    }
    .features-grid h3 {
        font-size: 1rem !important;
    }
    .features-grid p {
        font-size: 0.8rem !important;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}



/* Extracted Inline Styles */
.inline-style-1 {
    margin-right:15px;
}
.inline-style-2 {
    height:90px;
    filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.15));
}
.inline-style-3 {
    text-transform:none;
}
.inline-style-4 {
    background-image:url('image/ai_slider_1.png');
}
.inline-style-5 {
    margin-right:8px;
}
.inline-style-6 {
    background-image:url('image/ai_slider_2.png');
}
.inline-style-7 {
    background-image:url('image/ai_slider_3.png');
}
.inline-style-8 {
    background-image:url('image/ai_slider_4.png');
}
.inline-style-9 {
    color:#63B4D1; text-transform:uppercase; font-size:0.9rem; letter-spacing:1px; font-weight:700; font-family:'Poppins', sans-serif; margin-bottom:10px;
}
.inline-style-10 {
    color:#1A4D6D; font-size:2.8rem; margin-bottom:20px; line-height:1.1;
}
.inline-style-11 {
    color:#666; margin-bottom:30px; font-size:0.95rem; line-height:1.6;
}
.inline-style-12 {
    margin-top:10px;
}
.inline-style-13 {
    border-radius:50%;
}
.inline-style-14 {
    color:var(--primary-pink);
}
.inline-style-15 {
    padding:60px 0;
}
.inline-style-16 {
    background-color:#fdf6e3; padding:30px; border-radius:20px; text-align:left; position:relative; overflow:hidden;
}
.inline-style-17 {
    position:absolute; top:0; right:0; width:100px; height:100px; background:rgba(255,255,255,0.4); border-radius:50%; transform:translate(30%, -30%);
}
.inline-style-18 {
    background-color:#4a0d4a; color:#fff; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:20px; position:relative; z-index:1;
}
.inline-style-19 {
    color:#4a0d4a; font-size:1.2rem; margin-bottom:10px; font-family:'Poppins', sans-serif; font-weight:700; position:relative; z-index:1;
}
.inline-style-20 {
    color:#666; font-size:0.9rem; line-height:1.5; position:relative; z-index:1;
}
.inline-style-21 {
    background-color:#5c0b47; padding:30px; border-radius:20px; text-align:left; position:relative; overflow:hidden;
}
.inline-style-22 {
    position:absolute; top:0; right:0; width:100px; height:100px; background:rgba(255,255,255,0.1); border-radius:50%; transform:translate(30%, -30%);
}
.inline-style-23 {
    background-color:#fff; color:#4a0d4a; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:20px; position:relative; z-index:1;
}
.inline-style-24 {
    color:#fff; font-size:1.2rem; margin-bottom:10px; font-family:'Poppins', sans-serif; font-weight:700; position:relative; z-index:1;
}
.inline-style-25 {
    color:rgba(255,255,255,0.8); font-size:0.9rem; line-height:1.5; position:relative; z-index:1;
}
.inline-style-26 {
    margin-bottom:40px; color:var(--dark-blue); font-family:'Fredoka One', cursive; text-align:left; font-size:2.5rem;
}
.inline-style-27 {
    display:flex; align-items:center; gap:40px; flex-wrap:wrap;
}
.inline-style-28 {
    flex:1; min-width:300px;
}
.inline-style-29 {
    text-align:left; margin-bottom:20px;
}
.inline-style-30 {
    font-size:2.5rem; margin-bottom:15px; color:var(--dark-blue);
}
.inline-style-31 {
    color:#666; line-height:1.8; margin-bottom:20px; font-size:1.05rem;
}
.inline-style-32 {
    color:#666; line-height:1.8; margin-bottom:30px; font-size:1.05rem;
}
.inline-style-33 {
    flex:1; min-width:300px; text-align:center;
}
.inline-style-34 {
    width:100%; max-width:500px; border-radius:20px; box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
.inline-style-35 {
    position:relative;
}
.inline-style-36 {
    background-color:#fff; padding:100px 0; position:relative;
}
.inline-style-37 {
    color:#8cc4e8; font-family:'Poppins', sans-serif; font-weight:600; text-transform:uppercase; margin-bottom:10px;
}
.inline-style-38 {
    font-size:2.8rem; color:var(--dark-blue); font-family:'Fredoka One', cursive; line-height:1.2; margin-bottom:20px;
}
.inline-style-39 {
    color:#666; font-size:0.95rem; line-height:1.6; margin-bottom:30px;
}
.inline-style-40 {
    background-color:#fad6d5; color:var(--dark-blue); font-weight:600; padding:12px 30px; border-radius:8px;
}
.inline-style-41 {
    position:relative; text-align:center;
}
.inline-style-42 {
    width:100%; max-width:350px; height:450px; margin:0 auto; overflow:hidden; border-radius:0; box-shadow:0 15px 35px rgba(0,0,0,0.1);
}
.inline-style-43 {
    width:100%; height:100%; object-fit:cover;
}
.inline-style-44 {
    position:absolute; top:-30px; left:-10px; width:130px; z-index:2; border-radius:50%;
}
.inline-style-45 {
    list-style:none; padding:0; margin:0;
}
.inline-style-46 {
    display:flex; gap:20px; border-bottom:1px dashed #d1d5db; padding-bottom:20px; margin-bottom:20px;
}
.inline-style-47 {
    width:60px; height:60px; min-width:60px; background-color:#9acbd9; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;
}
.inline-style-48 {
    color:var(--dark-blue); font-family:'Fredoka One', cursive; font-size:1.2rem; margin-bottom:8px;
}
.inline-style-49 {
    color:#666; font-size:0.9rem; line-height:1.5; margin:0;
}
.inline-style-50 {
    width:60px; height:60px; min-width:60px; background-color:#fcaeb5; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;
}
.inline-style-51 {
    width:60px; height:60px; min-width:60px; background-color:#93d0b5; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;
}
.inline-style-52 {
    display:flex; gap:20px;
}
.inline-style-53 {
    width:60px; height:60px; min-width:60px; background-color:#7ab2d6; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:24px;
}
.inline-style-54 {
    position:relative; overflow:hidden; padding:80px 0;
}
.inline-style-55 {
    position:absolute; top:-40px; left:-40px; width:100px; z-index:2; border-radius:50%; box-shadow:0 10px 20px rgba(0,0,0,0.1);
}
.inline-style-56 {
    margin-bottom:30px;
}
.inline-style-57 {
    width:100%; border-radius:8px;
}
.inline-style-58 {
    padding-top:20px;
}
.inline-style-59 {
    font-size:3rem; margin-bottom:20px; color:var(--dark-blue); font-family:'Fredoka One', cursive; line-height:1.1;
}
.inline-style-60 {
    color:#666; line-height:1.8; margin-bottom:40px;
}
.inline-style-61 {
    background:#7ab2d6; padding:15px; border-radius:25px; position:relative; margin-top:20px; max-width:90%;
}
.inline-style-62 {
    border:2px dashed rgba(255,255,255,0.6); border-radius:18px; padding:30px 40px;
}
.inline-style-63 {
    color:#fff; font-family:'Fredoka One', cursive; margin-bottom:25px; font-size:1.8rem;
}
.inline-style-64 {
    position:absolute; right:-60px; bottom:10px; width:120px; z-index:2; border-radius:50%; box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
.inline-style-65 {
    background-color:#ffffff; padding:100px 0; position:relative;
}
.inline-style-66 {
    text-align:center; margin-bottom:60px;
}
.inline-style-67 {
    color:#8cc4e8; font-family:'Poppins', sans-serif; font-weight:600; text-transform:uppercase; margin-bottom:10px; letter-spacing:1px;
}
.inline-style-68 {
    font-size:2.8rem; color:var(--dark-blue); font-family:'Fredoka One', cursive; line-height:1.2;
}
.inline-style-69 {
    display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; max-width:1000px; margin:0 auto;
}
.inline-style-70 {
    padding-right:20px;
}
.inline-style-71 {
    margin-bottom:25px;
}
.inline-style-72 {
    color:#fcaeb5; font-size:1.2rem;
}
.inline-style-73 {
    color:#d1d5db; font-size:1.2rem;
}
.inline-style-74 {
    color:var(--dark-blue); font-family:'Fredoka One', cursive; font-size:1.4rem; line-height:1.6; margin-bottom:30px;
}
.inline-style-75 {
    width:50px; height:2px; background-color:#fcaeb5; margin-bottom:25px;
}
.inline-style-76 {
    color:var(--dark-blue); font-family:'Poppins', sans-serif; font-weight:700; font-size:1.1rem; margin-bottom:5px;
}
.inline-style-77 {
    color:#666; font-size:0.8rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; margin:0;
}
.inline-style-78 {
    position:relative; display:flex; justify-content:center;
}
.inline-style-79 {
    position:relative; width:350px; height:350px; border-radius:50%; padding:15px; background-color:#fff; box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.inline-style-80 {
    width:100%; height:100%; object-fit:cover; border-radius:50%;
}
.inline-style-81 {
    position:absolute; top:10px; right:10px; background-color:#fff; border-radius:10px; padding:5px 15px;
}
.inline-style-82 {
    color:#8cc4e8; font-size:4.5rem; line-height:1;
}
.inline-style-83 {
    height:75px; margin-bottom:20px;
}
.inline-style-84 {
    font-size:0.9rem; line-height:1.6; margin-bottom:20px; color:#e0e0e0;
}
.inline-style-85 {
    color:#fff; margin-bottom:20px; font-family:'Poppins', sans-serif;
}
.inline-style-86 {
    background:url('image/slider_1.png') center/cover; position:relative; padding:100px 0; text-align:center;
}
.inline-style-87 {
    position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6);
}
.inline-style-88 {
    position:relative; z-index:1;
}
.inline-style-89 {
    color:white; font-family:'Fredoka One', cursive; font-size:3rem; margin:0;
}
.inline-style-90 {
    background:url('image/kids_1.png') center/cover; position:relative;
}
.inline-style-91 {
    box-shadow:0 10px 20px rgba(0,0,0,0.05); border-radius:0; overflow:hidden; text-align:center; padding-bottom:20px;
}
.inline-style-92 {
    position:relative; margin-bottom:15px;
}
.inline-style-93 {
    position:absolute; top:15px; left:15px; padding:5px 15px; border-radius:20px; color:white; font-size:0.8rem; font-weight:bold; z-index:2;
}
.inline-style-94 {
    width:100%;
}
.inline-style-95 {
    margin:0; padding:10px;
}
.inline-style-96 {
    background:url('image/slider_1.png') center/cover; position:relative;
}
.inline-style-97 {
    list-style:none; padding:0; margin-top:30px; margin-bottom:40px; font-size:1.1rem; line-height:1.8; color:#444;
}
.inline-style-98 {
    margin-bottom:15px;
}
.inline-style-99 {
    color:var(--primary-pink); margin-right:15px; font-size:1.5rem; vertical-align:middle;
}
.inline-style-100 {
    padding:80px 0;
}
.inline-style-101 {
    color:var(--primary-blue); font-weight:600; text-transform:uppercase;
}
.inline-style-102 {
    font-size:2.5rem; margin-bottom:15px; color:var(--dark-blue); font-family:'Fredoka One', cursive;
}
.inline-style-103 {
    text-align:center; margin-bottom:50px;
}
.inline-style-104 {
    font-size:2.5rem; color:var(--dark-blue); font-family:'Fredoka One', cursive;
}
.inline-style-105 {
    color:#666; line-height:1.6;
}
.inline-style-106 {
    color:var(--primary-mint);
}
.inline-style-107 {
    color:var(--primary-yellow);
}
.inline-style-108 {
    background:url('image/slider_7.png') center/cover; position:relative;
}
.inline-style-109 {
    box-shadow:0 15px 30px rgba(0,0,0,0.15); border-radius:15px; overflow:hidden; text-align:center; padding-bottom:20px;
}
.inline-style-110 {
    background:url('image/cat_newborn.png') center/cover; position:relative;
}

/* Custom overrides for mobile spacing and floating contact buttons removal */
.floating-contact {
    display: flex;
}

@media (max-width: 768px) {
    /* Prevent contact form overlay image from overlapping labels on mobile */
    .inline-style-55 {
        width: 80px !important;
        top: -45px !important;
        left: 20px !important;
    }
    
    /* Prevent services section balloons overlay from overlapping preceding text on mobile */
    .inline-style-44 {
        top: 15px !important;
        left: 15px !important;
        width: 100px !important;
    }
}

/* Services Slider Section */
.services-slider-section {
    background-color: #fdfbf7;
    padding: 60px 0;
}
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e8dd;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 81, 0, 0.12);
    border-color: #f8c0b8;
}
.service-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}
.service-icon-box.bg-pink { background: linear-gradient(135deg, #ff758c, #ff7eb3); }
.service-icon-box.bg-blue { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.service-icon-box.bg-mint { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.service-icon-box.bg-purple { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.service-icon-box.bg-yellow { background: linear-gradient(135deg, #f6d365, #fda085); }

.service-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.btn-service {
    display: inline-block;
    padding: 8px 22px;
    background-color: var(--dark-blue);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}
.btn-service:hover {
    background-color: #ff5e7e;
    color: #fff;
}

/* Service Single Pages & Games Grid */
.game-grid-section {
    padding: 60px 0 90px 0;
    background-color: #fdfbf7;
}
.game-polaroid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.game-polaroid-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 22px 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #eae2d6;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}
.game-polaroid-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 35px rgba(255, 94, 126, 0.15);
    border-color: #f8c0b8;
}
.game-polaroid-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f5f5f5;
    margin-bottom: 16px;
}
.game-polaroid-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}
.game-polaroid-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
}
.game-polaroid-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.game-polaroid-btn:hover {
    background-color: #ff5e7e;
    color: #fff;
}
.badge-top-left {
    position: absolute;
    top: 26px;
    left: 26px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* DecorTown Style Game Poster Cards */
.decor-poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 0 60px 0;
}
.decor-poster-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.decor-poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}
.decor-poster-header {
    padding: 16px 15px 10px 15px;
    text-align: center;
    position: relative;
    background: #ffffff;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.decor-poster-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 22px;
    opacity: 0.85;
}
.decor-poster-title {
    font-family: 'Courier New', Courier, monospace, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
.decor-poster-subtitle {
    font-family: 'Courier New', Courier, monospace, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #555;
    text-transform: uppercase;
}
.decor-poster-img-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 320px;
    height: 320px;
    overflow: hidden;
}
.decor-poster-scallop-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: 3;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,10 Q2.5,0 5,10 Q7.5,0 10,10 Q12.5,0 15,10 Q17.5,0 20,10 Q22.5,0 25,10 Q27.5,0 30,10 Q32.5,0 35,10 Q37.5,0 40,10 Q42.5,0 45,10 Q47.5,0 50,10 Q52.5,0 55,10 Q57.5,0 60,10 Q62.5,0 65,10 Q67.5,0 70,10 Q72.5,0 75,10 Q77.5,0 80,10 Q82.5,0 85,10 Q87.5,0 90,10 Q92.5,0 95,10 Q97.5,0 100,10 L100,10 L0,10 Z" fill="%23ffffff"/></svg>');
    background-size: 100% 100%;
}
.decor-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.decor-poster-card:hover .decor-poster-img {
    transform: scale(1.05);
}
.decor-poster-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 15px 12px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 4;
    box-sizing: border-box;
}
.decor-poster-bottom-title {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.decor-poster-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}
.decor-poster-whatsapp-btn:hover {
    transform: scale(1.15);
}

/* Lightbox Modal */
.game-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.game-lightbox-modal.active {
    display: flex;
}
.game-lightbox-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.game-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}
