/* ============================================================
   ATTESH START TOURISM — Main Stylesheet
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #f2f2f2; }

/* ===== HEADER / NAV ===== */
header {
  background: #003580;
  padding: 0 40px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 22px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: 0.5px;
}
.logo span { color: #febb02; }
nav a {
  color: #fff; text-decoration: none; margin-left: 6px;
  padding: 8px 14px; border-radius: 4px; font-size: 14px;
  border: 1px solid transparent; transition: border-color 0.2s;
}
nav a:hover, nav a.active { border-color: #fff; }
.nav-cta { background: #febb02; color: #003580 !important; font-weight: 700; border: none !important; }
.nav-cta:hover { background: #f5a800; }
.nav-toggle { display: none; background: none; border: 2px solid #fff; color: #fff; font-size: 18px; padding: 4px 10px; border-radius: 4px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #003580 0%, #0071c2 60%, #00a6e6 100%);
  padding: 60px 40px 0; text-align: center;
}
.hero h1 { font-size: 36px; color: #fff; margin-bottom: 10px; }
.hero p  { font-size: 18px; color: #c9e4f7; margin-bottom: 30px; }

/* Search box */
.search-box {
  background: #febb02; border-radius: 8px;
  display: inline-flex; flex-wrap: wrap;
  max-width: 950px; width: 100%; margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.search-field {
  flex: 1; min-width: 160px;
  display: flex; align-items: center; gap: 8px;
  background: #fff; padding: 12px 16px;
  border-right: 1px solid #ddd;
}
.search-field:first-child { border-radius: 8px 0 0 8px; }
.search-field input,
.search-field select { border: none; outline: none; font-size: 14px; width: 100%; color: #333; background: transparent; }
.search-field .icon { font-size: 18px; color: #0071c2; }
.search-btn {
  background: #0071c2; color: #fff;
  border: none; padding: 0 28px; font-size: 16px; font-weight: 700;
  cursor: pointer; border-radius: 0 8px 8px 0; transition: background 0.2s;
}
.search-btn:hover { background: #003580; }

/* Hero tabs */
.hero-tabs { background: #003580; display: flex; justify-content: center; padding: 0 40px; margin-top: 20px; }
.hero-tabs button {
  background: none; border: none; color: #c9e4f7;
  padding: 14px 20px; font-size: 14px; cursor: pointer;
  border-bottom: 3px solid transparent; transition: 0.2s;
}
.hero-tabs button.active,
.hero-tabs button:hover { color: #fff; border-bottom-color: #fff; }

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: #ebf3ff; padding: 18px 40px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.promo-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #003580; font-weight: 600; }
.promo-item .icon { font-size: 20px; }

/* ===== SECTION ===== */
.section { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.section-title { font-size: 22px; font-weight: 700; color: #003580; margin-bottom: 18px; }
.section-title a { font-size: 14px; font-weight: 400; color: #0071c2; margin-left: 10px; text-decoration: none; }
.section-title a:hover { text-decoration: underline; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #003580, #0071c2);
  padding: 48px 40px; text-align: center; color: #fff;
}
.page-banner h1 { font-size: 32px; margin-bottom: 8px; }
.page-banner p { font-size: 16px; opacity: .9; }

/* ===== HOTEL CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); transform: translateY(-3px); }
.card-img {
  width: 100%; height: 185px;
  background: linear-gradient(135deg, #89b4f7, #0071c2);
  display: flex; align-items: center; justify-content: center; font-size: 52px;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 14px 16px; }
.card-body h3 { font-size: 16px; color: #003580; margin-bottom: 4px; }
.card-location { font-size: 13px; color: #666; margin-bottom: 8px; }
.stars { color: #febb02; font-size: 14px; margin-bottom: 8px; }
.card-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 10px; }
.badge { background: #003580; color: #fff; font-size: 13px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.badge.green  { background: #00873f; }
.badge.yellow { background: #c67d00; }
.price-block { text-align: right; }
.price-block small { font-size: 11px; color: #999; display: block; }
.price-block strong { font-size: 18px; color: #333; }
.price-block span { font-size: 12px; color: #999; }
.tag-bar { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.tag { background: #ebf3ff; color: #0071c2; font-size: 11px; padding: 2px 7px; border-radius: 12px; }
.btn-book {
  display: block; text-align: center;
  background: #0071c2; color: #fff; font-weight: 700;
  padding: 9px 0; border-radius: 4px; text-decoration: none;
  font-size: 14px; margin-top: 12px; transition: background 0.2s;
}
.btn-book:hover { background: #003580; }

/* ===== DESTINATIONS ===== */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.dest-card {
  border-radius: 8px; overflow: hidden; position: relative;
  height: 130px; cursor: pointer; display: flex; align-items: flex-end;
  transition: transform 0.2s; text-decoration: none;
}
.dest-card:hover { transform: scale(1.03); }
.dest-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-size: 44px; }
.dest-label {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  width: 100%; padding: 10px 12px; color: #fff; font-weight: 700; font-size: 15px;
}
.dest-label small { font-size: 11px; font-weight: 400; display: block; }

/* ===== DEALS BANNER ===== */
.deals-banner {
  background: linear-gradient(135deg,#003580,#0071c2);
  border-radius: 10px; padding: 30px 36px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.deals-banner h2 { color: #febb02; margin-bottom: 6px; }
.deals-banner p  { color: #c9e4f7; font-size: 14px; }
.btn-yellow {
  background: #febb02; color: #003580; font-weight: 700;
  border: none; padding: 12px 28px; border-radius: 6px; font-size: 15px;
  cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-yellow:hover { background: #f5a800; }

/* ===== PACKAGES PAGE ===== */
.filter-bar {
  background: #fff; border-radius: 8px; padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.filter-bar select,
.filter-bar input {
  padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 14px; color: #333; background: #fafafa;
}
.filter-bar button {
  background: #0071c2; color: #fff; border: none;
  padding: 8px 20px; border-radius: 4px; font-weight: 700; cursor: pointer;
}
.filter-bar button:hover { background: #003580; }

.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.pkg-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); overflow: hidden; }
.pkg-header { background: linear-gradient(135deg,#003580,#0071c2); padding: 20px; color: #fff; display: flex; align-items: center; gap: 14px; }
.pkg-icon { font-size: 36px; }
.pkg-header h3 { font-size: 18px; margin-bottom: 4px; }
.pkg-header p  { font-size: 13px; opacity: .85; }
.pkg-body { padding: 16px 20px; }
.pkg-feature { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.pkg-feature .dot { color: #0071c2; font-weight: 700; }
.pkg-footer { padding: 12px 20px 16px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; }
.pkg-price strong { font-size: 22px; color: #0071c2; }
.pkg-price span   { font-size: 12px; color: #999; display: block; }
.btn-pkg { background: #0071c2; color: #fff; border: none; padding: 10px 20px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 14px; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-pkg:hover { background: #003580; }

/* ===== ABOUT PAGE ===== */
.stats-bar { background: #fff; display: flex; flex-wrap: wrap; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.stat-item { padding: 24px 48px; text-align: center; border-right: 1px solid #eee; }
.stat-item:last-child { border-right: none; }
.stat-item strong { font-size: 32px; color: #0071c2; display: block; }
.stat-item span { font-size: 13px; color: #666; }
.about-grid { max-width: 1200px; margin: 30px auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.about-card { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.about-card h2 { color: #003580; font-size: 20px; margin-bottom: 14px; }
.about-card p  { font-size: 14px; line-height: 1.8; color: #444; }
.team-grid { max-width: 1200px; margin: 0 auto 40px; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.team-card { background: #fff; border-radius: 8px; text-align: center; padding: 24px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,#003580,#0071c2); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 12px; }
.team-card h4 { color: #003580; font-size: 15px; margin-bottom: 4px; }
.team-card p  { font-size: 12px; color: #888; }

/* ===== CONTACT PAGE ===== */
.contact-layout { max-width: 1100px; margin: 30px auto 40px; padding: 0 20px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; }
.contact-info { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.contact-info h2 { color: #003580; margin-bottom: 20px; font-size: 18px; }
.ci-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { font-size: 22px; color: #0071c2; min-width: 28px; }
.ci-text strong { font-size: 13px; color: #003580; display: block; margin-bottom: 2px; }
.ci-text p, .ci-text a { font-size: 13px; color: #555; line-height: 1.5; text-decoration: none; }
.ci-text a:hover { text-decoration: underline; color: #0071c2; }
.pay-box { background: #ebf3ff; border-radius: 6px; padding: 14px; margin-top: 20px; }
.pay-box strong { color: #003580; font-size: 13px; }
.pay-box p { font-size: 13px; color: #555; margin-top: 6px; }

.booking-form { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.booking-form h2 { color: #003580; margin-bottom: 20px; font-size: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 13px; color: #333; font-weight: 600; display: block; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd;
  border-radius: 4px; font-size: 14px; color: #333;
  transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #0071c2; box-shadow: 0 0 0 2px rgba(0,113,194,0.1); }
.form-group textarea { height: 100px; resize: vertical; }
.form-group .error { color: #c00; font-size: 12px; margin-top: 4px; display: none; }
.btn-submit { width: 100%; background: #0071c2; color: #fff; border: none; padding: 14px; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: #003580; }
.alert { padding: 14px; border-radius: 4px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== FOOTER ===== */
footer { background: #003580; color: #c9e4f7; padding: 40px; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
footer h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
footer a { color: #c9e4f7; text-decoration: none; display: block; font-size: 13px; margin-bottom: 7px; }
footer a:hover { color: #fff; }
footer p { font-size: 13px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a { font-size: 20px; display: inline-block; margin: 0; }
.footer-bottom { max-width: 1200px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid #0f4898; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { display: inline; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  header { padding: 0 16px; }
  .nav-toggle { display: block; }
  nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #003580; padding: 12px 16px; }
  nav.open { display: flex; }
  nav a { margin: 4px 0; }
  .hero { padding: 40px 16px 0; }
  .hero h1 { font-size: 26px; }
  .search-box { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid #ddd; border-radius: 0 !important; }
  .search-btn { border-radius: 0 0 8px 8px; padding: 14px; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #eee; }
  .promo-strip { gap: 16px; padding: 16px; }
  .hotel-detail-layout { grid-template-columns: 1fr; }
  .hotel-gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-main { grid-column: span 2; }
  .room-grid { grid-template-columns: 1fr; }
}

/* ===== HOTEL DETAIL PAGE ===== */

/* Hero */
.hotel-hero {
  background: linear-gradient(135deg,#003580,#0071c2);
  padding: 36px 40px; color: #fff;
}
.hotel-hero-inner { max-width: 1200px; margin: 0 auto; }
.hotel-breadcrumb { font-size: 13px; color: #c9e4f7; margin-bottom: 14px; }
.hotel-breadcrumb a { color: #c9e4f7; text-decoration: none; }
.hotel-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.hotel-breadcrumb span { margin: 0 6px; }
.hotel-title-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
.hotel-title-row h1 { font-size: 30px; margin-bottom: 6px; }
.hotel-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hotel-meta .stars { font-size: 18px; color: #febb02; }
.hotel-meta .location { font-size: 14px; color: #c9e4f7; }
.hotel-meta .concept-badge {
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 3px 10px; border-radius: 12px; font-size: 12px; border: 1px solid rgba(255,255,255,0.3);
}
.hotel-score-box { background: #003580; border-radius: 8px; padding: 14px 20px; text-align: center; min-width: 110px; }
.hotel-score-box .score { font-size: 36px; font-weight: 800; color: #febb02; display: block; line-height: 1; }
.hotel-score-box .score-label { font-size: 13px; color: #c9e4f7; }
.hotel-score-box .review-count { font-size: 11px; color: #89b4f7; margin-top: 2px; }

/* Gallery */
.hotel-gallery-wrap { max-width: 1200px; margin: 24px auto 0; padding: 0 20px; }
.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 8px; border-radius: 10px; overflow: hidden;
}
.gallery-cell {
  background: linear-gradient(135deg,#1a6eb5,#0d3b8f);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; overflow: hidden; position: relative; cursor: pointer;
  transition: filter 0.2s;
}
.gallery-cell:hover { filter: brightness(1.1); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: span 2; font-size: 90px; }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  padding: 16px; color: #fff; font-size: 13px; font-weight: 600;
}
.gallery-more-btn {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.6); color: #fff; border: none;
  padding: 8px 14px; border-radius: 4px; font-size: 13px; cursor: pointer;
}

/* Detail layout */
.hotel-detail-layout {
  max-width: 1200px; margin: 28px auto 40px; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 340px; gap: 24px;
}

/* Main column */
.hotel-main { display: flex; flex-direction: column; gap: 22px; }
.detail-card { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.detail-card h2 { color: #003580; font-size: 18px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #ebf3ff; }
.detail-card p { font-size: 14px; line-height: 1.8; color: #444; }

/* Highlights strip */
.highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.highlight-item {
  display: flex; align-items: center; gap: 7px;
  background: #ebf3ff; color: #003580;
  padding: 7px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
}

/* Facilities grid */
.facilities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 10px;
}
.facility-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border: 1px solid #e5eef8; border-radius: 6px;
  font-size: 13px; color: #333; background: #fafcff;
}
.facility-item .ficon { font-size: 20px; }
.facility-item.highlight-fac { border-color: #0071c2; background: #ebf3ff; color: #003580; font-weight: 600; }

/* Room types */
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.room-card {
  border: 1px solid #dde8f5; border-radius: 8px; overflow: hidden;
  background: #fff; transition: box-shadow 0.2s;
}
.room-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.room-img {
  height: 130px; background: linear-gradient(135deg,#1a6eb5,#0d3b8f);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.room-body { padding: 14px 16px; }
.room-body h4 { color: #003580; font-size: 15px; margin-bottom: 6px; }
.room-features { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0; }
.room-feature { background: #f0f6ff; color: #555; font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.room-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.room-price strong { font-size: 18px; color: #0071c2; }
.room-price span { font-size: 11px; color: #999; display: block; }
.btn-room {
  background: #0071c2; color: #fff; border: none;
  padding: 8px 16px; border-radius: 4px; font-size: 13px;
  font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-room:hover { background: #003580; }

/* Sidebar */
.hotel-sidebar { display: flex; flex-direction: column; gap: 18px; }
.book-box {
  background: #fff; border-radius: 8px; padding: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); border-top: 4px solid #0071c2;
  position: sticky; top: 80px;
}
.book-box h3 { color: #003580; margin-bottom: 4px; font-size: 17px; }
.book-box .book-price { font-size: 26px; font-weight: 800; color: #0071c2; margin: 8px 0; }
.book-box .book-price span { font-size: 13px; color: #999; font-weight: 400; }
.book-box .form-group { margin-bottom: 12px; }
.book-box label { font-size: 12px; font-weight: 700; color: #003580; display: block; margin-bottom: 4px; }
.book-box input, .book-box select {
  width: 100%; padding: 9px 10px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 13px; color: #333;
}
.book-box input:focus, .book-box select:focus { outline: none; border-color: #0071c2; }
.btn-book-now {
  display: block; width: 100%; background: #0071c2; color: #fff;
  border: none; padding: 14px; border-radius: 6px; font-size: 16px;
  font-weight: 700; cursor: pointer; text-align: center; text-decoration: none;
  transition: background 0.2s; margin-top: 14px;
}
.btn-book-now:hover { background: #003580; }
.book-perks { margin-top: 14px; }
.book-perk { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #555; margin-bottom: 6px; }
.book-perk .tick { color: #00873f; font-weight: 700; }

/* Info box sidebar */
.info-box { background: #fff; border-radius: 8px; padding: 18px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.info-box h4 { color: #003580; font-size: 15px; margin-bottom: 12px; }
.info-row { display: flex; gap: 10px; font-size: 13px; color: #444; margin-bottom: 8px; align-items: flex-start; }
.info-row .iicon { font-size: 16px; min-width: 20px; }
