
    /* ---- NAVBAR (identical to about.html) ---- */
    .hamburger {
      display: none;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 900px) {
      .nav-links {
        display: flex;
        position: absolute;
        top: 76px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 32px;
        gap: 16px;
        border-top: 1px solid var(--border);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
      }

      .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
      }

      .nav-emergency {
        display: none;
      }

      .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }

      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        display: block;
      }
    }

    /* Page Hero - matching about page style */
    .page-hero {
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, #C05078 100%);
      padding: 100px 32px 80px;
      text-align: center;
      color: white;
      position: relative;
    }

    .page-hero-breadcrumb {
      margin-bottom: 20px;
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .page-hero-breadcrumb a {
      color: white;
      text-decoration: none;
    }

    .page-hero-breadcrumb span {
      margin: 0 8px;
    }

    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      margin-bottom: 16px;
      font-weight: 700;
    }

    .page-hero p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Filter Bar */
    .filter-bar {
      background: white;
      padding: 20px 32px;
      border-bottom: 1px solid var(--border);
       position: relative;
      /*top: 76px;*/
      z-index: 10;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
    }
    
     @media (min-width: 992px) {
      .filter-bar {
        position: sticky;
        top: 76px;
        z-index: 10;
      }
    }

    .filter-inner {
      max-width: 1450px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* Custom Dropdowns (Filter & Sort) */
    .filter-tabs-wrapper,
    .sort-dropdown-wrapper {
      position: relative;
      flex: 1;
      /*min-width: 200px;*/
    }

    .filter-mobile-toggle,
    .sort-dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 10px 24px;
      background: white;
      border: 1px solid var(--border);
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text-dark);
      cursor: pointer;
      transition: all 0.2s ease;
      height: 42px;
    }

    .filter-mobile-toggle:hover,
    .sort-dropdown-toggle:hover {
      border-color: var(--maroon);
      background: var(--rose-pale);
    }

    .filter-tabs,
    .sort-options {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 100%;
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 12px;
      box-shadow: var(--shadow-md);
      z-index: 100;
      flex-direction: column;
      gap: 4px;
    }

    .filter-tabs.show,
    .sort-options.show {
      display: flex;
    }

    .filter-btn,
    .sort-opt {
      width: 100%;
      text-align: right;
      border: none;
      background: transparent;
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-dark);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-btn:hover,
    .sort-opt:hover {
      background: var(--off-white);
      color: var(--maroon);
    }

    .filter-btn.active,
    .sort-opt.active {
      background: var(--rose-pale);
      color: var(--maroon);
      font-weight: 600;
    }

    /* Hide mobile toggle on desktop, but keep wrapper structure */
    @media (min-width: 769px) {
      .filter-tabs-wrapper {
        flex: 2;
      }
      .filter-mobile-toggle {
        display: none;
      }
      .filter-tabs {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        gap: 12px;
        width: auto;
      }
      .filter-btn {
        width: auto;
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: 40px;
      }
      .filter-btn.active {
        background: var(--maroon);
        color: white;
        border-color: var(--maroon);
      }
      
      .sort-dropdown-wrapper {
        max-width: 240px;
      }
    }

    /* Packages Grid */
    .packages-section {
      padding: 60px 32px;
      background: var(--off-white);
    }

    .packages-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 32px;
    }

    .package-card {
      background: white;
      border-radius: 24px;
      overflow: visible;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .package-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--rose);
    }

    /* Price Badge */
    .price-badge {
      position: absolute;
      top: -25px;
      left: -25px; /* Mirror for RTL */
      width: 80px;
      height: 80px;
      background: var(--maroon);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.1;
      text-align: center;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      clip-path: polygon(50% 0%, 60% 8%, 72% 4%, 78% 16%, 90% 18%, 88% 30%,
          100% 36%, 92% 48%, 98% 60%, 86% 64%, 82% 76%, 70% 74%,
          60% 88%, 50% 80%, 40% 88%, 30% 74%, 18% 76%, 14% 64%,
          2% 60%, 8% 48%, 0% 36%, 12% 30%, 10% 18%, 22% 16%,
          28% 4%, 40% 8%);
      z-index: 5;
    }

    .price-badge .amount {
      font-size: 1.5rem;
      font-weight: 800;
    }

    .price-badge .currency {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .package-header {
      background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
      padding: 20px 20px;
      color: white;
      border-radius: 24px 24px 0 0;
    }

    .package-header h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .package-category {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.8;
      background: rgba(255, 255, 255, 0.2);
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .package-body {
      padding: 20px 20px 16px;
      flex: 1;
    }

    .package-desc {
      color: var(--text-mid);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .package-features {
      list-style: none;
      margin-top: 12px;
    }

    .package-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    .package-features li i {
      color: var(--maroon);
      font-size: 0.7rem;
      width: 16px;
    }

    .package-footer {
      padding: 12px 20px 20px;
      border-top: 1px solid var(--border);
    }

    .view-details-btn {
      width: 100%;
      padding: 10px;
      background: transparent;
      border: 1.5px solid var(--maroon);
      color: var(--maroon);
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .view-details-btn:hover {
      background: var(--maroon);
      color: white;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      max-width: 600px;
      width: 90%;
      border-radius: 28px;
      overflow: hidden;
      animation: modalFadeIn 0.3s ease;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .modal-header {
      background: var(--maroon);
      color: white;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }

    .modal-header h3 {
      font-size: 1.2rem;
      margin: 0;
    }

    .modal-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .modal-close:hover {
      opacity: 0.7;
    }

    .modal-body {
      padding: 24px;
      overflow-y: auto;
      flex: 1;
    }

    .modal-body p {
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 14px;
      font-size: 0.9rem;
    }

    .modal-body h4 {
      color: var(--maroon);
      margin: 18px 0 10px 0;
      font-size: 1rem;
    }

    .modal-body ul {
      list-style: none;
      padding-right: 0;
    }

    .modal-body ul li {
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--border);
      font-size: 0.85rem;
    }

    .modal-body ul li i {
      color: var(--maroon);
      width: 18px;
    }

    .modal-footer {
      padding: 16px 24px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 12px;
      justify-content: flex-start; /* flex-end in LTR is left in RTL, but we want buttons on left, so flex-start in RTL is right side. Wait. 
                                      Actually, in RTL, start is right, end is left. We want 'Close' on left? No, usually buttons stay on left. */
      flex-shrink: 0;
    }

    .btn-modal {
      padding: 8px 20px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.85rem;
    }

    .btn-modal-primary {
      background: var(--maroon);
      color: white;
      text-decoration: none;
      display: inline-block;
    }

    .btn-modal-secondary {
      background: var(--off-white);
      color: var(--text-dark);
      border: 1px solid var(--border);
    }

    /* Empty State */
    .no-results {
      text-align: center;
      padding: 60px;
      color: var(--text-soft);
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .filter-inner {
        flex-direction: column;
        align-items: stretch;
        position: relative;
        gap: 12px;
      }
      .filter-tabs-wrapper,
      .sort-dropdown-wrapper {
        width: 100%;
      }
      .packages-grid {
        grid-template-columns: 1fr;
      }
    }
  