﻿/* === Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø£Ø³Ø§Ø³ÙŠØ© === */
    .birthday-page-header {
        background: linear-gradient(135deg, #0a0a0a 0%, #665c63 100%);
        padding: 3rem 0;
      text-align: center;
      margin-bottom: 1rem;
    }
    .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;
    }
    .birthday-themes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
      margin: auto;
    }
    .birthday-theme-item {
      background: linear-gradient(135deg, #0a0a0a 0%, #665c63 100%);
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      border-radius: 18px;
    }
    .birthday-theme-img-container {
      position: relative;
      width: 160px;
      height: 160px;
      
      z-index: 1;
    }
    .birthday-theme-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      position: relative;
      z-index: 2;
      
    }
    .birthday-theme-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: #ffffff;
      margin-top: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .birthday-theme-price {
      display: inline-block;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 20px;
      font-weight: 700;
      font-size: 1.1rem;
      margin-top: 0.5rem;
      background: rgba(255,255,255,0.2);
    }
    .birthday-theme-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    /* Modern Booking Section */
.birthday-reservation-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #665c63 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: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
  }

  .birthday-form-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 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: #ffffff;
    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;
  }

    /* === Ø§Ù„ÙÙ‚Ø±Ø© Ø§Ù„Ø¬Ø¯ÙŠØ¯Ø© === */
    .special-features {
      background: #f9f9f9;
      padding: 2rem;
      border-radius: 15px;
      margin: 3rem 0;
    }
    .features-title {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 1.8rem;
      color: #333;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .feature-item {
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }
    .feature-icon {
      font-size: 2rem;
      color: #000000;
      margin-bottom: 1rem;
    }
    .feature-name {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
    }
    .feature-desc {
      font-family: "Poppins", sans-serif;
      color: #666;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .birthday-themes-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      }
    }

     .site-footer{
        background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }

