
    /* ---- 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;
        left: 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;
    }

    .filter-tabs {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 8px 20px;
      border-radius: 40px;
      background: var(--off-white);
      border: 1px solid var(--border);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      color: var(--text-dark);
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--maroon);
      color: white;
      border-color: var(--maroon);
    }

    /* 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);
      left: 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: left;
      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 remains a dropdown on desktop too for style consistency */
      .sort-dropdown-wrapper {
        max-width: 220px;
      }
    }

    /* 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,
    .pkg-card {
      background: white;
      border-radius: 20px;
      overflow: visible;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .package-card:hover,
    .pkg-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
      border-color: var(--maroon);
    }

    /* Price Badge - Multi-pointed Serrated Star Burst */
    .price-badge,
    .pkg-price-badge {
      position: absolute;
      top: -15px;
      right: -15px;
      width: 70px;
      height: 70px;
      background: var(--maroon, #A62B55);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      clip-path: polygon(
        50% 0%, 59% 7%, 70% 3%, 76% 13%, 87% 12%, 90% 23%, 
        99% 27%, 97% 38%, 100% 50%, 97% 62%, 99% 73%, 90% 77%, 
        87% 88%, 76% 87%, 70% 97%, 59% 93%, 50% 100%, 41% 93%, 
        30% 97%, 24% 87%, 13% 88%, 10% 77%, 1% 73%, 3% 62%, 
        0% 50%, 3% 38%, 1% 27%, 10% 23%, 13% 12%, 24% 13%, 
        30% 3%, 41% 7%
      );
    }

    .price-badge .amount,
    .pkg-price-badge .amount {
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1;
      display: block;
      color: white;
    }

    .price-badge .currency,
    .pkg-price-badge .currency {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1;
      margin-top: 3px;
      display: block;
      color: white;
      letter-spacing: 0.5px;
    }

    /* Special Badge */
    .pkg-badge {
      position: absolute;
      top: -15px;
      right: -15px;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
      z-index: 10;
    }

    .package-header,
    .pkg-header {
      background: var(--maroon, #A62B55);
      padding: 24px 20px 20px;
      color: white;
      border-radius: 20px 20px 0 0;
      position: relative;
    }

    .package-header h3,
    .pkg-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 10px 0 0 0;
      line-height: 1.35;
      color: white;
    }

    .package-category {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: white;
      background: rgba(255, 255, 255, 0.25);
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-weight: 600;
    }

    .package-body,
    .pkg-body {
      padding: 24px 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .package-desc,
    .pkg-desc {
      color: var(--text-mid, #555);
      font-size: 0.88rem;
      line-height: 1.5;
      margin: 0 0 18px 0;
    }

    .package-features,
    .pkg-features {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .package-features li,
    .pkg-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-dark, #333);
      margin-bottom: 10px;
    }

    .package-features li i,
    .pkg-features li i {
      color: var(--maroon, #A62B55);
      font-size: 0.85rem;
      width: 16px;
      flex-shrink: 0;
    }

    .package-features li.more-services,
    .pkg-features li.more-services {
      color: var(--text-soft, #666);
      font-size: 0.82rem;
    }

    .package-features li.more-services i,
    .pkg-features li.more-services i {
      color: var(--text-soft, #666);
    }

    .package-footer,
    .pkg-footer {
      padding: 16px 20px 24px;
      background: white;
      border-radius: 0 0 20px 20px;
    }

    .view-details-btn,
    .pkg-btn,
    .pkg-btn-details {
      width: 100%;
      padding: 11px 20px;
      background: transparent;
      border: 1.5px solid var(--maroon, #A62B55);
      color: var(--maroon, #A62B55);
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.88rem;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s ease;
      display: block;
      box-sizing: border-box;
    }

    .view-details-btn:hover,
    .pkg-btn:hover,
    .pkg-btn-details:hover {
      background: var(--maroon, #A62B55);
      color: white;
    }
      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-left: 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-end;
      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;
      }
    }
  