/* ================= 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;
  position: relative;
margin-top: 85px;
}
/* CONTAINER */
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}


.blog-main {
  padding: 30px;
}

.featured-image {
  border-radius: 16px;
  margin-bottom: 20px;
}

/* TITLE */
.blog-container h1 {
  font-size: 32px;
  color: #292929;
  margin-bottom: 20px;
  border-left: 6px solid #292929;
  padding-left: 12px;
}

/* HEADINGS */
.blog-container h2 {
  font-size: 22px;
  color: #292929;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
}

/* UNDERLINE EFFECT */
.blog-container h2::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #292929;
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 2px;
}

/* PARAGRAPH */
.blog-container p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #444;
}

/* LIST */
.blog-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.blog-container li {
  margin-bottom: 8px;
  position: relative;
}

/* CUSTOM BULLET */
.blog-container li::marker {
  color: #292929;
}

/* LINKS */
a {
  color: #7e99f3;
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HIGHLIGHT BOX */
.blog-container h2:nth-of-type(2),
.blog-container h2:nth-of-type(3) {
  margin-top: 35px;
}

.blog-container ul + p {
  margin-top: 10px;
}

/* SECTION CARD STYLE */
.blog-container section,
.blog-container h2 + ul,
.blog-container h2 + p {
  margin-bottom: 10px;
}

/* SPECIAL BOX (Approved section highlight) */
.blog-container h2:contains("Approved") {
  color: #292929;
}

/* CTA BOX */
.blog-container h2:contains("Contact") {
  background: #292929;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
}

.blog-container h2:contains("Contact") + p,
.blog-container h2:contains("Contact") + p + p {
  background: #292929;
  color: #fff;
  padding: 10px 15px;
}

/* FAQ BOX */
.blog-container h2:contains("FAQ") {
  background: #f2f2f2;
  padding: 12px;
  border-radius: 6px;
}

/* HOVER EFFECT */
.blog-container:hover {
  transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .blog-container {
    padding: 20px;
    margin: 20px;
  }

  .blog-container h1 {
    font-size: 24px;
  }

  .blog-container h2 {
    font-size: 20px;
  }
}

/* ================= 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);
}
