/* Ember & Slate - Architecture Studio Theme CSS */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #37474F;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --transition: all 0.3s ease;
}

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

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

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #263238 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 1000;
}

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

.navbar-brand {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--primary-color) !important;
  transform: scale(1.05);
}

.navbar-dark .navbar-toggler {
  border-color: var(--primary-color) !important;
  color: var(--text-light) !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='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  gap: 1rem;
}

.nav-item .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: var(--text-light) !important;
  background-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

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

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

.nav-custom {
  background-color: transparent !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M0 0l100 100M100 0L0 100" stroke="%23D32F2F" stroke-width="0.5" opacity="0.1"/%3E%3C/svg%3E');
  opacity: 0.1;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

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

.hero-section .display-2 {
  color: var(--text-light) !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Booking Widget */
.booking-widget {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  max-width: 1000px;
  box-shadow: 0 10px 40px rgba(211, 47, 47, 0.2) !important;
}

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

.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25) !important;
  background-color: #ffffff !important;
}

.form-control-lg {
  font-size: 1rem !important;
}

.form-select-lg {
  font-size: 1rem !important;
}

/* Buttons */
.btn {
  transition: var(--transition);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none !important;
}

.btn-lg {
  padding: 0.875rem 2rem !important;
}

.booking-widget .btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #B71C1C 100%) !important;
  color: var(--text-light) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.booking-widget .btn:hover {
  background: linear-gradient(135deg, #B71C1C 0%, var(--primary-color) 100%) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4) !important;
}

.btn-light {
  background-color: #ffffff !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
}

.btn-light:hover {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
}

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

.btn-outline-light:hover {
  background-color: var(--text-light) !important;
  color: var(--secondary-color) !important;
  border-color: var(--text-light) !important;
}

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

.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
}

/* Cards */
.card {
  transition: var(--transition);
  border: none !important;
  overflow: hidden;
}

.card.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--secondary-color) !important;
  font-weight: 700;
}

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

.shadow-sm {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

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

.bi-building,
.bi-cup-hot,
.bi-flower1,
.bi-compass,
.bi-snow2,
.bi-people,
.bi-star-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-youtube,
.bi-airplane-fill,
.bi-car-front-fill,
.bi-p-square-fill,
.bi-bus-front-fill,
.bi-tag,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-eye,
.bi-pencil,
.bi-trash,
.bi-hand-thumbs-down,
.bi-check-circle-fill,
.bi-exclamation-triangle-fill,
.bi-send-fill,
.bi-arrow-right,
.bi-chevron-down {
  color: inherit;
  transition: var(--transition);
}

.text-muted .bi {
  color: #6c757d !important;
}

.card-body .bi {
  font-size: 3rem;
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #B71C1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper .bi {
  color: var(--text-light) !important;
  font-size: 2.5rem;
  margin: 0;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

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

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

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

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

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

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

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

.bg-light {
  background-color: var(--light-bg) !important;
}

/* Typography */
.display-2 {
  font-weight: 700;
  color: var(--secondary-color);
}

.display-3 {
  font-weight: 700;
  color: var(--secondary-color);
}

.display-4 {
  font-weight: 700;
  color: var(--secondary-color);
}

.display-5 {
  font-weight: 700;
  color: var(--secondary-color);
}

.display-6 {
  font-weight: 700;
  color: var(--secondary-color);
}

.h3, h3 {
  color: var(--secondary-color);
  font-weight: 700;
}

.h4, h4 {
  color: var(--secondary-color);
  font-weight: 700;
}

.h5, h5 {
  color: var(--secondary-color);
  font-weight: 600;
}

.h6, h6 {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-white {
  color: var(--text-light) !important;
}

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

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

.text-muted {
  color: #6c757d !important;
}

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

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

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-1 {
  font-size: 2.5rem !important;
}

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

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Split Container */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  gap: 0;
}

.left-panel,
.right-panel {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-panel {
  background: linear-gradient(135deg, var(--secondary-color), #263238);
  color: var(--text-light);
}

.right-panel {
  background-color: var(--light-bg);
}

.founder-story {
  max-width: 600px;
  margin: 0 auto;
}

.founder-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.parallax-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  margin: 2rem 0;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid var(--light-bg);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-dark);
  line-height: 1.6;
}

.timeline-img {
  margin-top: 1rem;
  border-radius: 8px;
  max-width: 100%;
}

/* Sustainability Section */
.sustainability-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.commitment-item {
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
}

.commitment-item:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #263238 100%);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-heading {
  color: var(--text-light) !important;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

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

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

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

footer .bi {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  transition: var(--transition);
}

footer .bi:hover {
  color: var(--primary-color) !important;
  transform: scale(1.2);
}

/* Contact Section */
.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-floating {
  position: relative;
}

.form-floating .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating textarea.form-control {
  height: 150px;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 0.75rem;
  pointer-events: none;
  color: #6c757d;
  transition: var(--transition);
}

.invalid-feedback {
  display: none;
  color: var(--primary-color) !important;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-control.is-invalid {
  border-color: var(--primary-color) !important;
}

.form-check {
  padding-left: 1.5rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-label {
  cursor: pointer;
  margin-left: 0.5rem;
}

/* Alerts */
.alert {
  border-radius: 10px;
  padding: 1rem 1.5rem;
  border: none;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.alert-danger {
  background-color: #f8d7da !important;
  color: #721c24 !important;
}

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

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

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

/* Modal */
.modal {
  z-index: 1060;
}

.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--secondary-color), #263238);
  color: var(--text-light);
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700;
}

.btn-close,
.btn-close-white {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 2rem;
}

.modal-xl {
  max-width: 1200px;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

/* Carousel */
.carousel {
  position: relative;
}

.carousel-inner {
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: auto;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(211, 47, 47, 0.8);
  border-radius: 50%;
  padding: 1.5rem;
}

.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;
}

/* Room Cards */
.room-card,
.room-item {
  transition: var(--transition);
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.room-card:hover,
.room-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.price-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(211, 47, 47, 0.95);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
}

.view-details {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  border: none !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.view-details:hover {
  background: #B71C1C !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Filter Buttons */
.filter-btn {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  margin: 0.25rem;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Accordion */
.accordion {
  border: none;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.accordion-button {
  background-color: var(--light-bg) !important;
  color: var(--secondary-color) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

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

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%);
}

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

.accordion-collapse {
  border: none;
}

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

.collapsed {
  background-color: var(--light-bg) !important;
}

/* Spinner */
.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.25rem;
  color: var(--primary-color) !important;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15rem;
}

/* Sticky Elements */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Utility Classes */
.opacity-25 {
  opacity: 0.25 !important;
}

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

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

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

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

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

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

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

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

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

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

.justify-content-end {
  justify-content: flex-end !important;
}

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

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-lg-end {
  text-align: right !important;
}

.text-md-start {
  text-align: left !important;
}

.text-md-end {
  text-align: right !important;
}

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

.text-uppercase {
  text-transform: uppercase !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-4 {
  margin-left: 1.5rem !important;
}

.me-2 {
  margin-left: 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-md-0 {
  margin-top: 0 !important;
}

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

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

.mb-lg-0 {
  margin-bottom: 0 !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;
}

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

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

.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;
}

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

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

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

.top-50 {
  top: 50% !important;
}

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

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

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

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-md-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

.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-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.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-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-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-lg-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-xl-9 {
  flex: 0 0 auto;
  width: 75%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(55, 71, 79, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .split-container {
    grid-template-columns: 1fr;
  }

  .left-panel,
  .right-panel {
    padding: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-item::before {
    left: 12px;
  }

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

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10 {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-section .display-2 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .booking-widget {
    padding: 1.5rem !important;
  }

  section {
    padding: 3rem 0;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .contact-card {
    padding: 2rem;
  }

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

  .col-md-2,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-8 {
    width: 100%;
  }

  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }

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

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .booking-widget,
  .btn,
  footer {
    display: none;
  }
}