﻿/* === Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø£Ø³Ø§Ø³ÙŠØ© === */
  .birthday-page-header {
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  .birthday-main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }
  .birthday-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    margin: auto;
  }
  .birthday-theme-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
  }
  .package-includes {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
  }
  .package-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
  }
  .package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .feature-icon {
    color: #000dff;
    font-size: 1.5rem;
    margin-top: 0.3rem;
  }
  .feature-text h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }
  .feature-text p {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-size: 0.95rem;
  }
  .package-price {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000dff;
    margin: 2rem 0;
  }
  .package-price small {
    font-size: 1rem;
    color: #666;
    display: block;
  }

  /* === Ù…Ø¹Ø±Ø¶ Ø§Ù„ØµÙˆØ± === */
  .package-gallery {
    margin: 3rem 0;
  }
  .gallery-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
  }
  .gallery-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6b73ff 0%, #000dff 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* Ù†Ù…ÙˆØ°Ø¬ Ø§Ù„Ø­Ø¬Ø² */
  .birthday-reservation-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .birthday-form-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }
  .birthday-form-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6b73ff 0%, #000dff 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  .birthday-reservation-form {
    max-width: 600px;
    margin: 0 auto;
  }
  .birthday-form-group {
    margin-bottom: 1.5rem;
  }
  .birthday-form-label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  .birthday-form-input,
  .birthday-form-select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }
  .birthday-form-input:focus,
  .birthday-form-select:focus {
    outline: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  .birthday-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
  }
  .birthday-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
  }
  .birthday-whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
  }

  @media (max-width: 768px) {
    .package-features-grid {
      grid-template-columns: 1fr;
    }
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }

