/* ============================================
   MM PARTY RENTALS - Phase 1: Foundation
   Kid-Friendly Color Palette
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary kid-friendly palette */
  --pink:        #FF6B9D;
  --purple:      #845EC2;
  --sky-blue:    #4FC3F7;
  --mint:        #38EF7D;
  --sunny:       #FFD93D;
  --coral:       #FF6F61;
  --lavender:    #B39DDB;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #FFF8F0;
  --light-gray:  #F5F0FF;
  --gray:        #888;
  --dark:        #2D2045;
  --darker:      #1A1028;

  /* Functional */
  --header-bg:   #FFFFFF;
  --header-shadow: rgba(132, 94, 194, 0.12);
  --body-bg:     var(--off-white);

  /* Typography */
  --font-heading: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Sizing */
  --header-height: 70px;
  --container-max:  1200px;
  --radius:        12px;
  --radius-lg:     20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--header-bg);
  box-shadow: 0 2px 20px var(--header-shadow);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(132, 94, 194, 0.2);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  background: var(--light-gray);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
  transition: color 0.25s ease;
}

.phone-link:hover {
  color: var(--pink);
}

.phone-icon {
  font-size: 1.15rem;
}

/* Cart button */
.cart-btn {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
  transition: transform 0.2s ease;
}

.cart-btn:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
  position: relative;
  margin-top: var(--header-height);
  height: 520px;
  overflow: hidden;
}

.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide background gradients */
.hero-slide[data-bg="1"] {
  background: linear-gradient(135deg, #FF6B9D 0%, #C06BDB 50%, #845EC2 100%);
}

.hero-slide[data-bg="2"] {
  background: linear-gradient(135deg, #4FC3F7 0%, #38EF7D 50%, #11998E 100%);
}

.hero-slide[data-bg="3"] {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6F61 50%, #FF6B9D 100%);
}

/* Decorative circles on slides */
.hero-slide::before,
.hero-slide::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-slide::before {
  width: 400px;
  height: 400px;
  background: var(--white);
  top: -100px;
  right: -80px;
}

.hero-slide::after {
  width: 250px;
  height: 250px;
  background: var(--white);
  bottom: -60px;
  left: -40px;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 0 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

/* Hero CTA button */
.btn-hero {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ============================================
   PHASE 2: Welcome, Order Date, Categories
   ============================================ */

/* ---------- Shared Section Styles ---------- */
.section {
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
}

/* ---------- Welcome ---------- */
.welcome {
  background: var(--white);
  text-align: center;
}

.welcome-text {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.welcome-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.welcome-extra.expanded {
  max-height: 300px;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  margin-top: 8px;
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}

/* ---------- Order By Date ---------- */
.order-date {
  padding: 40px 0;
}

.order-date-box {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(132, 94, 194, 0.25);
}

.order-date-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.order-date-box h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.order-date-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.date-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.date-input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 220px;
  outline: none;
}

.date-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.btn-primary {
  background: var(--sunny);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.5);
}

/* ---------- Categories ---------- */
.categories {
  background: var(--light-gray);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 16px;
  padding: 0 12px;
}

.category-card p {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 4px 12px 20px;
}

.category-card p strong {
  color: var(--purple);
  font-size: 1.05rem;
}

/* ============================================
   PHASE 3: Products & Gallery
   ============================================ */

/* ---------- Shared ---------- */
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ---------- Rentals Toolbar ---------- */
.rentals {
  background: var(--white);
}

.rentals-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid #E8E0F0;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.25s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23845EC2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.filter-select:focus {
  border-color: var(--purple);
}

.search-box {
  position: relative;
  flex: 0 1 300px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.5;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border: 2px solid #E8E0F0;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s ease;
}

.search-input:focus {
  border-color: var(--purple);
}

.search-input::placeholder {
  color: #BBB;
  font-weight: 400;
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 200px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #F0EAF5;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(132, 94, 194, 0.15);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #F5F0FF, #FFF0F5);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-gray);
  color: var(--purple);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  width: fit-content;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F0EAF5;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
}

.product-card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.btn-add-cart {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(132, 94, 194, 0.35);
}

/* ---------- Loading Spinner ---------- */
.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #E8E0F0;
  border-top-color: var(--purple);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-spinner p {
  color: var(--gray);
  font-weight: 600;
}

/* ---------- No Results ---------- */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.no-results h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--gray);
}

/* ---------- Photo Gallery ---------- */
.gallery {
  background: var(--light-gray);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 20px;
  border: 2px solid #E8E0F0;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.gallery-filter-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-height: 200px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  background: #E8E0F0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 32, 69, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Make some gallery items span 2 columns/rows for variety */
.gallery-item:nth-child(5n+1) {
  grid-row: span 2;
  grid-column: span 2;
  aspect-ratio: auto;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2.5rem;
  z-index: 2001;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  z-index: 2001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ============================================
   PHASE 4: Reviews, Service Area, FAQ
   ============================================ */

/* ---------- Reviews Carousel ---------- */
.reviews {
  background: linear-gradient(135deg, #F5F0FF 0%, #FFF0F5 100%);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--sunny);
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--lavender);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #F0EAF5;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.review-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.review-author-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  color: var(--purple);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.reviews-arrow:hover {
  background: var(--purple);
  color: var(--white);
}

.reviews-prev {
  left: 8px;
}

.reviews-next {
  right: 8px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.reviews-dot.active {
  opacity: 1;
  background: var(--purple);
  transform: scale(1.2);
}

/* ---------- Service Area ---------- */
.service-area {
  background: var(--white);
}

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-placeholder {
  background: linear-gradient(135deg, #E8E0F0, #F5F0FF);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
}

.map-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.map-placeholder p {
  color: var(--gray);
  font-size: 1.05rem;
}

.service-area-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.25s ease;
}

.city-tag:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateX(4px);
}

.city-tag::before {
  content: '\2713';
  color: var(--mint);
  font-weight: 800;
  font-size: 1.1rem;
}

.city-tag:hover::before {
  color: var(--white);
}

/* ---------- FAQ Accordion ---------- */
.faq {
  background: var(--light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F0EAF5;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--purple);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--purple);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   PHASE 5: Contact, Footer, Polish
   ============================================ */

/* ---------- Contact ---------- */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--light-gray);
  padding: 36px;
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E0F0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: linear-gradient(135deg, #F5F0FF, #FFF8F0);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-info-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-card a {
  color: var(--purple);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.contact-info-card a:hover {
  color: var(--pink);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 4px;
}

/* Form success message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: all 0.25s ease;
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
  opacity: 0.5;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(132, 94, 194, 0.35);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 10px 30px var(--header-shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius);
  }

  .hamburger {
    display: flex;
  }

  .phone-link span:not(.phone-icon) {
    /* Hide phone text on smaller tablets if needed */
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(5n+1) {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .service-area-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 640px) {
  :root {
    --header-height: 60px;
  }

  .logo-img {
    height: 48px;
  }

  .phone-link {
    font-size: 0;
  }

  .phone-link .phone-icon {
    font-size: 1.3rem;
  }

  .hero {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-slide::before {
    width: 250px;
    height: 250px;
  }

  .hero-slide::after {
    width: 150px;
    height: 150px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .order-date-box {
    padding: 32px 20px;
  }

  .order-date-box h3 {
    font-size: 1.5rem;
  }

  .date-input {
    min-width: 180px;
    width: 100%;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-img {
    height: 120px;
  }

  .category-emoji {
    font-size: 3rem;
  }

  .rentals-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
  }

  .search-box {
    flex: 1 1 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-img {
    height: 160px;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-card-name {
    font-size: 1rem;
  }

  .product-card-desc {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-price {
    font-size: 1.15rem;
  }

  .btn-add-cart {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .gallery-filters {
    gap: 6px;
  }

  .gallery-filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(5n+1),
  .gallery-item:nth-child(4n+1) {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .service-area-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-area-cities {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    padding: 40px 20px;
    min-height: auto;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
