 /* Blog Post Content Styling */
    .blog-post-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 120px 5% 80px;
    }
    
    .post-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .post-category {
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: inline-block;
    }
    
    .post-title {
      font-size: 42px;
      font-weight: 500;
      letter-spacing: -1px;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .post-meta {
      display: flex;
      justify-content: center;
      gap: 2rem;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 1rem;
    }
    
    .post-featured-image {
      width: 100%;
      border-radius: 24px;
      margin: 2rem 0;
      border: 1px solid var(--border);
    }
    
    .post-content {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-secondary);
    }
    
    .post-content h2 {
      font-size: 28px;
      color: var(--gold);
      margin: 2rem 0 1rem;
    }
    
    .post-content h3 {
      font-size: 22px;
      margin: 1.5rem 0 1rem;
    }
    
    .post-content p {
      margin-bottom: 1.5rem;
    }
    
    .post-content ul, .post-content ol {
      margin: 1rem 0 1.5rem 2rem;
    }
    
    .post-content li {
      margin-bottom: 0.5rem;
    }
    
    .price-table {
      background: var(--bg-card);
      border-radius: 16px;
      overflow: hidden;
      margin: 2rem 0;
    }
    
    .price-table table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .price-table th, .price-table td {
      border: 1px solid var(--border);
      padding: 12px;
      text-align: left;
    }
    
    .price-table th {
      background: rgba(201, 164, 92, 0.1);
      color: var(--gold);
    }
    
    /* ========== PROPERTY RECOMMENDATION SECTION ========== */
    .property-recommendations {
      margin: 4rem 0;
      background: linear-gradient(135deg, rgba(201, 164, 92, 0.05), rgba(0, 0, 0, 0.3));
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid var(--border);
    }
    
    .recommendation-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .recommendation-header h3 {
      font-size: 24px;
      font-weight: 500;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    
    .recommendation-header p {
      font-size: 14px;
      color: var(--text-secondary);
    }
    
    .recommendation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 1.5rem;
    }
    
    @media (max-width: 768px) {
      .recommendation-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .rec-property-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .rec-property-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .rec-property-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    
    .rec-property-info {
      padding: 1rem;
    }
    
    .rec-property-title {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .rec-property-location {
      font-size: 11px;
      color: var(--gold);
      margin-bottom: 8px;
    }
    
    .rec-property-features {
      display: flex;
      gap: 12px;
      font-size: 10px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    
    .rec-property-price {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
      margin-top: 8px;
    }
    
    .rec-property-cta {
      background: var(--gold);
      color: #000;
      text-align: center;
      padding: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: var(--transition);
      border-radius: 8px;
      margin-top: 8px;
    }
    
    .rec-property-card:hover .rec-property-cta {
      background: var(--gold-dark);
    }
    
    .view-all-link {
      display: inline-block;
      text-align: center;
      width: 100%;
      padding: 12px;
      background: transparent;
      border: 1px solid var(--gold);
      border-radius: 40px;
      color: var(--gold);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .view-all-link:hover {
      background: var(--gold);
      color: #000;
    }
    
    /* ========== AIRBNB / SHORT-STAY RECOMMENDATIONS ========== */
    .airbnb-recommendation-section {
      margin: 4rem 0;
      background: linear-gradient(135deg, rgba(255, 90, 95, 0.05), rgba(0, 0, 0, 0.2));
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid var(--border);
    }
    
    .airbnb-recommendation-section .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .airbnb-recommendation-section .section-header h2 {
      color: #FF5A5F;
      font-size: 28px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 0.5rem;
    }
    
    .airbnb-recommendation-section .section-header h2 i {
      font-size: 28px;
    }
    
    .section-description {
      text-align: center;
      color: var(--text-secondary);
      margin-top: 0.5rem;
      font-size: 14px;
    }
    
    .airbnb-recommendation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 2rem;
    }
    
    @media (max-width: 768px) {
      .airbnb-recommendation-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .airbnb-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .airbnb-card:hover {
      transform: translateY(-5px);
      border-color: #FF5A5F;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .airbnb-card-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    
    .airbnb-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .airbnb-card:hover .airbnb-card-image img {
      transform: scale(1.05);
    }
    
    .airbnb-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #FF5A5F;
      color: white;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .airbnb-card-info {
      padding: 1rem;
    }
    
    .airbnb-card-info h4 {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--text-primary);
    }
    
    .airbnb-location {
      font-size: 12px;
      color: #FF5A5F;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .airbnb-features {
      display: flex;
      gap: 12px;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    
    .airbnb-features span {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .airbnb-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
    }
    
    .airbnb-rating i {
      color: #FF5A5F;
      font-size: 12px;
    }
    
    .airbnb-rating span {
      font-size: 12px;
      color: var(--text-primary);
    }
    
    .airbnb-rating .reviews {
      color: var(--text-muted);
      font-size: 11px;
    }
    
    .airbnb-price {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
    }
    
    .nightly {
      font-size: 16px;
      font-weight: 600;
      color: #FF5A5F;
    }
    
    .nightly span {
      font-size: 10px;
      font-weight: 300;
      color: var(--text-muted);
    }
    
    .book-btn {
      background: #FF5A5F;
      color: white;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 600;
      transition: var(--transition);
    }
    
    .airbnb-card:hover .book-btn {
      background: #E04E52;
      transform: translateY(-2px);
    }
    
    .airbnb-view-all {
      text-align: center;
      margin-top: 1rem;
    }
    
    .airbnb-view-all .view-all-link {
      border-color: #FF5A5F;
      color: #FF5A5F;
    }
    
    .airbnb-view-all .view-all-link:hover {
      background: #FF5A5F;
      color: white;
    }
    
    .airbnb-empty {
      text-align: center;
      padding: 3rem;
    }
    
    .airbnb-empty i {
      font-size: 48px;
      color: #FF5A5F;
      opacity: 0.5;
      margin-bottom: 1rem;
    }
    
    .airbnb-empty p {
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }
    
    .airbnb-contact-btn {
      display: inline-block;
      margin-top: 1rem;
      background: var(--gold);
      color: #000;
      padding: 10px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
    }
    
    /* Author Box */
    .author-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      margin: 3rem 0;
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }
    
    .author-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    /* FAQ Section */
    .faq-section {
      background: rgba(201, 164, 92, 0.05);
      border-radius: 20px;
      padding: 2rem;
      margin: 3rem 0;
    }
    
    .faq-item {
      margin-bottom: 1.5rem;
    }
    
    .faq-question {
      font-size: 18px;
      font-weight: 500;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    
    /* Related Posts */
    .related-posts {
      margin-top: 4rem;
      border-top: 1px solid var(--border);
      padding-top: 3rem;
    }
    
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    
    @media (max-width: 768px) {
      .post-title { font-size: 32px; }
      .related-grid { grid-template-columns: 1fr; }
      .author-box { flex-direction: column; text-align: center; }
      .recommendation-grid, .airbnb-recommendation-grid { grid-template-columns: 1fr; }
    }
    
    /* Menu Overlay */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      pointer-events: none;
    }
    
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    
    /* Premium Footer */
    .premium-footer {
      background: #080808;
      border-top: 1px solid var(--border);
      margin-top: 4rem;
      padding: 4rem 5% 2rem;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-col h4 {
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }
    
    .footer-col p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    
    .footer-col a {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 12px;
      margin-bottom: 0.75rem;
      transition: var(--transition);
    }
    
    .footer-col a:hover {
      color: var(--gold);
      padding-left: 5px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 10px;
      letter-spacing: 1px;
      color: var(--text-muted);
    }
    
    .footer-bottom i {
      color: var(--gold);
    }
    
    .mobile-bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      justify-content: space-around;
      padding: 12px 0;
      z-index: 999;
    }
    
    .mobile-bottom-nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 10px;
    }
    
    .mobile-bottom-nav a i {
      font-size: 20px;
    }
    
    .mobile-bottom-nav a.active {
      color: var(--gold);
    }
    
    @media (max-width: 768px) {
      .mobile-bottom-nav {
        display: flex;
      }
      body {
        padding-bottom: 70px;
      }
    }
    
    .loading-spinner {
      text-align: center;
      padding: 2rem;
    }
    
    .loading-spinner .spinner {
      width: 40px;
      height: 40px;
      border: 2px solid var(--border);
      border-top-color: #FF5A5F;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 1rem;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }