/* ============================================================
   JHOUSE — COMPONENT STYLES
   Includes: animations, nav dropdown, cards, forms, FAQ,
             footer, floating buttons, CTA, gallery, map, etc.
   ============================================================ */

/* ============================================================
   AOS OVERRIDES
   ============================================================ */

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */

@keyframes kenBurns {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseOrange {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.2);
  }
}

@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes badgeBounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 6px 36px rgba(37, 211, 102, 0.65),
      0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: 1;
    top: 6px;
  }

  50% {
    opacity: 0;
    top: 16px;
  }
}

@keyframes bounceIndicator {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Animation utility classes */
.animate-fade-up {
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-up-1 {
  animation-delay: 0.1s;
}

.animate-fade-up-2 {
  animation-delay: 0.22s;
}

.animate-fade-up-3 {
  animation-delay: 0.34s;
}

.animate-fade-up-4 {
  animation-delay: 0.46s;
}

.animate-fade {
  animation: fadeIn 0.8s ease both;
}

.animate-scale-in {
  animation: scaleIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-slide-left {
  animation: slideInLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-slide-right {
  animation: slideInRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-badge {
  animation: badgeBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.stagger-children>*:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger-children>*:nth-child(2) {
  animation-delay: 0.15s;
}

.stagger-children>*:nth-child(3) {
  animation-delay: 0.25s;
}

.stagger-children>*:nth-child(4) {
  animation-delay: 0.35s;
}

.stagger-children>*:nth-child(5) {
  animation-delay: 0.45s;
}

.stagger-children>*:nth-child(6) {
  animation-delay: 0.55s;
}

.stat-number.counting {
  animation: countUp 0.5s ease both;
}

.pulse-orange {
  animation: pulseOrange 2s ease-in-out infinite;
}

.grad-animated {
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite;
}

.hover-lift {
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.img-zoom-wrap {
  overflow: hidden;
}

.img-zoom-wrap img {
  transition: transform var(--transition-slower);
}

.img-zoom-wrap:hover img {
  transform: scale(1.08);
}

.shimmer {
  background: linear-gradient(90deg,
      var(--light-bg) 25%,
      var(--light-bg-2) 50%,
      var(--light-bg) 75%);
  background-size: 1000px 100%;
  animation: shimmer 1.8s infinite linear;
}

.hero-bg {
  animation: kenBurns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ============================================================
   DESKTOP NAV DROPDOWN
   ============================================================ */

.nav-dropdown-wrap {
  position: relative;
}

/* Chevron arrow indicator */
.nav-dd-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  font-size: 10px;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-wrap [aria-expanded="true"] .nav-dd-arrow {
  transform: rotate(-180deg);
}

/* Floating panel — hidden state (display:block lets us animate) */
.nav-dropdown-menu {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: auto !important;
  min-width: 220px;
  border-radius: 14px !important;
  border: 1px solid rgba(10, 25, 41, 0.08) !important;
  padding: 8px !important;
  background: var(--white);
  box-shadow:
    0 8px 32px rgba(10, 25, 41, 0.12),
    0 2px 8px rgba(10, 25, 41, 0.06) !important;
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.22s;
}

/* Visible state — toggled by JS adding .show */
.nav-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 14px !important;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: var(--light-bg) !important;
  color: var(--navy) !important;
}

.nav-dropdown-item.active {
  background-color: #0d6efd !important;
  /* Match default Bootstrap dropdown active */
  color: var(--white) !important;
  font-weight: 600;
}

.nav-dropdown-item i {
  color: var(--orange);
}

.nav-dropdown-item.active i {
  color: var(--white) !important;
}

.dropdown-divider {
  opacity: 0.08;
}

/* Bridge: mouse can travel from nav item to dropdown panel */
.nav-dropdown-wrap .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

/* ============================================================
   BOOTSTRAP OFFCANVAS — Mobile Nav
   ============================================================ */
.mobile-nav-accordion {
  border-bottom: 1px solid var(--border-light) !important;
}

.offcanvas.mobile-nav {
  width: min(300px, 85vw) !important;
  right: 0;
  z-index: 1056 !important;
  border: none;
  box-shadow: -8px 0 40px rgba(10, 25, 41, 0.18);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.offcanvas-backdrop {
  z-index: 1050;
}

.offcanvas-header.mobile-nav-top {
  padding: 0 24px;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-brand {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
  opacity: 1 !important;
}

.mobile-nav-close:hover {
  background: var(--navy);
  color: var(--white);
}

.offcanvas-body.mobile-nav-links {
  padding: 16px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav-links .nav-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
}

.mobile-nav-links .nav-link-item:last-of-type {
  border-bottom: none;
}

.mobile-nav-links .nav-link-item.active {
  color: var(--orange);
}

.mobile-nav-links .nav-link-item::after {
  display: none;
}

.mobile-nav-links .nav-link-item i.fa-chevron-right {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Rooms Accordion inside offcanvas */
.mobile-nav-accordion {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-accordion .accordion-button {
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.mobile-nav-accordion .accordion-button:not(.collapsed) {
  color: var(--orange);
}

.mobile-nav-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23102542'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mobile-rooms-body {
  padding: 8px 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-rooms-body .nav-dropdown-item {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.mobile-rooms-body .nav-dropdown-item:hover {
  color: var(--orange);
  background: var(--light-bg);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.mobile-nav-contact {
  font-size: var(--text-sm);
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.mobile-nav-contact a {
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-base);
}

.mobile-nav-contact a:hover {
  color: var(--orange);
}

/* ============================================================
   ROOM CARD
   ============================================================ */

.room-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
  height: 420px;
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.room-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.room-card:hover .room-card-img {
  transform: scale(1.08);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-card);
}

.room-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.room-card-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.room-card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-normal);
  margin-bottom: 16px;
}

.room-card-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.room-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* ============================================================
   FEATURE CARD
   ============================================================ */

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.25);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.12),
      rgba(255, 181, 71, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--grad-orange);
}

.feature-icon svg,
.feature-icon i {
  color: var(--orange);
  font-size: 24px;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ============================================================
   AMENITY CARD
   ============================================================ */

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-slow);
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.3);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg,
      rgba(16, 37, 66, 0.06),
      rgba(245, 158, 11, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all var(--transition-base);
  font-size: 22px;
  color: var(--navy);
}

.amenity-card:hover .amenity-icon {
  background: var(--grad-orange);
  color: var(--white);
}

.amenity-card span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-dark);
  line-height: var(--leading-snug);
}

/* Amenity grid with FA icons */
.amenity-fa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.amenity-fa-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-fa-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.amenity-fa-card i {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.amenity-fa-card span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ============================================================
   BLOG CARD
   ============================================================ */

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img-wrap {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card h5 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: var(--leading-snug);
  margin-bottom: 10px;
  transition: color var(--transition-base);
}

.blog-card:hover h5 {
  color: var(--orange);
}

.blog-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin: 0 0 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition-base);
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* ============================================================
   TEAM CARD
   ============================================================ */

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  border: 1px solid var(--border-light);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.team-card:hover .team-card-img img {
  transform: scale(1.06);
}

.team-card-body {
  padding: 28px;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ============================================================
   AWARD BADGE
   ============================================================ */

.award-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
}

.award-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.award-score {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.award-score.orange {
  color: var(--orange);
}

.award-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.award-platform {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

/* Awards image grid */
.awards-img-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.award-img-wrap {
  flex: 0 0 auto;
  /* width: 140px; */
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  filter: grayscale(40%);
}

.award-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  filter: grayscale(0%);
}

.award-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dorm-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 48px;
  width: 100%;
}

#dorm-hero {
  min-height: 560px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 72px;
}

#dorm-hero .page-hero-content {
  padding-top: 0;
}

.dorm-hero-cta {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.dorm-hero-cta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--navy);
}

.dorm-hero-cta-head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
}

.dorm-hero-cta-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.dorm-hero-cta-head i {
  color: var(--amber);
  font-size: 0.55rem;
}

.dorm-hero-cta-body {
  padding: 24px;
}

.dorm-hero-cta-body p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.dorm-hero-rate {
  color: var(--white) !important;
  font-weight: 800;
  font-size: var(--text-lg);
}

.dorm-hero-cta-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
}

.dorm-hero-cta-foot div+div {
  margin-top: 8px;
}

.dorm-hero-cta-foot i {
  color: var(--amber);
  margin-right: 8px;
}

.dorm-awards-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.dorm-awards-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dorm-awards-row .awards-img-grid {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  /* overflow-x: auto; */
  min-width: 0;
}

.dorm-awards-row .award-img-wrap {
  width: 120px;
  height: 120px;
}

.dorm-awards-row .award-img-wrap img {
  object-fit: contain;
}

.dorm-awards-title {
  flex: 0 0 auto;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS — Swiper
   ============================================================ */

.testimonials-section {
  background: var(--light-bg);
}

.testimonial-swiper {
  padding-bottom: 50px !important;
}

.testimonial-card-glass {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card-glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  flex-shrink: 0;
}

.tc-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.tc-stars {
  color: var(--amber);
  font-size: var(--text-sm);
}

.tc-text {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.tc-platform {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  color: var(--text-mid);
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background: var(--navy) !important;
}

.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--navy) !important;
  background: var(--white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 900;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.form-group-jh {
  margin-bottom: 20px;
}

.form-label-jh {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control-jh {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-base);
  appearance: none;
}

.form-control-jh:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.form-control-jh::placeholder {
  color: var(--text-light);
}

textarea.form-control-jh {
  min-height: 130px;
  resize: vertical;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
  background: var(--grad-orange);
}

.contact-card-icon i {
  font-size: 24px;
  color: var(--white);
}

.contact-card h5 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card a,
.contact-card p {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  margin: 0;
  transition: color var(--transition-base);
}

.contact-card a:hover {
  color: var(--orange);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question i {
  color: var(--orange);
  font-size: var(--text-sm);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.75;
}

/* Bootstrap Accordion FAQ variant */
.jh-faq-accordion {
  display: grid;
  gap: 14px;
}

.jh-faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.jh-faq-accordion .accordion-button {
  padding: 20px 22px;
  color: var(--navy);
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: none;
}

.jh-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1),
      rgba(255, 255, 255, 0.92));
  box-shadow: none;
}

.jh-faq-accordion .accordion-button:focus {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.16);
}

.jh-faq-accordion .accordion-body {
  padding: 0 22px 22px;
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.75;
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Gallery with named grid areas (rooms page) */
.gallery-grid.grid-12 {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* ============================================================
   RECOGNITION / AS SEEN ON
   ============================================================ */

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  align-items: center;
}

.recognition-img-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-img-wrap:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.recognition-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  filter: grayscale(1) opacity(0.55);
  transition: all var(--transition-base);
}

.media-logo:hover {
  filter: grayscale(0) opacity(1);
}

.media-logo img {
  max-height: 40px;
  width: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   REUSABLE UTILITY COMPONENTS (Extracted from inline CSS)
────────────────────────────────────────────────────────── */

/* Room Amenities List */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.amenity-item:last-child,
.amenity-item.no-border {
  border-bottom: none;
}

.amenity-icon {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Room Policy Boxes */
.policy-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  height: 100%;
}

.policy-icon {
  font-size: 2rem;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.policy-title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 8px;
}

.policy-desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
}

/* Location Contact Info */
.location-contact-box {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.location-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.location-text {
  color: var(--text-mid);
  line-height: 2;
  margin: 0;
}

/* Blog Images */
.blog-img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  max-height: 400px;
  object-fit: cover;
}

/* Transport Cards */
.transport-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  height: 100%;
}

.transport-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.transport-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.transport-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

/* Common text utilities */
.text-op-78 {
  opacity: 0.78;
}

.text-mid-italic {
  font-style: italic;
  color: var(--text-mid);
}

.footer-address p {
  color: var(--white);
}

.footer-link {
  color: var(--amber);
  font-size: var(--text-sm);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--orange);
}

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

.footer-contact-list li {
  margin-bottom: 10px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--amber);
}

.footer-contact-list i {
  color: var(--amber);
  width: 16px;
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 12px;
}

.footer-links li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-dropdown);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 26px;
  color: var(--white);
}

.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.scroll-top-btn i {
  font-size: 14px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  background: var(--grad-navy);
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.07);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  margin-bottom: 36px;
}

.cta-border-box {
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
}

/* ============================================================
   CTA BANNER -  2
   ============================================================ */
.cta-banner-two {
  background: var(--navy-mid);
}

/* ============================================================
   SOCIAL BUTTONS (contact page)
   ============================================================ */

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}

/* WhatsApp CTA box */
.whatsapp-cta {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-cta-icon i {
  font-size: 28px;
  color: var(--white);
}

.whatsapp-cta-title {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

.whatsapp-cta-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.whatsapp-cta-btn {
  background: white;
  color: #25d366;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.whatsapp-cta-btn:hover {
  opacity: 0.9;
  color: #128c7e;
}

/* ============================================================
   MAP EMBED
   ============================================================ */

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.map-container iframe {
  width: 100%;
  display: block;
  border: none;
}

.map-fullwidth {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.map-fullwidth iframe {
  display: block;
}

/* ============================================================
   POLICY ITEMS
   ============================================================ */

.policy-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  margin-bottom: 12px;
  /* Fallback if not in grid */
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 992px) {
  .policies-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    gap: 24px 64px;
  }
}

.policy-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-sm);
}

.policy-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.12),
      rgba(255, 181, 71, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--orange);
}

.policy-item h6 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.policy-item p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  margin: 0;
  line-height: var(--leading-relaxed);
}

/* ============================================================
   LOCATION HIGHLIGHTS
   ============================================================ */

.location-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.location-point:last-child {
  border-bottom: none;
}

.location-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.location-point h6 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.location-point p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  margin: 0;
  line-height: var(--leading-snug);
}

/* ============================================================
   CAROUSEL CONTROLS
   ============================================================ */

.carousel-ctrl {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.carousel-ctrl:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-ctrl svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  transition: stroke var(--transition-base);
}

.carousel-ctrl:hover svg {
  stroke: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-mid);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  width: 24px;
  background: var(--orange);
}

/* ============================================================
   TRIPADVISOR WIDGET
   ============================================================ */

.tripadvisor-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  max-width: 100%;
}

.ta-logo {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #34e0a1;
  margin-bottom: 8px;
}

.ta-title {
  font-weight: 700;
  color: var(--navy);
  font-size: var(--text-base);
  margin-bottom: 6px;
}

.ta-rating {
  color: var(--text-mid);
  font-size: var(--text-sm);
  margin-bottom: 4px;
}

.ta-rank {
  font-weight: 600;
  color: var(--navy);
  font-size: var(--text-sm);
  margin-bottom: 12px;
}

.ta-links a {
  font-size: var(--text-sm);
  color: var(--orange);
  margin-right: 12px;
  transition: color var(--transition-base);
}

.ta-links a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ============================================================
   WHY CHOOSE CARD (Summary list)
   ============================================================ */

.why-choose-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-choose-card-number {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-choose-card-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Checklist items */
.checklist-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.checklist-container-dark {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.checklist-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 8px;
}

.checklist-item:first-child {
  margin-top: 0;
}

.checklist-item-dark {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 8px;
}

.checklist-item-dark:first-child {
  margin-top: 0;
}

/* Feature Large Card */
.feature-large-card {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  border: 1px solid var(--border-light);
}

.feature-large-card.bg-navy {
  background: var(--navy);
  border-color: transparent;
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* Distance Info Card */
.distance-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.distance-info-icon {
  font-size: 24px;
}

.distance-info-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.distance-info-subtitle {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ============================================================
   ROOM TYPE CARD (inner pages — dorm, private, premium)
   ============================================================ */

.room-type-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.room-type-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.room-type-badge {
  display: inline-block;
  background: var(--grad-orange);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.room-type-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.room-type-price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.room-type-price span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
}

/* ============================================================
   DORM / ROOM FEATURE LIST (inline style replacement)
   ============================================================ */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-base);
  color: var(--text-mid);
}

.feature-list-item i {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
}

/* ============================================================
   GENERIC CARD VARIANTS (about, inner pages)
   ============================================================ */

.card-dark {
  background: var(--grad-navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
}

.card-light {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  flex-shrink: 0;
}

.icon-box-orange {
  background: rgba(245, 158, 11, 0.2);
}

.icon-box-feature {
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.12),
      rgba(255, 181, 71, 0.2));
}

/* Team / founder heading */
.founder-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 8px 0 16px;
}

/* Skill tags on team cards */
.skill-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.skill-tag {
  font-size: 0.82rem;
  background: var(--light-bg);
  color: var(--text-mid);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Vision numbered list */
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vision-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.vision-list li:last-child {
  border-bottom: none;
}

.vision-list .item-num {
  color: var(--orange);
  font-weight: 700;
}

/* CTA trust row */
.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-trust-item {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-item i {
  color: var(--amber);
}

/* Inline check list (about preview, index) */
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.check-item i {
  color: var(--orange);
  font-size: 0.7rem;
}

/* Section label centered amber (CTA) */
.section-label-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  justify-content: center;
  margin-bottom: 12px;
}

.section-label-amber::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* Contact page paragraph notes */
.contact-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
    transform: scale(1);
  }
}

/* ============================================================
   ROOMS.PHP SPECIFIC CLASSES
   ============================================================ */

.img-cover-200 {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.img-cover-80 {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.badge-pill-outline {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

.hr-divider {
  border-color: var(--border-light);
  margin: 48px 0;
}

.badge-deluxe {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}

.badge-standard {
  background: linear-gradient(135deg, #F59E0B, #FFB547);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}

.list-item-light {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.list-item-light-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.list-item-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.img-cover-400-lg {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  max-height: 400px;
  object-fit: cover;
}

.hr-light {
  border-color: var(--border-light);
}

.contact-card-link {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-card-link:hover {
  color: var(--orange);
}

/* ============================================================
   JHOUSE — BLOG STYLES
   Styles specifically for Blog Listing and Blog Detail pages.
   ============================================================ */

/* Vertically Center Hero Content on Blog Pages */
#blog-hero.page-hero-section {
  align-items: center !important;
  padding-bottom: 0 !important;
}

#blog-hero .page-hero-content {
  padding-top: 80px !important; /* Adjust for header if needed, while staying vertically centered */
  display: block;
  text-align: left;
}

/* --- Blog Detail --- */
.blog-detail-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.blog-detail-header {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.blog-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--navy);
  line-height: var(--leading-tight);
  margin-bottom: 16px;
}

.blog-detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: var(--text-sm);
  color: var(--text-mid);
}

.blog-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-meta-item i {
  color: var(--orange);
}

/* Content Typography */
.blog-content {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
}

.blog-content h2 {
  font-size: var(--text-3xl);
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--navy);
}

.blog-content h3 {
  font-size: var(--text-2xl);
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--navy);
}

.blog-content p {
  margin-bottom: 24px;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 12px;
}

.blog-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  background: var(--light-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--navy);
  margin: 32px 0;
}

.blog-content img {
  border-radius: var(--radius-md);
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

/* --- Blog Navigation --- */
.blog-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 16px;
}

.blog-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  transition: color var(--transition-base);
  text-decoration: none;
}

.blog-nav-link:hover {
  color: var(--orange);
}

.blog-nav-link i {
  font-size: var(--text-base);
  color: var(--orange);
}


/* --- Sidebar --- */
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.sidebar-widget {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 32px;
  border: 1px solid var(--border-light);
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--grad-orange);
  border-radius: 2px;
}

/* Search Box */
.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 48px 12px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--transition-base);
}

.search-btn:hover {
  color: var(--orange);
}

/* Recent Posts Widget */
.recent-post-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  text-decoration: none;
}

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

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  line-height: var(--leading-snug);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color var(--transition-base);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-item:hover .recent-post-title {
  color: var(--orange);
}

.recent-post-date {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* Categories List */
.category-list li {
  margin-bottom: 12px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-mid);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.category-list a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.category-count {
  background: var(--white);
  color: var(--text-light);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* Popular Tags */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-mid);
  font-size: var(--text-xs);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
}

.tag-item:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}