/* Ember Flame Architecture Studio - Custom CSS */

/* ===========================
   ROOT VARIABLES & RESET
   =========================== */
:root {
  --primary-color: #D84315;
  --secondary-color: #FFA726;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --ember-glow: rgba(216, 67, 21, 0.3);
  --flame-gradient: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  --dark-gradient: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.1 !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  opacity: 0.95;
}

.fs-1, .fs-2, .fs-3, .fs-4, .fs-5 {
  line-height: 1.3 !important;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0 !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 1) !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0 4px 30px rgba(216, 67, 21, 0.2);
}

.navbar-brand {
  font-size: 1.75rem !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem !important;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--flame-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 167, 38, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFA726' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-gradient);
  z-index: 1;
}

.hero-section .position-absolute {
  z-index: 0;
  opacity: 0.3;
  filter: brightness(0.7);
}

.hero-section .container-fluid,
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
  background: var(--flame-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.parallax-hero {
  min-height: 70vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.6);
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
  transition: all 0.3s ease !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--flame-gradient) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px var(--ember-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px var(--ember-glow) !important;
  color: var(--text-light) !important;
}

.btn-secondary {
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 167, 38, 0.5) !important;
  color: var(--text-dark) !important;
}

.btn-outline-light {
  border: 2px solid var(--text-light) !important;
  color: var(--text-light) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px) !important;
}

.btn-lg {
  padding: 1rem 3rem !important;
  font-size: 1.1rem !important;
}

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem !important;
}

/* ===========================
   BOOKING WIDGET
   =========================== */
.booking-widget {
  background: rgba(26, 26, 26, 0.9) !important;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 167, 38, 0.3) !important;
  max-width: 1200px;
  animation: fadeInUp 1s ease 0.4s both;
  box-shadow: 0 10px 50px rgba(216, 67, 21, 0.3) !important;
}

.booking-widget .form-label {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

.booking-widget .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.booking-widget .form-control,
.booking-widget .form-select {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--text-light) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 167, 38, 0.25) !important;
  color: var(--text-light) !important;
}

.booking-widget .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.booking-widget .form-select option {
  background: var(--dark-bg) !important;
  color: var(--text-light) !important;
}

/* ===========================
   ANIMATE BOUNCE
   =========================== */
.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.bi-chevron-down {
  color: var(--secondary-color) !important;
  filter: drop-shadow(0 0 10px rgba(255, 167, 38, 0.5));
}

/* ===========================
   SECTIONS
   =========================== */
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pb-4 {
  padding-bottom: 3rem !important;
}

section {
  position: relative;
  overflow: hidden;
}

.container, .container-fluid {
  position: relative;
  z-index: 2;
}

/* ===========================
   IMAGES
   =========================== */
.img-fluid {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.img-fluid:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 60px rgba(216, 67, 21, 0.3);
}

.object-fit-cover {
  object-fit: cover !important;
}

.rounded-3 {
  border-radius: 1rem !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.rounded {
  border-radius: 0.75rem !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25) !important;
}

/* ===========================
   CARDS
   =========================== */
.card {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(216, 67, 21, 0.2);
}

.card-img-top {
  transition: all 0.4s ease;
  height: 250px;
  object-fit: cover;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

.card-body {
  padding: 2rem !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7 !important;
}

/* ===========================
   SUITE CARDS
   =========================== */
.suite-card-wrapper {
  margin-bottom: 2rem;
}

.suite-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.suite-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(216, 67, 21, 0.25);
}

.suite-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.suite-card:hover .suite-image {
  transform: scale(1.1);
}

.ember-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--flame-gradient);
}

.suite-content {
  padding: 2rem;
}

.suite-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  font-size: 1.75rem !important;
  margin-bottom: 1rem !important;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.amenities .bi {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

/* ===========================
   MASONRY GRID
   =========================== */
.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
}

.masonry-grid .suite-card-wrapper {
  break-inside: avoid;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* ===========================
   ICONS
   =========================== */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-fire, .bi-soundwave, .bi-controller, .bi-heart-pulse,
.bi-ring, .bi-gem, .bi-castle, .bi-stars, .bi-heart-fill {
  color: var(--secondary-color);
  filter: drop-shadow(0 2px 4px rgba(255, 167, 38, 0.3));
}

.bi::before {
  font-size: inherit;
}

/* ===========================
   ACCORDION
   =========================== */
.accordion {
  --bs-accordion-border-color: rgba(216, 67, 21, 0.2);
  --bs-accordion-bg: #ffffff;
}

.accordion-item {
  border: 1px solid rgba(216, 67, 21, 0.2) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  font-size: 1.1rem !important;
}

.accordion-button:not(.collapsed) {
  background: var(--flame-gradient) !important;
  color: var(--text-light) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 167, 38, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2249%) hue-rotate(9deg) brightness(96%) contrast(92%);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-collapse {
  border-top: 2px solid rgba(216, 67, 21, 0.1);
}

.accordion-body {
  padding: 1.5rem !important;
  background: #ffffff;
  color: var(--text-dark) !important;
  line-height: 1.8;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  background: transparent !important;
  padding: 1rem 0 !important;
  margin-bottom: 0 !important;
}

.breadcrumb-item {
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--secondary-color) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-dark) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.4) !important;
}

/* ===========================
   FOOTER
   =========================== */
.bg-dark {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%) !important;
}

footer {
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--flame-gradient);
}

footer h5, footer h6 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--flame-gradient);
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

footer .bi-facebook,
footer .bi-instagram,
footer .bi-twitter,
footer .bi-twitter-x,
footer .bi-pinterest,
footer .bi-youtube {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
}

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover,
footer .bi-twitter-x:hover,
footer .bi-pinterest:hover,
footer .bi-youtube:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-3px) scale(1.1);
}

/* ===========================
   FORMS
   =========================== */
.form-control,
.form-select {
  border-radius: 12px !important;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
  background: #ffffff !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem var(--ember-glow) !important;
  background: #ffffff !important;
}

.form-label {
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-dark) !important;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-white {
  color: var(--text-light) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fst-italic {
  font-style: italic !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.fixed-top {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1030 !important;
}

.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

/* ===========================
   SPACING
   =========================== */
.g-0 {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.g-3 {
  --bs-gutter-x: 1rem !important;
  --bs-gutter-y: 1rem !important;
}

.g-4 {
  --bs-gutter-x: 1.5rem !important;
  --bs-gutter-y: 1.5rem !important;
}

.g-5 {
  --bs-gutter-x: 3rem !important;
  --bs-gutter-y: 3rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

.pe-lg-5 {
  padding-right: 3rem !important;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

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

.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

.slide-in-right {
  animation: slideInRight 0.8s ease;
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1199px) {
  .display-1 {
    font-size: 3.5rem !important;
  }
  
  .display-2 {
    font-size: 3rem !important;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 10px;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(255, 167, 38, 0.1);
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .booking-widget {
    margin-top: 2rem;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 2.25rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .ps-lg-5, .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 2rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .booking-widget .col-md-3,
  .booking-widget .col-md-2,
  .booking-widget .col-md-4 {
    margin-bottom: 1rem;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .suite-image {
    height: 250px;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .hero-section {
    min-height: 70vh;
    padding-top: 60px;
  }
  
  .navbar {
    padding: 0.75rem 0 !important;
  }
  
  .navbar-brand {
    font-size: 1.35rem !important;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .btn {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .booking-widget {
    padding: 1.5rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .suite-content {
    padding: 1.5rem !important;
  }
  
  footer .col-lg-4,
  footer .col-lg-2,
  footer .col-lg-3 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* ===========================
   HOVER EFFECTS
   =========================== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hover-glow:hover {
  box-shadow: 0 0 20px var(--ember-glow);
}

/* ===========================
   EMBER FLAME EFFECTS
   =========================== */
.ember-glow {
  position: relative;
}

.ember-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--flame-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ember-glow:hover::before {
  opacity: 0.3;
}

/* ===========================
   LOADING STATES
   =========================== */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--secondary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===========================
   ACCESSIBILITY
   =========================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 3px;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
  .navbar,
  .btn,
  .booking-widget {
    display: none !important;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
}