/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
/* ==========================================================================
   1. HEADER & NAVIGATION STYLES
   ========================================================================== */
.top-bar {
  background-color: #e3f6f8;
  padding: 12px 5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.top-nav a {
  color: #55606e;
}
.top-nav a:hover {
  color: #1e3a5f;
}
.top-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 15px;
  margin-right: 25px;
  color: #55606e;
}
.top-icons i {
  cursor: pointer;
  font-size: 13px;
}
.cart-icon {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ffffff;
  color: #55606e;
  border-radius: 50%;
  padding: 1px 4px;
  font-size: 9px;
  font-weight: bold;
}
.blue-pages-brand {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.1;
  border-left: 1px solid #bce3e8;
  padding-left: 20px;
}
.blue-pages-brand span {
  display: block;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #666;
}
 
.nav-boxes-bar {
  display: flex;
  width: 100%;
  background-color: #1e3a5f;
}
.nav-box {
  flex: 1;
  padding: 16px 10px;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}
.nav-box:last-child {
  border-right: none;
}
.nav-box.box-dark-1 { background-color: #264366; }
.nav-box.box-light-1 { background-color: #c4e8ed; color: #1e3a5f; }
.nav-box.box-dark-2 { background-color: #233e61; }
.nav-box.box-light-2 { background-color: #b3e1e7; color: #1e3a5f; }
.nav-box.box-dark-3 { background-color: #223c5e; }
.nav-box:hover { filter: brightness(0.9); }
 
/* ==========================================================================
   2. HERO / BANNER SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #f7f9fa;
  background-image: linear-gradient(to right, rgba(255,255,255,0.95) 35%, rgba(255,255,255,0.2) 70%), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center right;
  padding: 60px 8%;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 420px; }
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.subtitle-top { font-size: 13px; color: #555; }
.brand-title {
  font-size: 64px;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: -1px;
  line-height: 1;
  margin: 10px 0 5px 0;
}
.brand-subtitle { font-size: 18px; color: #444; font-weight: 300; margin-bottom: 8px; }
.tagline { font-style: italic; font-size: 13px; color: #666; margin-bottom: 25px; }
.hero-buttons { display: flex; flex-direction: column; width: 140px; gap: 8px; margin-bottom: 25px; }
.btn-book {
  text-align: center;
  font-size: 11px;
  color: #1e3a5f;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid #1e3a5f;
}
.btn-about {
  text-align: center;
  background-color: #1e3a5f;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
}
.social-links { display: flex; gap: 12px; }
.social-links a { color: #222; font-size: 13px; }
 
/* ==========================================================================
   3. SECTIONS (OFFER, WHY US, PROMOS, SERVICES)
   ========================================================================== */
.offer-section {
  background-color: #f3f5f6;
  background-image: linear-gradient(to right, rgba(243, 245, 246, 0.92) 45%, rgba(243, 245, 246, 0.3) 100%), url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center right;
  padding: 70px 10%;
}
.offer-content { max-width: 800px; margin: 0 auto; text-align: center; }
.offer-title { font-size: 46px; font-weight: 300; margin-bottom: 20px; }
.offer-text { font-size: 12px; color: #555; line-height: 1.8; margin-bottom: 15px; }
 
.why-us-section { padding: 70px 8%; text-align: center; background-color: #ffffff; }
.why-us-title { font-size: 26px; font-weight: 300; }
.why-us-subtitle { font-size: 22px; color: #1e3a5f; margin-bottom: 50px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.feature-card { display: flex; flex-direction: column; align-items: center; }
.feature-icon-box {
  width: 50px; height: 50px; border: 1px solid #333; border-radius: 10px;
  display: flex; justify-content: center; align-items: center; margin-bottom: 15px;
}
 
.promos-section { background-color: #e3f6f8; padding: 60px 5%; text-align: center; }
.section-title { font-size: 28px; font-weight: 300; margin-bottom: 40px; }
.packages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; max-width: 1100px; margin: 0 auto 40px auto; }
.package-card { display: flex; flex-direction: column; align-items: center; }
.package-img-wrapper { width: 100%; height: 140px; overflow: hidden; margin-bottom: 15px; }
 
.services-section { background-color: #e3f6f8; padding: 40px 5% 80px 5%; text-align: center; }
.services-intro { max-width: 650px; margin: 0 auto 50px auto; font-size: 11px; color: #555; }
.services-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1100px; margin: 0 auto; }
.service-banner-card { display: flex; height: 220px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.service-card-info { flex: 1; padding: 20px 15px; display: flex; flex-direction: column; justify-content: space-between; text-align: left; }
.service-card-img { flex: 1; overflow: hidden; }
.bg-lime { background-color: #ddf38c; }
.bg-pink { background-color: #f7bdc7; }
.bg-yellow { background-color: #f2f738; }
 
/* ==========================================================================
   4. INQUIRY FORM STYLES (Requirement #6)
   ========================================================================== */
.form-section {
  background-color: #ffffff;
  padding: 60px 5%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.form-section h3 { font-size: 22px; color: #1e3a5f; margin-bottom: 10px; text-align: center; }
.form-section p { font-size: 12px; color: #666; margin-bottom: 25px; text-align: center; }
.mod-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { font-size: 11px; font-weight: 600; color: #1e3a5f; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 12px;
}
.btn-submit {
  background-color: #1e3a5f; color: #ffffff; border: none; padding: 12px;
  font-size: 12px; font-weight: 600; cursor: pointer; border-radius: 4px; transition: background 0.3s;
}
.btn-submit:hover { background-color: #152943; }
 
/* ==========================================================================
   5. FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: #1e3a5f;
  color: #ffffff;
  padding: 40px 5% 20px 5%;
  font-size: 11px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-column h4 { font-size: 13px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 5px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 8px; }
.footer-column ul li a { color: #c4e8ed; }
.footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; color: #a0b2c6; }
 
/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .nav-boxes-bar { flex-wrap: wrap; }
  .nav-box { flex: 1 1 50%; }
  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cards-grid { grid-template-columns: 1fr; }
}
