@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #2563eb;
      --secondary: #0ea5e9;
      --accent: #f59e0b;
      --dark: #1e293b;
      --light: #f8fafc;
      --text: #475569;
      --text-light: #94a3b8;
      --border: #e2e8f0;
      --radius: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    body {
      font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: var(--light);
    }

    /* HEADER */
    header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
      transition: var(--transition);
    }

    .logo i {
      margin-right: 10px;
      font-size: 2rem;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu {
      display: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* BREADCRUMB */
    .breadcrumb {
      background: white;
      padding: 100px 5% 20px;
      border-bottom: 1px solid var(--border);
    }

    .breadcrumb-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 0.9rem;
      flex-wrap: wrap;
    }

    .breadcrumb a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }

    .breadcrumb a:hover {
      color: var(--secondary);
    }

    .breadcrumb i.fa-chevron-right {
      font-size: 0.65rem;
      color: var(--text-light);
    }

    .breadcrumb .current {
      color: var(--text-light);
      font-weight: 500;
    }

    /* PLACE HERO */
    .place-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 45px 5% 55px;
      position: relative;
      overflow: hidden;
    }

    .place-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
    }

    .place-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .place-hero .place-type-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: white;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
    }

    .place-hero h1 {
      color: white;
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .place-info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 10px;
    }

    .place-info-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
    }

    .place-info-item i {
      color: var(--accent);
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: var(--transition);
      margin-top: 18px;
    }

    .back-link:hover {
      color: white;
      gap: 12px;
    }

    /* FILTER BAR */
    .filter-bar {
      background: white;
      padding: 18px 5%;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 73px;
      z-index: 100;
    }

    .filter-bar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      gap: 15px;
      align-items: center;
      flex-wrap: wrap;
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .filter-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--dark);
      white-space: nowrap;
    }

    .filter-select {
      padding: 8px 14px;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-size: 0.88rem;
      font-family: inherit;
      background: var(--light);
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .hotel-count-badge {
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      margin-left: auto;
    }

    /* MAP */
    .map-section {
      padding: 30px 5% 0;
      max-width: 1400px;
      margin: 0 auto;
    }

    .map-wrapper {
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .map-header {
      padding: 16px 22px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .map-header h3 {
      font-size: 1.05rem;
      color: var(--dark);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .map-header h3 i {
      color: var(--primary);
    }

    .map-legend {
      display: flex;
      gap: 16px;
      font-size: 0.82rem;
      color: var(--text-light);
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .legend-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    #placeMap {
      height: 420px;
      width: 100%;
    }

    /* HOTELS GRID */
    .hotels-section {
      padding: 30px 5% 60px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hotels-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hotels-section-header h2 {
      font-size: 1.6rem;
      color: var(--dark);
      font-weight: 700;
    }

    .hotels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }

    /* HOTEL CARD */
    .hotel-card {
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .hotel-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .hotel-card-img {
      height: 200px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .hotel-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hotel-card:hover .hotel-card-img img {
      transform: scale(1.08);
    }

    .hotel-card-img .distance-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 0.78rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .hotel-card-img .star-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 5px 10px;
      border-radius: 20px;
      background: var(--accent);
      color: white;
      font-size: 0.78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .hotel-card-img .no-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      gap: 8px;
    }

    .hotel-card-img .no-img-placeholder i {
      font-size: 2.5rem;
    }

    .hotel-card-img .no-img-placeholder span {
      font-size: 0.85rem;
    }

    .hotel-card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .hotel-card-body h4 {
      font-size: 1.05rem;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .hotel-card-body .hotel-location {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-light);
      font-size: 0.85rem;
      margin-bottom: 10px;
    }

    .hotel-card-body .hotel-location i {
      color: var(--primary);
      font-size: 0.8rem;
    }

    .hotel-card-body .hotel-desc {
      font-size: 0.84rem;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 14px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .hotel-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }

    .hotel-price {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hotel-price .price-label {
      font-size: 0.72rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    .hotel-price .price-value {
      font-size: 1.2rem;
      color: var(--dark);
      font-weight: 800;
    }

    .hotel-price .price-value .currency {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-light);
    }

    .hotel-booking-btn {
      padding: 9px 18px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .hotel-booking-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
      color: white;
    }

    /* STARS */
    .stars {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .stars .fa-star {
      font-size: 0.72rem;
    }

    .stars .filled {
      color: var(--accent);
    }

    .stars .empty {
      color: #e2e8f0;
    }

    /* EMPTY STATE */
    .empty-state {
      text-align: center;
      padding: 80px 20px;
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
    }

    .empty-state i {
      font-size: 4rem;
      color: var(--border);
      margin-bottom: 20px;
    }

    .empty-state h3 {
      color: var(--dark);
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .empty-state p {
      color: var(--text-light);
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .empty-state a {
      padding: 10px 24px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }

    .empty-state a:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
    }

    /* NOT FOUND */
    .not-found {
      text-align: center;
      padding: 80px 20px;
      max-width: 600px;
      margin: 40px auto;
    }

    .not-found i {
      font-size: 5rem;
      color: var(--border);
      margin-bottom: 20px;
    }

    .not-found h2 {
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .not-found p {
      color: var(--text-light);
      font-size: 1.1rem;
      margin-bottom: 25px;
    }

    .not-found .btn-back {
      padding: 12px 30px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .not-found .btn-back:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: white;
      padding: 50px 5% 20px;
      margin-top: 0;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      margin-bottom: 1rem;
      color: white;
      font-weight: 600;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-section a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
    }

    /* BACK TO TOP */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      box-shadow: var(--shadow-lg);
      cursor: pointer;
      transition: var(--transition);
      z-index: 999;
      border: none;
    }

    .back-to-top:hover {
      transform: scale(1.1);
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-in {
      animation: fadeInUp 0.5s ease both;
    }

    .animate-delay-1 {
      animation-delay: 0.1s;
    }

    .animate-delay-2 {
      animation-delay: 0.15s;
    }

    .animate-delay-3 {
      animation-delay: 0.2s;
    }

    .animate-delay-4 {
      animation-delay: 0.25s;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .place-hero h1 {
        font-size: 1.7rem;
      }

      .place-info-row {
        flex-direction: column;
        gap: 8px;
      }

      .filter-bar-inner {
        flex-direction: column;
        align-items: stretch;
      }

      .hotel-count-badge {
        margin-left: 0;
        text-align: center;
      }

      .hotels-grid {
        grid-template-columns: 1fr;
      }

      #placeMap {
        height: 300px;
      }

      .map-legend {
        display: none;
      }
    }