/* Forged Steel & Amber Architecture Studio Theme */
:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --dark-overlay: rgba(44, 62, 80, 0.95);
  --light-text: #ECF0F1;
  --steel-gradient: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --amber-glow: 0 0 30px rgba(230, 126, 34, 0.4);
  --forge-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
}

.lead {
  color: #ECF0F1 !important;
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Navigation */
.navbar {
  background: var(--steel-gradient) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid var(--secondary-color);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 15px;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: var(--secondary-color);
  box-shadow: var(--amber-glow);
}

.navbar-brand.fw-bold {
  font-weight: 800 !important;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 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='%23E67E22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: #ECF0F1 !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 100%);
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(230, 126, 34, 0.03) 2px, rgba(230, 126, 34, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(230, 126, 34, 0.03) 2px, rgba(230, 126, 34, 0.03) 4px);
  pointer-events: none;
}

.sparks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.08) 0%, transparent 50%);
  animation: sparkleShift 8s ease-in-out infinite;
}

@keyframes sparkleShift {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-section .text-white {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  animation: fadeInUp 1s ease-out;
  position: relative;
}

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

/* Buttons */
.btn {
  border-radius: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
  box-shadow: var(--amber-glow);
  padding: 1rem 2.5rem !important;
}

.btn-lg:hover {
  background: #D35400 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
  color: #FFFFFF !important;
}

.btn-outline-light {
  border: 2px solid #FFFFFF !important;
  color: #FFFFFF !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  border-color: #FFFFFF !important;
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
}

/* Booking Widget */
.booking-widget {
  background: rgba(44, 62, 80, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 2px solid var(--secondary-color);
  box-shadow: var(--forge-shadow), var(--amber-glow);
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

.form-label {
  color: #ECF0F1 !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select,
.form-control-lg,
.form-select-lg {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(230, 126, 34, 0.3) !important;
  color: #FFFFFF !important;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

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

.form-control:focus,
.form-select:focus,
.form-control-lg:focus,
.form-select-lg:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25) !important;
  color: #FFFFFF !important;
}

.form-select option,
.form-select-lg option {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
}

/* Section Styling */
section {
  position: relative;
  z-index: 1;
}

.py-5 {
  padding: 4rem 0 !important;
}

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

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

.bg-white {
  background: #F8F9FA !important;
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white .display-1,
.bg-white .display-2,
.bg-white .display-3,
.bg-white .display-4,
.bg-white .display-5,
.bg-white .display-6 {
  color: var(--primary-color) !important;
}

.bg-white p,
.bg-white .lead {
  color: #495057 !important;
}

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

.bi-building,
.bi-cup-hot,
.bi-geo-alt,
.bi-people,
.bi-compass,
.bi-wifi,
.bi-star-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-hammer,
.bi-tools,
.bi-pin-map-fill,
.bi-arrow-right,
.bi-twitter-x,
.bi-calendar-check,
.bi-file-earmark-text,
.bi-shield-check,
.bi-lock,
.bi-hand-thumbs-up,
.bi-cookie,
.bi-envelope,
.bi-person-x,
.bi-link-45deg,
.bi-arrow-clockwise,
.bi-telephone,
.bi-check2,
.bi-clock,
.bi-cup-straw,
.bi-easel,
.bi-map,
.bi-door-open,
.bi-heart-pulse,
.bi-send,
.bi-geo-alt-fill {
  font-size: 2.5rem;
  color: var(--secondary-color) !important;
  transition: all 0.3s ease;
}

/* Feature Cards */
.col-md-6,
.col-lg-4,
.col-lg-6 {
  transition: transform 0.3s ease;
}

.col-md-6:hover,
.col-lg-4:hover {
  transform: translateY(-10px);
}

.text-center .bi {
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.text-center:hover .bi {
  background: var(--secondary-color);
  color: #FFFFFF !important;
  transform: rotateY(360deg);
  box-shadow: var(--amber-glow);
}

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

.opacity-90 {
  opacity: 0.95 !important;
}

/* Images */
.img-fluid {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
}

.rounded {
  border-radius: 0 !important;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.shadow,
.shadow-sm,
.shadow-lg {
  box-shadow: var(--forge-shadow) !important;
}

/* Cards */
.card {
  background: rgba(44, 62, 80, 0.9) !important;
  border: 2px solid rgba(230, 126, 34, 0.3) !important;
  border-radius: 0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color) !important;
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.3) !important;
}

.card-img-top {
  border-bottom: 3px solid var(--secondary-color);
  transition: transform 0.4s ease;
  height: 250px;
  object-fit: cover;
}

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

.card-body {
  padding: 1.5rem;
  background: rgba(44, 62, 80, 0.95);
}

.card-title {
  color: #FFFFFF !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-text {
  color: #ECF0F1 !important;
  line-height: 1.6;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  box-shadow: var(--amber-glow);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInTimeline 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

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

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid var(--primary-color);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--amber-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(230, 126, 34, 0); }
}

/* Parallax */
.parallax-item {
  transition: transform 0.3s ease-out;
}

/* Border Utilities */
.border-start {
  border-left: 4px solid var(--secondary-color) !important;
}

.border-5 {
  border-width: 5px !important;
}

/* Text Utilities */
.text-light {
  color: #ECF0F1 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-muted {
  color: #95A5A6 !important;
}

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

.text-success {
  color: #27AE60 !important;
}

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

.text-decoration-none:hover {
  color: var(--secondary-color) !important;
}

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

/* Ratio for responsive embeds */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Accordion */
.accordion-item {
  background: rgba(44, 62, 80, 0.9) !important;
  border: 1px solid rgba(230, 126, 34, 0.3) !important;
  margin-bottom: 1rem;
}

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

.accordion-button {
  background: rgba(44, 62, 80, 0.95) !important;
  color: #FFFFFF !important;
  font-weight: 600;
  border: none !important;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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") !important;
  filter: brightness(1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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") !important;
}

.accordion-collapse {
  border-top: 1px solid rgba(230, 126, 34, 0.3);
}

.accordion-body {
  background: rgba(0, 0, 0, 0.2);
  color: #ECF0F1 !important;
  padding: 1.5rem;
  line-height: 1.8;
}

/* Badge */
.badge {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0 !important;
}

/* List */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: #ECF0F1;
}

.list-unstyled a {
  color: #ECF0F1 !important;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Footer */
footer {
  background: var(--steel-gradient);
  color: #ECF0F1;
  border-top: 3px solid var(--secondary-color);
}

footer h5,
footer h4,
footer .h4,
footer .h5 {
  color: #FFFFFF !important;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after,
footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

footer a {
  color: #ECF0F1 !important;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color) !important;
}

footer .bi-facebook,
footer .bi-instagram,
footer .bi-twitter,
footer .bi-twitter-x {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 126, 34, 0.1);
  border: 2px solid var(--secondary-color);
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover,
footer .bi-twitter-x:hover {
  background: var(--secondary-color);
  color: #FFFFFF !important;
  transform: translateY(-5px);
  box-shadow: var(--amber-glow);
}

.opacity-25 {
  opacity: 0.25 !important;
}

hr {
  border-color: rgba(230, 126, 34, 0.3) !important;
  opacity: 1 !important;
}

/* Amenities Reveal Animation */
.amenities-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.amenities-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Utilities */
.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

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

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

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.top-0 {
  top: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.start-50 {
  left: 50% !important;
}

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

.ms-2 {
  margin-left: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

.mt-auto {
  margin-top: auto !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;
}

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

.p-2 {
  padding: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

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

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

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

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

.z-index-1 {
  z-index: 1 !important;
}

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

.rounded-circle {
  border-radius: 50% !important;
}

.small {
  font-size: 0.875rem;
}

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

.fw-semibold {
  font-weight: 600 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 62, 80, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--secondary-color);
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .display-6 {
    font-size: 1.25rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .booking-widget {
    margin-top: 2rem;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .text-lg-end {
    text-align: left !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 1.5rem !important;
  }
  
  .ps-lg-5,
  .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  footer h5::after,
  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  
  .offset-lg-0 {
    margin-left: 0;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .order-lg-3 {
    order: 3 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .p-md-5 {
    padding: 3rem !important;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
}

@media (max-width: 767.98px) {
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--secondary-color);
  color: #FFFFFF;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #D35400;
}

/* Loading Animation */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Glow Effect on Focus */
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: 0 0 20px rgba(230, 126, 34, 0.4) !important;
}

/* Container Fluid */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* Custom Hover Effects */
.card,
.btn,
.nav-link,
.list-unstyled a,
.accordion-button {
  position: relative;
  z-index: 1;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer,
  .booking-widget {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

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

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}