/* 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;
  }
}



/*********************
/Premium
/*********************

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

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

.icon.large {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.icon.check {
  color: #1A73E8;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    height: 600px;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2));
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 3rem;
  }
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-info {
    flex-direction: row;
    align-items: flex-end;
    gap: 2rem;
  }
}

.hotel-logo {
  width: 112px;
  height: 112px;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hotel-logo {
    width: 144px;
    height: 144px;
  }
}

.hotel-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info {
  flex: 1;
  color: white;
}

.hotel-name {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

  .hotel-name {
    display: flex;
    font-size: 3rem;
  }


.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.quick-stats {
  display: none;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .quick-stats {
    display: flex;
  }
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  min-width: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.stat-value.location {
  color: #1A73E8;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.gallery-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* ========================================
   Main Content
======================================== */
.main-content {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .main-content {
    padding: 3rem 0;
  }
}

.content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ========================================
   Sections
======================================== */
.section {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title .icon {
  color: #1A73E8;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* ========================================
   Cards
======================================== */
.card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title .icon {
  color: #1A73E8;
}

.description {
  color: #404040;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* ========================================
   Badges
======================================== */
.badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.badge.secondary {
  background: #F0F4F7;
  color: #404040;
}

.badge.urgent {
  background: #FEE2E2;
  color: #DC2626;
}

.badge.green {
  background: #DCFCE7;
  color: #16A34A;
}

/* ========================================
   Tabs
======================================== */
.tabs {
  width: 100%;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  background: #F0F4F7;
  padding: 0.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem;
  font-family: 'Anuphan', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #404040;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.5);
}

.tab-btn.active {
  background: white;
  color: #303030;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-btn .icon {
  display: none;
}

@media (min-width: 1024px) {
  .tab-btn .icon {
    display: block;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ========================================
   Benefits Grid
======================================== */
.benefits-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.02);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.benefit-item:hover {
  background: rgba(0,0,0,0.04);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a73e81a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon .icon {
  width: 16px;
  height: 16px;
  color: #1A73E8;
}

.benefit-item span {
  font-size: 0.875rem;
}

/* ========================================
   Uniform Section
======================================== */
.uniform-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.uniform-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: #1a73e81a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uniform-icon-wrapper .icon {
  color: #1A73E8;
}

.uniform-info {
  flex: 1;
}

.uniform-desc {
  color: #404040;
  margin: 0.75rem 0 1rem;
}

.uniform-features {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .uniform-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* ========================================
   Gallery Grid
======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.4);
}

.gallery-overlay span {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

/* ========================================
   HR Section
======================================== */
.hr-card {
  padding: 0;
  overflow: hidden;
}

.hr-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hr-content {
    flex-direction: row;
  }
}

.hr-profile {
  background: linear-gradient(135deg, #1a73e81a, rgba(26, 115, 232, 0.05));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hr-profile {
    width: 33.333%;
  }
}

.hr-image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  border: 4px solid white;
}

.hr-name {
  font-weight: 600;
}

.hr-position {
  font-size: 0.875rem;
  color: #404040;
}

.hr-quote {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hr-quote {
    width: 66.666%;
  }
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(26, 115, 232, 0.2);
  margin-bottom: 0.75rem;
}

.quote-text {
  color: #404040;
  font-style: italic;
  line-height: 1.7;
}

/* ========================================
   Jobs List
======================================== */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.job-card:hover {
  border-color: rgba(26, 115, 232, 0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.job-main {
  flex: 1;
  min-width: 0;
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.job-card:hover .job-title {
  color: #1A73E8;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #404040;
}

.job-dept,
.job-location,
.job-type {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-salary-section {
  text-align: right;
  flex-shrink: 0;
}

.job-salary {
  font-weight: 600;
  color: #1A73E8;
}

.job-salary-section .arrow {
  margin-left: auto;
  margin-top: 0.25rem;
  color: #404040;
  transition: color 0.2s;
}

.job-card:hover .arrow {
  color: #1A73E8;
}

/* ========================================
   Sidebar Cards
======================================== */
.apply-card {
  border-color: rgba(26, 115, 232, 0.2);
}

.apply-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: #1A73E8;
  color: white;
  border: none;
  margin-bottom: 0.75rem;
}

.btn-primary:hover {
  background: #1557B0;
}

.btn-outline {
  background: transparent;
  color: #303030;
  border: 1px solid #E5E7EB;
}

.btn-outline:hover {
  background: #F0F4F7;
}

.contact-section {
  border-top: 1px solid #E5E7EB;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.contact-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #404040;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #1A73E8;
}

.contact-item .icon {
  color: #1A73E8;
}

.contact-item.address {
  align-items: flex-start;
}

.contact-item.address .icon {
  margin-top: 2px;
}

.contact-item.address span {
  color: #404040;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-label {
  font-size: 0.875rem;
  color: #404040;
}

.info-value {
  font-weight: 600;
}

/* Awards List */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.02);
  border-radius: 0.5rem;
}

.award-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon.yellow {
  background: #FEF9C3;
}

.award-icon.yellow .icon {
  color: #CA8A04;
}

.award-icon.green {
  background: #DCFCE7;
}

.award-icon.green .icon {
  color: #16A34A;
}

.award-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.award-year {
  font-size: 0.75rem;
  color: #404040;
}

/* ========================================
   Lightbox
======================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-label {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1rem;
}

.lightbox-counter {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.lightbox-thumbnails {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem;
  border-radius: 0.75rem;
}

.lightbox-thumb {
  width: 64px;
  height: 48px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}

.lightbox-thumb:hover {
  opacity: 1;
}

.lightbox-thumb.active {
  border-color: #1A73E8;
  opacity: 1;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Mobile Responsive
======================================== */
@media (max-width: 640px) {
  .hotel-name {
    font-size: 1.5rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    font-size: 0.75rem;
    padding: 0.625rem;
  }
}
/*********************************************/