:root {
  --primary: #DB4907;
  --secondary: #01397D;
  --accent: #E09823;
  --bg-light: #f6f9fe;
  --text-dark: #003366;
}

@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
}





/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  text-align: right;
  /* border-bottom: 1px solid #E6BA20; */
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E6BA20;
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid #E6BA20;
}

.mobile-menu-items a {
  display: block;
  padding: 15px 0;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
  color: #EE861E;
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #EE861E;
}

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #EE861E;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-book-btn:hover {
  background-color: #EE861E;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #E6BA20; */
  text-align: center;
}

.mobile-logo-footer {
  margin-bottom: 5px;
}

.mobile-copyright {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mobile-copyright p {
  margin: 2px 0;
}

.thyo-link {
  color: #EE861E;
  font-weight: 600;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0rem !important;
}






.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 600;
    /* background-color: #f2faff; */
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
}

.navbar-nav .nav-link{
    color: #000000 !important;
}





body {
  font-family: 'Montserrat', sans-serif;
}

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: #fff;
  font-size: 1.05rem;
  padding: 0.35rem 0;
}
.top-bar .fa {
  margin-right: 6px;
}

.top-bar .social-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.top-bar .social-icons a:hover {
  color: var(--primary);
}

/* Main Navbar */
.main-navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0;
}
.main-navbar .navbar-brand img {
  height: 90px;
  width: auto;
  max-width: 100%;
}
.main-navbar .nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:focus,
.main-navbar .nav-link:hover {
  color: var(--primary) !important;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
}
.main-navbar .btn-contact {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  font-size: 1.1rem;
}
.main-navbar .btn-contact:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 991.98px) {
  .main-navbar .navbar-brand img {
    height: 80px;
  }
  .main-navbar .btn-contact {
    width: 100%;
    margin: 12px 0 0 0;
  }
  .main-navbar .navbar-collapse {
    background: #fff;
    padding: 20px 0;
  }
  .main-navbar .nav-link {
    margin: 8px 0;
  }
}
@media (max-width: 575.98px) {
  .top-bar .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 0.98rem;
  }
  .main-navbar .navbar-brand img {
    height: 70px;
  }
}

.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}



/* Hero Section */
.hero-section {
  background: var(--bg-light);
  /* padding: 20px 0; */
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.hero-content {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  /* box-shadow: 0 8px 32px rgba(1, 57, 125, 0.1); */
}

.hero-left {
  background: var(--bg-light);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.hero-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  /* border-left: 4px solid var(--primary); */
  /* padding-left: 1rem; */
}

.hero-form {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 32px rgba(1, 57, 125, 0.1);
  transition: box-shadow 0.3s;
}

.hero-form:hover {
  box-shadow: 0 12px 40px rgba(1, 57, 125, 0.15);
}

.hero-form .form-label {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hero-form .form-control,
.hero-form .form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  background: #fafbfc;
  transition: border 0.2s, box-shadow 0.2s;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(219, 73, 7, 0.15);
  background: #fff;
}

.hero-form .input-group-text {
  background: #fafbfc;
  border: 1px solid #ddd;
  border-right: none;
  padding: 0.65rem 0.75rem;
  border-radius: 8px 0 0 8px;
}

.hero-form .input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.country-code {
  margin-left: 0.3rem;
  font-weight: 600;
  color: #222;
}

.btn-enquire {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 0.85rem 0;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(1, 57, 125, 0.25);
}

.btn-enquire:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 73, 7, 0.3);
}

/* Right Side Image */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
  padding: 0;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  /* border-radius: 0 32px 32px 0; */
  animation: hero-img-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

/* Animations */
@keyframes hero-img-pop {
  0% { 
    opacity: 0; 
    transform: scale(0.95) translateY(40px);
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    /* padding: 40px 0; */
  }
  
  .hero-content {
    border-radius: 24px;
  }
  
  .hero-left {
    padding: 32px 24px;
    border-radius: 24px 24px 0 0;
  }
  
  .hero-right {
    padding: 0;
  }
  
  .hero-img {
    border-radius: 0 0 24px 24px;
    min-height: 250px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    /* padding: 20px 0; */
  }
  
  .hero-content {
    border-radius: 16px;
  }
  
  .hero-left {
    padding: 24px 16px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-form {
    padding: 1.5rem 1rem;
  }
  
  .hero-img {
    border-radius: 0 0 16px 16px;
    min-height: 280px;
  }
  
  .btn-enquire {
    font-size: 1rem;
    padding: 0.75rem 0;
  }
}

/* Hostel Rooms Section */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.room-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.room-card:hover {
  box-shadow: 0 8px 32px #01397d22;
  transform: translateY(-4px) scale(1.01);
}
.room-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-price {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px 4px 8px;
  border-radius: 18px;
  box-shadow: 0 2px 8px #db490733;
  z-index: 2;
  animation: room-price-blink 1.6s ease-in-out infinite;

}
@keyframes room-price-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.room-price small {
  font-weight: 400;
  font-size: 0.9em;
  margin-left: 2px;
  opacity: 0.85;
}
.room-body {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.room-name {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.room-features {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.room-meta {
  display: flex;
  gap: 1.2rem;
  color: var(--secondary);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}
.room-meta i {
  margin-right: 4px;
  color: var(--accent);
}
.btn-enquire-room {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 0;
  font-size: 1.08rem;
  transition: background 0.2s;
  border: none;
  margin-top: auto;
}
.btn-enquire-room:hover {
  background: var(--primary);
  color: #fff;
}

/* Trust Box */
.trust-box {
  background: var(--primary);
  border-radius: 14px;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  color: #fff;
  box-shadow: 0 4px 24px #db490733;
}
.trust-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  line-height: 1.3;
}
.trust-title span {
  color: #fff;
  font-weight: 700;
  font-size: 1.18em;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-list li {
  background: #39181A;
  border-radius: 8px;
  padding: 0.8rem 0.9rem 0.7rem 0.9rem;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: #fff;
  border-left: 5px solid var(--accent);
  box-shadow: 0 2px 8px #0001;
}
.trust-list li:last-child {
  margin-bottom: 0;
}
.trust-icon {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 2px;
  min-width: 1.7em;
  text-align: center;
}
.trust-list strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05em;
}
.trust-list div {
  font-size: 0.98em;
  color: #fff;
  opacity: 0.92;
}
.trust-list li .fa {
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 991.98px) {
  .rooms-section .section-title {
    font-size: 1.5rem;
  }
  .trust-box {
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .room-img-wrap {
    height: 140px;
  }
  .room-card {
    border-radius: 12px;
  }
  .trust-box {
    border-radius: 10px;
    padding: 1rem 0.7rem;
  }
}
@media (max-width: 575.98px) {
  .room-img-wrap {
    height: 110px;
  }
  .room-body {
    padding: 1rem 0.7rem 0.8rem 0.7rem;
  }
  .trust-title {
    font-size: 1.05rem;
  }
}


/* Facilities & Amenities Section */
.facilities-section {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* .facilities-content {
  max-width: 650px;
} */
.facilities-heading .facilities-label {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.facilities-heading .fa-quote-left {
  font-size: 1.1em;
  color: #fff;
  opacity: 0.7;
}
.facilities-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  margin-top: 0.3rem;
  margin-bottom: 0;
}
.facilities-list-box {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 2rem 2rem 1.5rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 24px #01397d22;
}
.facility-item {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  /* gap: 0.7rem; */
  /* margin-bottom: 0.7rem; */
  /* letter-spacing: 0.1px; */
}
.facility-item .fa {
  /* font-size: 1.3em; */
  color: var(--accent);
  background: #fff2;
  border-radius: 50%;
  padding: 7px;
  margin-right: 0.5rem;
}
.facilities-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.facilities-img {
  max-width: 95%;
  border-radius: 18px;
  box-shadow: 0 8px 32px #01397d22;
  border: 4px solid var(--accent);
  background: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .facilities-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .facilities-content {
    max-width: 100%;
  }
  /* .facilities-img {
    max-width: 80vw;
    margin-bottom: 1.5rem;
  } */
  .facilities-list-box {
    padding: 1.2rem 1rem 1rem 1rem;
  }
}
@media (max-width: 575.98px) {
  .facilities-title {
    font-size: 1.2rem;
  }
  .facilities-list-box {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  }
  .facility-item {
    font-size: 0.7rem;
  }
  /* .facilities-img {
    border-radius: 10px;
    border-width: 2px;
  } */
}



/* Highlights Carousel Section */
.highlights-section {
  background: #fff;
}
.highlights-row {
  background: var(--bg-light);
  border-radius: 32px;
  box-shadow: 0 2px 16px #01397d10;
  padding: 1.5rem 2.5rem;
  min-height: 160px;
  overflow-x: auto;
}
.highlight-item {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.highlight-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}
.highlight-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #01397d22;
  opacity: 1;
}
/* .carousel-control-prev {
  left: -32px;
}
.carousel-control-next {
  right: -32px;
} */
.highlight-arrow {
  filter: invert(38%) sepia(99%) saturate(749%) hue-rotate(2deg) brightness(95%) contrast(95%);
  width: 2rem;
  height: 2rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .highlights-row {
    padding: 1.2rem 1rem;
    border-radius: 18px;
    min-height: 120px;
  }
  .highlight-item {
    min-width: 120px;
    max-width: 150px;
  }
  .highlight-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .highlights-row {
    padding: 0.7rem 0.2rem;
    border-radius: 10px;
    min-height: 90px;
  }
  .highlight-item {
    min-width: 90px;
    max-width: 120px;
    margin: 0 4px;
  }
  .highlight-title {
    font-size: 0.6rem;
  }
  .highlight-icon {
    width: 32px;
    height: 32px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
  }
}


/* Testimonials Section */
.testimonials-section {
  background: var(--secondary);
  color: #fff;
}
.testimonials-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.testimonials-img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px #01397d22;
  background: #fff;
}
.testimonials-content {
  color: #fff;
}
.testimonials-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
}
.testimonials-arrows {
  display: flex;
  gap: 0.7rem;
}
.testimonial-arrow {
  background: #fff;
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px #01397d22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.testimonial-arrow:hover {
  background: var(--primary);
  color: #fff;
}
.testimonial-card {
  background: #fff;
  color: #444;
  border-radius: 14px;
  box-shadow: 0 4px 24px #01397d10;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  color: #444;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-author .author-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.08rem;
}
.testimonial-author .author-role {
  font-size: 0.98rem;
  color: #888;
}

/* Responsive */
@media (max-width: 991.98px) {
  .testimonials-title {
    font-size: 1.3rem;
  }
  .testimonial-card {
    padding: 1.2rem 1rem 1rem 1rem;
    min-height: 180px;
  }
  .testimonials-img {
    border-radius: 10px;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 2rem 0 1rem 0;
  }
  .testimonials-title {
    font-size: 1.05rem;
  }
  .testimonial-card {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    min-height: 120px;
  }
}


/* Location Page Styles */
.location-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
}

.location-hero-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.location-hero-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.location-hero-list li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.location-hero-list i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Location Cards */
.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.location-badge .badge {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.location-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-card-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.location-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location-card-details {
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  padding: 1rem 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item i {
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.location-card-address {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-features {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.landmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmark-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #666;
}

.landmark-list i {
  margin-right: 0.5rem;
}

.location-card-map iframe {
  width: 100%;
  border-radius: 12px;
}

.location-actions .btn {
  font-weight: 600;
}

/* Feature Box */
.feature-box {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e0e0;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Styles */
.location-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.location-cta-desc {
  max-width: 600px;
  margin: 0 auto;
}

.location-cta-btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .location-hero-title {
    font-size: 2.2rem;
  }
  
  .location-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .location-hero-title {
    font-size: 1.8rem;
  }
  
  .location-cta-title {
    font-size: 1.8rem;
  }
  
  .location-card {
    padding: 1.25rem;
  }
}

/* Hostel Photos Section */
.hostel-photos-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2rem;
}
.btn-view-all {
  font-weight: 600;
  color: var(--secondary);
  border-radius: 10px;
  /* padding: 0.45rem 1.2rem; */
  /* font-size: 1.1rem; */
  border: none;
  background: #f6f9fe;
  transition: background 0.2s, color 0.2s;
}
.btn-view-all:hover {
  background: var(--primary);
  color: #fff;
}
.hostel-photo-tabs .nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  background: transparent;
  border-bottom: 2.5px solid transparent;
  margin-right: 1.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.hostel-photo-tabs .nav-link.active,
.hostel-photo-tabs .nav-link:focus {
  color: var(--primary);
  border-bottom: 2.5px solid var(--primary);
  background: transparent;
}
.hostel-photo-tabs .nav-link:not(.active):hover {
  color: var(--accent);
}
.hostel-photo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 16px #01397d10;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hostel-photo-img:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 32px #01397d22;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hostel-photo-img {
    height: 180px;
  }
  .hostel-photos-section .section-title {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .hostel-photo-img {
    height: 180px;
    border-radius: 6px;
  }
  .hostel-photo-tabs .nav-link {
           font-size: 0.7rem;
        margin-right: 0.1rem;
  }
}



/* Footer Section */
.main-footer {
  background: var(--secondary);
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.1px;
}
.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px #01397d22;
  object-fit: contain;
}
.footer-brand .footer-desc {
  font-size: 1.12rem;
  font-weight: 500;
  color: #fff;
  margin-left: 0.5rem;
}
.footer-contact {
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-contact i {
  color: var(--accent);
  font-size: 1.2rem;
}
.footer-social a {
  color: #fff;
  font-size: 1.35rem;
  margin-right: 1.1rem;
  transition: color 0.2s;
  display: inline-block;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a:hover {
  color: var(--primary);
}
.footer-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.3rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}
.footer-map-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}
.footer-map-img {
  width: 160px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 12px #01397d22;
  background: #fff;
}
.footer-divider {
  border-top: 1.5px solid #fff2;
  margin: 2rem 0 1.2rem 0;
}
.footer-copy {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.92;
}
.footer-dev {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.92;
}
.footer-dev a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-dev a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 991.98px) {

  .footer-dev {
  font-size: 1rem;
}
  .footer-copy {
  font-size: 0.8rem;

}
  .footer-logo {
    width: 70px;
    height: 70px;
  }
  .footer-map-img {
    width: 120px;
    border-radius: 12px;
  }
  .footer-title {
    font-size: 1.05rem;
  }
}
@media (max-width: 767.98px) {
  .main-footer {
    font-size: 0.98rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .footer-logo {
    width: 54px;
    height: 54px;
    border-radius: 8px;
  }
  .footer-map-img {
    width: 90px;
    border-radius: 8px;
  }
  .footer-title {
    font-size: 0.98rem;
  }
  .footer-brand .footer-desc {
    font-size: 0.98rem;
  }
}
@media (max-width: 575.98px) {
  .footer-logo {
    width: 40px;
    height: 40px;
  }
  .footer-map-img {
    width: 60px;
    border-radius: 5px;
  }
  .footer-title {
    font-size: 0.92rem;
  }
  .footer-brand .footer-desc {
    font-size: 0.92rem;
  }
  .footer-links a {
    font-size: 0.95rem;
  }
}





/* About Hostel Page Animations & Styles */
.about-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
  letter-spacing: -1px;
}
.about-hero-title span {
  color: var(--primary);
}
.about-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.about-hero-list li {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-hero-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.about-hero-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.about-hero-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
.about-hero-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: hero-img-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

/* Values Section */
.about-values-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}
.about-values-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.about-value-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  min-height: 270px;
  animation: pop-in 0.7s both;
}
.about-value-card:hover {
  box-shadow: 0 8px 32px #01397d22;
  transform: translateY(-4px) scale(1.03);
}
.about-value-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-value-title {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.about-value-text {
  color: #555;
  font-size: 1rem;
}

/* Stats Section */
.about-stats-section {
  background: var(--bg-light);
}
.about-stat-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #01397d10;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  animation: slide-up 0.7s both;
}
.about-stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.about-stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.about-stat-label {
  color: var(--secondary);
  font-size: 1rem;
}

/* Warden Section */
.about-warden-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 6px solid var(--accent);
  margin-bottom: 1.2rem;
  animation: zoom-in 1.1s both;
}
.about-warden-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}
.about-warden-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.about-warden-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-warden-list li {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-warden-list i {
  color: var(--accent);
  font-size: 1.1em;
}

/* CTA Section */
.about-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.about-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Animations */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}

.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .about-hero-title { font-size: 2rem; }
  .about-warden-img { width: 160px; height: 160px; }
}
@media (max-width: 575.98px) {
  .about-hero-title { font-size: 1.3rem; }
  .about-hero-desc { font-size: 1rem; }
  .about-value-card { padding: 1.2rem 0.7rem; min-height: 200px; }
  .about-warden-img { width: 110px; height: 110px; }
  .about-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}

/* Add to main.css */
.about-cta-section {
  position: relative;
  z-index: 1;
}
.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 57, 125, 0.82); /* var(--secondary) with opacity */
  z-index: 0;
}
.about-cta-section > .container {
  position: relative;
  z-index: 1;
}




/* Rooms Page Styles & Animations */
.rooms-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
}
.rooms-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.rooms-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.rooms-hero-list li {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.rooms-hero-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.rooms-hero-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}

/* Room Cards */
.room-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: pop-in 0.7s both;
}
.room-card:hover {
  box-shadow: 0 8px 32px #01397d22;
  transform: translateY(-4px) scale(1.01);
}
.room-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* Facilities Section */
.rooms-facilities-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}
.rooms-facilities-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
}
.rooms-facilities-list li {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.rooms-facilities-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.rooms-facilities-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}

/* CTA Section */
.rooms-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.rooms-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Animations */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}

.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .rooms-hero-title { font-size: 2rem; }
  .rooms-hero-img, .rooms-facilities-img { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .rooms-hero-title { font-size: 1.3rem; }
  .rooms-hero-desc { font-size: 1rem; }
  .room-card { border-radius: 12px; }
  .room-img-wrap { height: 110px; }
  .rooms-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}


/* Facilities Page Styles */
.facilities-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
}
.facilities-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.facilities-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.facilities-hero-list li {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.facilities-hero-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.facilities-hero-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}

/* Facilities Grid */
.facility-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  min-height: 240px;
  animation: pop-in 0.7s both;
}
.facility-card:hover {
  box-shadow: 0 8px 32px #01397d22;
  transform: translateY(-4px) scale(1.03);
}
.facility-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.facility-title {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.facility-desc {
  color: #555;
  font-size: 1rem;
}

/* Gallery */
.facilities-gallery-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}
.facilities-gallery-section img {
  transition: transform 0.2s, box-shadow 0.2s;
}
.facilities-gallery-section img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px #01397d22;
}

/* CTA Section */
.facilities-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.facilities-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Animations (reuse from previous) */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}

.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .facilities-hero-title { font-size: 2rem; }
  .facilities-hero-img { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .facilities-hero-title { font-size: 1.3rem; }
  .facilities-hero-desc { font-size: 1rem; }
  .facility-card { padding: 1.2rem 0.7rem; min-height: 180px; }
  .facilities-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}


/* Gallery Page Styles */
.gallery-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
}
.gallery-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.gallery-hero-img {
  max-width: 95%;
  height: 300px;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}
.gallery-grid-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
}
.gallery-grid-section img {
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid-section img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px #01397d22;
}
.gallery-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.gallery-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Animations (reuse from previous) */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}
.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }
/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .gallery-hero-title { font-size: 2rem; }
  .gallery-hero-img { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .gallery-hero-title { font-size: 1.3rem; }
  .gallery-hero-desc { font-size: 1rem; }
  .gallery-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}



/* Location Page Styles */
.location-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
}
.location-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.location-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.location-hero-list li {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.location-hero-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.location-hero-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}
.location-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: pop-in 0.7s both;
}
.location-card:hover {
  box-shadow: 0 8px 32px #01397d22;
  transform: translateY(-4px) scale(1.03);
}
.location-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.location-card-icon {
  font-size: 2rem;
  color: var(--primary);
}
.location-card-title {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 0;
}
.location-card-address {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.location-card-map iframe {
  border-radius: 10px;
  border: 2px solid var(--bg-light);
}
.location-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.location-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Animations (reuse from previous) */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}
.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }
/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .location-hero-title { font-size: 2rem; }
  .location-hero-img { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .location-hero-title { font-size: 1.3rem; }
  .location-hero-desc { font-size: 1rem; }
  .location-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}



/* Contact Page Styles */
.contact-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.5rem;
}
.contact-hero-desc {
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.contact-hero-list li {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-hero-list li a{
  color: var(--secondary);
}
.contact-hero-list i {
  color: var(--accent);
  font-size: 1.1em;
}
.contact-hero-img {
  max-width: 95%;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--text-dark)18;
  background: #fff;
  animation: zoom-in 1.1s both;
}
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #01397d10;
}
.contact-form-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.5rem;
}
.contact-form-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-form-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
.contact-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Animations (reuse from previous) */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes zoom-in {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}
.animate-fade-in { animation: fade-in 1s both; }
.animate-slide-up { animation: slide-up 1s both; }
.animate-pop-in { animation: pop-in 0.7s both; }
.animate-zoom-in { animation: zoom-in 1.1s both; }
/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .contact-hero-title { font-size: 2rem; }
  .contact-hero-img { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .contact-hero-title { font-size: 1.3rem; }
  .contact-hero-desc { font-size: 1rem; }
  .contact-form-btn, .contact-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}

/* Rules & Discipline Content Page Styles */
.rules-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2.3rem;
  letter-spacing: -1px;
}
.rules-hero-desc {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.rules-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  letter-spacing: 0.5px;
}
.rules-content ul {
  list-style: disc inside;
  padding-left: 1.2em;
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 1.5rem;
}
.rules-content ul li {
  margin-bottom: 0.6rem;
  background: #fff;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  box-shadow: 0 2px 8px #e0982320;
  color: var(--text-dark);
  transition: box-shadow 0.2s, background 0.2s;
}
.rules-content ul li strong {
  color: var(--primary);
}
.rules-content ul li:hover {
  background: var(--bg-light);
  box-shadow: 0 4px 16px #db490733;
}
.rules-cta-section {
  background: var(--secondary);
  position: relative;
  z-index: 1;
}
.rules-cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px #01397d30;
}
.rules-cta-btn:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 991.98px) {
  .rules-hero-title { font-size: 1.7rem; }
  .rules-content h3 { font-size: 1.1rem; }
}
@media (max-width: 575.98px) {
  .rules-hero-title { font-size: 1.2rem; }
  .rules-hero-desc { font-size: 1rem; }
  .rules-content ul li { font-size: 0.97rem; padding: 0.6rem 0.7rem; }
  .rules-cta-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
}


.blink {
  animation: blink 1.5s steps(2, start) infinite;
}
.blink:hover {
  animation: none;
}
@keyframes blink {
  to { visibility: hidden; }
}


.typewriter #typeLocation {
  border-right: .12em solid var(--accent, #E09823);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.75s step-end infinite;
  font-family: inherit;
}
@keyframes blink-caret {
  50% { border-color: transparent; }
}


/* Room Badge */
.room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}

.room-badge .badge {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Room Facilities */
.room-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-facilities .badge {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.room-facilities .badge i {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .room-facilities {
    justify-content: center;
  }
}





/* Location Section Updates */
.location-box {
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.location-badge {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.location-badge:hover {
  background: #e9ecef;
}

.location-badge span {
  font-size: 1.2rem;
}

.location-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
}

.location-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.location-icon-wrap {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon-wrap i {
  color: #fff;
  font-size: 1.3rem;
}

.location-label {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 0.25rem;
}

.location-phone a:hover {
  color: var(--primary) !important;
}

.location-address {
  line-height: 1.6;
  font-weight: 500;
}

.location-map-ratio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991.98px) {
  .location-title {
    font-size: 1.5rem;
  }
  
  .location-box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .location-title {
    font-size: 1.25rem;
  }
  
  .location-info {
    padding: 1.5rem !important;
  }
  
  .location-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}





.btn-view-menu {
  display: inline-flex;
  align-items: center;
  /* gap: 0.5rem; */
  padding: 0.5rem 0.5rem;
  /* font-size: 1.15rem; */
  font-weight: 600;
  color: #fff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(1, 57, 125, 0.12);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-view-menu:hover, .btn-view-menu:focus {
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(1, 57, 125, 0.18);
  text-decoration: none;
}
.btn-view-menu i {
  font-size: 1.2em;
}
