/* =========================
MEDIA ARTICLES
========================= */

.media-articles-container {
  margin: 0;
  padding: 0;
  max-width: 200px;
}
.media-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.article {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.article-image {
  width: 100%;
  height: 9.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.title-image {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background-color: #00205b;
  border-radius: 4px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}
.article-content {
  padding: 0.5rem 1rem;
}
.description {
  margin: 0.5rem 0;
}
.subtitle {
  margin: 0.3rem 0;
}
.action span {
  color: blue;
  text-decoration: underline;
}
/* =========================
FOOTER IMAGE TEXT
========================= */

/* =========================
FOOTER IMAGE TEXT
========================= */

.title-image-footer {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  height: auto;
  display: block;
  font-size: clamp(16px, 3.5vw, 28px);
  font-weight: 600;
  color: white;
  background-color: transparent;
  z-index: 2;
  text-align: left;
  white-space: normal;
  line-height: 1.3;
  margin: 0;
  box-sizing: border-box;
}
.subtitle-image-footer {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  color: #efefef;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  z-index: 2;
  text-align: left;
  margin: 0;
  box-sizing: border-box;
}
/* =========================
TABLET (≤1024px)
========================= */

@media (max-width: 1024px) {
  .media-articles:last-of-type .article-image {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
  }
  .title-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .subtitle-image-footer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
/* =========================
MOBILE (≤576px)
========================= */

@media (max-width: 576px) {
  .media-articles:last-of-type .article-image {
    padding: 24px 16px;
  }
}
/* =========================
GLOBAL
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: white;
  color: #333333;
}
.content-container {
  margin: auto;
  padding: 40px 20px;
  max-width: 1100px;
}
/* =========================
TOP SECTION
========================= */

.top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.top-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.top-content h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #0b2c5d;
  line-height: 2rem;
}
.top-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #555555;
}
/* =========================
BOTTOM SECTION
========================= */

.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}
.bottom-content h2 {
  font-size: 16px;
  color: #999999;
  margin-bottom: 6px;
}
.bottom-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #00205b;
  margin-bottom: 16px;
}
.bottom-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #4d4d4d;
  font-weight: 400;
}
.bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bottom-images img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}
/* =========================
SECTION TITLES
========================= */

.section-title1 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  color: black;
}
.section-title2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #00205b;
}
.section-title1 h4 {
  font-size: 25px !important;
  font-weight: 400;
  margin-bottom: 15px;
  color: black;
}
/* =========================
BAGGAGE CARDS
========================= */

.baggage-section {
  margin-top: 30px;
}
.baggage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.baggage-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-image {
  height: 160px;
  background-size: cover;
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 26px;
  font-weight: 500;
  color: #00205b;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
}
.inner-span {
  font-weight: 500;
  font-size: 14px;
  color: #002058;
}
.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-features li {
  font-size: 14px;
  color: #333333;
  padding: 6px 0;
}
.card-features li:last-child {
  border-bottom: none;
}
/* =========================
HOTEL / FEATURES GRID
========================= */

.hotel-features {
  padding: 50px 20px;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #00205b;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.feature-card {
  background: transparent;
}
.feature-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover img {
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}
/* =========================
SEAT SECTION
========================= */

.seat-section {
  margin-top: 10px;
  margin-bottom: 50px;
}
.seat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.seat-card {
  background: white;
  border-radius: 10px;
  border: 1px solid #e8eaf0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.seat-title {
  font-size: 15px;
  font-weight: 700;
  color: #00205b;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #f0f2f5;
}
.seat-body {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 12px 14px 16px;
  align-items: flex-start;
}
.seat-image {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.seat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seat-body p {
  font-size: 14px;
  color: #4d4d4d;
  line-height: 1.3;
  margin: 0;
}
/* =========================
TABLET (≤1024px)
========================= */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .baggage-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .seat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-image {
    height: 160px;
  }
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .bottom-images {
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================
MOBILE (≤576px)
========================= */

@media (max-width: 576px) {
  .article-image {
    height: 180px;
  }
  .media-articles:last-of-type .article-image {
    height: clamp(160px, 55vw, 220px);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .baggage-cards {
    grid-template-columns: 1fr;
  }
  .seat-grid {
    grid-template-columns: 1fr;
  }
  .seat-image {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }
  .bottom-images {
    grid-template-columns: 1fr;
  }
  .top-section,
  .bottom-section {
    grid-template-columns: 1fr;
  }
}
.booking-wrapper {
  width: 100%;
  background: #f2f2f2;
  padding: 20px;
  box-sizing: border-box;
}
.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e9e9e9;
  padding: 15px 20px;
  gap: 20px;
  flex-wrap: wrap;
}
/* Left text */

.booking-text {
  min-width: 220px;
}
.booking-text .title,
.booking-text .subtitle {
  margin: 0;
  font-size: 14px;
  color: #333333;
}
.booking-text strong {
  font-weight: 700;
}
/* Input fields */

.booking-fields {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}
.field {
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #cccccc;
  padding: 5px 0;
  flex: 1;
}
.field .icon {
  margin-right: 8px;
  font-size: 16px;
  opacity: 0.7;
}
.field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
}
/* Button */

.booking-btn {
  background: #f5b32f;
  color: #0a2a66;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  cursor: pointer;
  white-space: nowrap;
}
.booking-btn:hover {
  opacity: 0.9;
}
/* Responsive */

@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-fields {
    flex-direction: column;
  }
  .booking-btn {
    width: 100%;
    text-align: center;
  }
}
