/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fb;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
 border: 1px solid rgba(255, 255, 255, 0.1);
border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #255c64;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
 bottom: -6px;
width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
}

/* ================= BANNER / HERO ================= */
/* ================= BANNER / HERO ================= */
.banner-section.blog-hero {
  width: 100%;
  height: 800px;
background: url('../images/blog banner img.png') center/cover no-repeat;
osition: relative;
margin-top: 85px;
}
.blog-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
}

.blog-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
}
.blog-container {
  padding: 40px 20px;
  background: #f9fafc;
  font-family: 'Segoe UI', sans-serif;
}

.blog-content {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

h2 {
  margin-top: 30px;
  color: #2c3e50;
}

h3 {
  margin-top: 20px;
  color: #34495e;
}

p {
  line-height: 1.7;
  color: #555;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 8px;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

table th {
  background: #2c3e50;
  color: #fff;
}

.grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1;
  background: #f1f5f9;
  padding: 20px;
  border-radius: 10px;
}

.faq p {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.cta {
  margin-top: 40px;
  padding: 25px;

  color: white;
  text-align: center;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.features {
  margin-top: 15px;
}

.features span {
  display: inline-block;
  margin: 5px 10px;
}

.social {
  margin-top: 30px;
  text-align: center;
}

.social a {
  margin: 0 10px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
}
/* ================= POPUP OVERLAY ================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
  overflow: hidden;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ================= POPUP BOX ================= */
.popup-box {
  background: #fff;
  width: 400px;
  max-width: 95%;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: fixed;
  top: 50%;
 left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.popup-box h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* ================= MONTH NAVIGATION ================= */
.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.month-navigation h3 {
  font-size: 16px;
}

.month-navigation button {
  background: #d4af37;
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

/* ================= CALENDAR ================= */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-grid div {
  padding: 10px 0;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  transition: 0.2s;
}

.calendar-grid div:hover {
  background: #f0f0f0;
}

.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.selected {
  background: #d4af37;
  color: #fff;
}

.selected-info {
  margin-top: 12px;
  font-size: 14px;
  text-align: left;
}
/* ================= FORM FIELDS ================= */
.input-field {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* ================= SUBMIT BUTTON ================= */
.book-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.book-btn:hover {
  background: #b8922e;
}

/* ================= FORM MESSAGE ================= */
#formMessage {
  margin-top: 10px;
  font-size: 14px;
  min-height: 18px;
  text-align: center;
}
/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.footer-col ul li a:hover {
color: #fff7c5;
  padding-left: 4px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}

