/* Container */
.hoteldetail_main_container{
  padding-left: 5%;
  padding-right: 5%;
}
.hoteldetail_container {
  max-width: 1400px;
  margin: 0 auto;
  
}

/* ========================================
   Header Section
======================================== */
.hoteldetail_header-section {
  border-bottom: 1px solid #e2e8f0;
  max-width: 1400px;
  margin: 0 auto;
}

.hoteldetail_header-section .hoteldetail_container {
  padding-top: 32px;
  padding-bottom: 32px;
}

.hoteldetail_header-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.hoteldetail_logo-wrapper {
  flex-shrink: 0;
}

.hoteldetail_company-logo {
  max-width: 128px;
  max-height: 128px;
  object-fit: contain;
}

.hoteldetail_header-info {
  flex: 1;
}

.hoteldetail_company-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.hoteldetail_company-location {
  font-size: 1.125rem;
  color: #2563eb;
}

/* ========================================
   Content Wrapper
======================================== */
.hoteldetail_content-wrapper {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ========================================
   Sections
======================================== */
.hoteldetail_section {
  max-width: 1400px;
  margin: auto;
  margin-top: 30px;
}

.hoteldetail_section:last-child {
  margin-bottom: 0;
}

.hoteldetail_section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hoteldetail_section-title .hoteldetail_icon {
  width: 20px;
  height: 20px;
  color: #2563eb;
}

/* Description */
.hoteldetail_description {
  color: #303030;
  line-height: 1.7;
}

.hoteldetail_description strong {
  color: #0f172a;
}

/* ========================================
   Icons
======================================== */
.hoteldetail_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hoteldetail_icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #303030;
}

.hoteldetail_icon-sm.hoteldetail_primary {
  color: #2563eb;
}

/* ========================================
   Contact Grid
======================================== */
.hoteldetail_contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.hoteldetail_contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #303030;
}

.hoteldetail_contact-item .hoteldetail_icon-sm {
  margin-top: 2px;
}

.hoteldetail_link {
  color: #2563eb;
  text-decoration: none;
}

.hoteldetail_link:hover {
  text-decoration: underline;
}

/* ========================================
   Welfare Grid
======================================== */
.hoteldetail_welfare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hoteldetail_welfare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  transition: all 0.2s ease;
}

.hoteldetail_welfare-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background-color: rgba(37, 99, 235, 0.05);
}

/* ========================================
   Transportation
======================================== */
.hoteldetail_transport-wrapper {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.hoteldetail_transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hoteldetail_transport-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.hoteldetail_transport-item:nth-child(odd) {
  border-right: 1px solid #e2e8f0;
}

.hoteldetail_transport-item.hoteldetail_last {
  border-bottom: none;
}

.hoteldetail_transport-label {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.hoteldetail_transport-value {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 8px 0;
    line-height: 2rem;
    font-size: 15px;
    color: #303030;
}

/* ========================================
   Transportation list
======================================== */


.transport_station-name {
    font-size: 15px;
    font-weight: 500;
    color: #303030;
}

.transport_station-distance {
    text-align: right;
    font-size: 15px;
    color: #303030;
}

/* ========================================
   Mobile Styles (under 1200px)
======================================== */
@media (max-width: 1200px) {
  .hoteldetail_header-content {
    flex-direction: column;
  }

  .hoteldetail_company-logo {
    max-width: 96px;
    max-height: 96px;
  }

  .hoteldetail_company-name {
    font-size: 1.5rem;
  }

  .hoteldetail_content-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hoteldetail_section {
    margin-bottom: 40px;
  }

  /* Contact - single column on mobile */
  .hoteldetail_contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-wrap: anywhere;
  }

  /* Welfare - 2 columns on tablet, 1 on small mobile */
  .hoteldetail_welfare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Transportation - single column on mobile */
  .hoteldetail_transport-grid {
    grid-template-columns: 1fr;
  }

  .hoteldetail_transport-item:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .hoteldetail_welfare-grid {
    grid-template-columns: 1fr;
  }
}