/* ========== PA MUSHA PREMIUM STYLES ========== */

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    overflow-x: hidden;
  }
  
  /* Scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 99px; }
  ::-webkit-scrollbar-thumb:hover { background: #9ca3af; }
  
  /* Glassmorphism Card */
  .glass-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  }
  
  /* Property Card */
  .property-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .property-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
  
  .property-card:hover .property-img {
    transform: scale(1.08);
  }
  
  .property-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Wishlist Heart */
  .wish-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .wish-btn:hover { transform: scale(1.2); }
  
  .wish-btn.active {
    color: #ef4444;
    fill: #ef4444;
    animation: heartPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  @keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
  }
  
  /* Badge Pill */
  .badge-pill {
    font-size: 10px;
    letter-spacing: 0.03em;
    padding: 3px 8px;
    border-radius: 99px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  
  /* Floating Animation */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  
  .float-anim { animation: float 4s ease-in-out infinite; }
  .float-anim-delay { animation: float 4s ease-in-out 1s infinite; }
  
  /* Fade In Up */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
  }
  
  .fade-in-up-d1 { animation-delay: 0.1s; }
  .fade-in-up-d2 { animation-delay: 0.2s; }
  .fade-in-up-d3 { animation-delay: 0.3s; }
  .fade-in-up-d4 { animation-delay: 0.4s; }
  
  /* Shimmer Loading */
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  
  .shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }
  
  /* Hero Gradient */
  .hero-gradient {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #16213e 70%, #0a0a0a 100%);
  }
  
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.95) 100%);
  }
  
  /* Black Button Luxury */
  .btn-luxury {
    background: #0a0a0a;
    color: white;
    font-weight: 600;
    border-radius: 14px;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    letter-spacing: 0.01em;
  }
  
  .btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    background: #171717;
  }
  
  .btn-luxury:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .btn-outline {
    border: 2px solid #0a0a0a;
    color: #0a0a0a;
    font-weight: 600;
    border-radius: 14px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: #0a0a0a;
    color: white;
  }
  
  /* Search Bar Premium */
  .search-premium {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .search-premium:focus-within {
    border-color: rgba(0,0,0,0.15);
    box-shadow: 0 12px 50px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  }
  
  /* Category Card */
  .cat-card {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .cat-card:hover {
    transform: translateY(-4px) scale(1.03);
  }
  
  .cat-card.active {
    background: #0a0a0a;
    color: white;
  }
  
  /* Bottom Nav Active */
  .bnav-btn.active { color: #0a0a0a; }
  .bnav-btn:not(.active) { color: #9ca3af; }
  
  /* Modal Transition */
  .modal-open #modal-content {
    transform: scale(1);
    opacity: 1;
  }
  
  /* Image Gallery */
  .gallery-img {
    transition: opacity 0.5s ease;
  }
  
  .gallery-dot {
    transition: all 0.3s ease;
  }
  
  .gallery-dot.active {
    width: 20px;
    border-radius: 99px;
    background: white;
  }
  
  /* Booking Widget Float */
  .booking-float {
    position: sticky;
    top: 100px;
  }
  
  /* Star Rating */
  .star-filled { color: #D4A843; }
  .star-empty { color: #d1d5db; }
  
  /* Map Container */
  .map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f3f4f6;
  }
  
  /* Admin Table */
  .admin-row {
    transition: all 0.2s ease;
  }
  
  .admin-row:hover {
    background: #f9fafb;
  }
  
  /* Zino Badge */
  .zino-badge {
    background: linear-gradient(135deg, #D4A843, #f0d68a);
    color: #0a0a0a;
    font-weight: 700;
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
    background: #25D366;
    color: white;
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
  }
  
  /* Zimbabwe Flag Gradient */
  .zim-gradient {
    background: linear-gradient(135deg, #007A33, #D4A843, #DE2016, #003893);
  }
  
  /* Hide Pages */
  .page-hidden { display: none !important; }
  
  /* Listing Detail Amenity */
  .amenity-item {
    transition: all 0.2s ease;
  }
  
  .amenity-item:hover {
    background: #f9fafb;
    transform: translateX(4px);
  }
  
  /* Calendar */
  .cal-day {
    transition: all 0.2s ease;
  }
  
  .cal-day:hover:not(.cal-disabled) {
    background: #0a0a0a;
    color: white;
    transform: scale(1.1);
  }
  
  .cal-booked {
    background: #fef2f2;
    color: #ef4444;
  }
  
  .cal-disabled {
    color: #d1d5db;
    cursor: not-allowed;
  }
  
  /* Responsive Fine-tuning */
  @media (max-width: 640px) {
    .property-card:hover {
      transform: translateY(-2px) scale(1.01);
    }
  }
  
  /* Print Styles for Voucher */
  @media print {
    body * { visibility: hidden; }
    #voucher-print, #voucher-print * { visibility: visible; }
    #voucher-print { position: absolute; left: 0; top: 0; }
  }