/* ----------------------------------------------------------- RESET & BASE ----------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* ----------------------------------------------------------- HEADER ----------------------------------------------------------- */
.main-header {
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; /* allow wrapping for mobile */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo image and text */
}

.header-left .header-favicon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #444;
  white-space: nowrap; /* prevent wrapping */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap; /* allow icons/buttons to wrap on small screens */
  margin-top: 10px; /* small margin for wrapping on mobile */
}

/* --- Social Icons --- */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  cursor: pointer;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: 0.25s ease;
}

.social-icon:hover img {
  transform: scale(1.15);
  filter: brightness(1.25);
}

/* --- WhatsApp Button --- */
.book-now {
  background: #25D366;
  color: white;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}

.book-now:hover {
  background: #1ebe5e;
  transform: scale(1.05);
}

.book-now img {
  width: 22px;
  height: 22px;
}

/* --- BOOK NOW HEADER BUTTON --- */
.book-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 25px rgba(0,0,0,0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
  background: linear-gradient(135deg, #1abc9c, #27ae60, #f39c12, #e74c3c, #8e44ad, #3498db);
  background-size: 300% 300%;
  animation: colorCycle 12s infinite linear;
}

.book-now-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
}

@keyframes colorCycle {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ----------------------------------------------------------- HERO SECTION ----------------------------------------------------------- */
.hero {
  height: 70vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1.3s ease-in-out;
}

.hero-overlay {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  padding: 20px 25px;
  border-radius: 12px;
  color: white;
  animation: fade-slide 1.6s ease both;
  max-width: 90%;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-overlay p {
  font-size: 1rem;
}

@keyframes fade-slide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------- CONTENT ----------------------------------------------------------- */
.content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 45px 0;
}

.intro {
  margin-bottom: 50px;
}

/* ----------------------------------------------------------- SPLIT SECTIONS ----------------------------------------------------------- */
.split {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 300px;
}

.split-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.split-img {
  flex: 1 1 300px;
}

.split-img img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: zoom-in;
}

/* ----------------------------------------------------------- WHY BOOK ----------------------------------------------------------- */
.why-book {
  margin: 50px 0;
  padding: 20px 25px;
  background: white;
  border-left: 6px solid #25D366;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.why-book h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* ----------------------------------------------------------- BACK BUTTON ----------------------------------------------------------- */
.back-btn {
  text-align: center;
  margin-top: 40px;
}

.back-btn a {
  display: inline-block;
  background: #0052cc;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-btn a:hover {
  background: #003d9c;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------- FOOTER ----------------------------------------------------------- */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}

/* ----------------------------------------------------------- MEDIA QUERIES ----------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .main-header { padding: 12px 4%; }
  .logo { font-size: 1.5rem; }
  .header-right { gap: 14px; }
  .book-now-btn { padding: 9px 24px; font-size: 16px; }
}

@media screen and (max-width: 768px) {
  .hero-overlay h1 { font-size: 1.6rem; }
  .hero-overlay p { font-size: 0.95rem; }
  .split { flex-direction: column; gap: 20px; }
  .split-img img { max-height: 350px; }
  .why-book h2 { font-size: 1.5rem; }
  .header-left, .header-right { width: 100%; justify-content: center; margin-top: 8px; }
  .main-header { flex-direction: column; align-items: center; }
  .book-now-btn { padding: 8px 22px; font-size: 15px; }
}

@media screen and (max-width: 480px) {
  .hero { height: 60vh; }
  .hero-overlay h1 { font-size: 1.3rem; }
  .hero-overlay p { font-size: 0.85rem; }
  .split-img img { max-height: 280px; }
  .split-text h3 { font-size: 1.3rem; }
  .back-btn a { padding: 10px 20px; font-size: 0.9rem; }
  .logo { font-size: 1.3rem; }
  .header-left .header-favicon { width: 32px; height: 32px; }
  .social-icon img { width: 26px; height: 26px; }
  .book-now { padding: 8px 18px; font-size: 0.9rem; }
  .book-now-btn { width: 100%; text-align: center; padding: 10px 0; font-size: 14px; margin-top: 5px; white-space: normal; }
}
