/* Architectural Studio - Midnight Slate & Golden Hour Theme */
/* Primary: #2C3E50 | Secondary: #E8B87E */

:root {
  --primary-color: #2C3E50;
  --secondary-color: #E8B87E;
  --accent-gold: #D4A574;
  --dark-slate: #1a252f;
  --light-slate: #475669;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --shadow: rgba(44, 62, 80, 0.2);
  --shadow-hover: rgba(44, 62, 80, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-color) !important;
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.display-2, .display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  letter-spacing: -1px;
}

/* Navbar */
.navbar {
  background-color: rgba(44, 62, 80, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
  box-shadow: 0 2px 15px var(--shadow);
}

.navbar.sticky-top,
.navbar.fixed-top {
  background-color: var(--primary-color) !important;
}

.navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

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

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  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::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

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

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

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--primary-color) 50%, var(--light-slate) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 37, 47, 0.7), rgba(44, 62, 80, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

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

.hero-content .display-2 {
  color: var(--white) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem !important;
}

.hero-content .lead {
  color: var(--secondary-color) !important;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

.animate-fade-in-delay {
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 3;
}

.scroll-indicator .bi {
  font-size: 2rem;
  color: var(--secondary-color) !important;
}

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

/* Booking Widget Float */
.booking-widget-float {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 40px var(--shadow-hover);
  position: relative;
  z-index: 10;
  margin-top: -80px;
  border-top: 4px solid var(--secondary-color);
}

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

.booking-widget-content .small {
  color: var(--light-slate) !important;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--primary-color) !important;
  background-color: var(--white) !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(232, 184, 126, 0.25) !important;
  background-color: var(--white) !important;
}

.form-check-input {
  border: 2px solid var(--primary-color) !important;
}

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

.form-check-label {
  color: var(--primary-color) !important;
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-booking,
.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-gold) 100%) !important;
  color: var(--primary-color) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(232, 184, 126, 0.3);
}

.btn-booking:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%) !important;
  color: var(--dark-slate) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 126, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--dark-slate) !important;
  border-color: var(--dark-slate) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

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

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

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

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

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

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

.section-title {
  color: var(--secondary-color) !important;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem !important;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  text-decoration: none !important;
  display: block;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon .bi {
  font-size: 2rem;
  color: var(--white) !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.service-card p {
  color: var(--light-slate) !important;
  margin-bottom: 1rem;
}

.service-card .bi-arrow-right {
  color: var(--secondary-color) !important;
  transition: transform 0.3s ease;
}

.service-card:hover .bi-arrow-right {
  transform: translateX(5px);
}

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

/* Gallery Items */
.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.gallery-item .card {
  transition: all 0.4s ease;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.gallery-item img {
  transition: all 0.5s ease;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

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

.gallery-item .card-body {
  background: var(--white);
  padding: 1.5rem;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
  border: none;
  padding: 1rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

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

.shadow-sm {
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px var(--shadow-hover) !important;
}

/* Images */
.img-fluid {
  border-radius: 15px;
}

.rounded {
  border-radius: 15px !important;
}

/* Timeline Section */
.timeline-section {
  position: relative;
  padding: 4rem 0;
}

.timeline-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

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

.timeline-content {
  color: var(--primary-color) !important;
}

/* Story Section */
.story-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-slate) 100%);
  color: var(--white) !important;
  padding: 5rem 0;
}

.story-section h2,
.story-section h3,
.story-section p {
  color: var(--white) !important;
}

.story-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Founders Section */
.founders-section {
  padding: 5rem 0;
  background-color: var(--cream);
}

.founder-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-hover);
}

.founder-portrait {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin: 0 auto 1.5rem;
  display: block;
}

.founder-name {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: var(--secondary-color) !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-bio {
  color: var(--light-slate) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

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

.value-card h4 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--light-slate) !important;
}

/* Contact Card */
.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-wrapper .bi {
  font-size: 1.8rem;
  color: var(--white) !important;
}

.contact-card h5 {
  color: var(--primary-color) !important;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--light-slate) !important;
  margin-bottom: 0;
}

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

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

.split-container > div {
  padding: 4rem 2rem;
}

/* Room Cards */
.room-card {
  perspective: 1000px;
  height: 400px;
  margin-bottom: 2rem;
}

.room-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.room-card:hover .room-card-inner {
  transform: rotateY(180deg);
}

.room-card-front,
.room-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

.room-card-front {
  background: var(--white);
}

.room-card-back {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-slate));
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--white) !important;
}

.room-card-back h4,
.room-card-back p,
.room-card-back ul,
.room-card-back li {
  color: var(--white) !important;
}

/* Badges */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

/* Nav Pills */
.nav-pills .nav-link {
  color: var(--primary-color) !important;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  background-color: transparent;
}

.nav-pills .nav-link:hover {
  background-color: rgba(232, 184, 126, 0.1);
}

.nav-pills .nav-link.active {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

/* Tab Content */
.tab-content {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.tab-pane {
  animation: fadeIn 0.5s ease-in;
}

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

/* Table */
.table-responsive {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

.table {
  margin-bottom: 0;
}

.table thead {
  background-color: var(--primary-color);
  color: var(--white) !important;
}

.table thead th {
  color: var(--white) !important;
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table td,
.table th {
  color: var(--primary-color) !important;
  padding: 1rem;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(232, 184, 126, 0.05);
}

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

.alert-success {
  background-color: #d4edda !important;
  color: #155724 !important;
  border-left: 4px solid #28a745;
}

.alert .bi {
  margin-right: 0.5rem;
}

/* Invalid Feedback */
.invalid-feedback {
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
}

/* Position Utilities */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
  top: 80px;
}

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

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

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

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

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

/* Chat Widget */
.position-fixed.bottom-0.end-0 {
  bottom: 2rem !important;
  right: 2rem !important;
  z-index: 1000;
}

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

.position-fixed .btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--shadow-hover);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px var(--shadow-hover);
  }
  50% {
    box-shadow: 0 4px 25px rgba(232, 184, 126, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px var(--shadow-hover);
  }
}

/* Amenity Gallery */
.amenity-gallery-img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.amenity-gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px var(--shadow);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--primary-color) 100%);
  color: var(--white) !important;
  padding: 3rem 0 1rem;
}

footer h5,
footer h6 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
}

footer a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

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

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

footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

footer .py-3 {
  padding: 1.5rem 0 !important;
}

/* Social Media Icons */
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-twitter:hover,
.bi-linkedin:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Utility Classes */
.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

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

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

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

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

.gap-4 {
  gap: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fs-3 {
  font-size: 1.75rem !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-lg-0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ps-lg-5 {
    padding-left: 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-content .display-2 {
    font-size: 2.5rem;
  }
  
  .hero-content .lead {
    font-size: 1.25rem;
  }
  
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
  }
  
  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }
  
  .order-lg-1 {
    order: 1;
  }
  
  .order-lg-2 {
    order: 2;
  }
  
  .ps-lg-5 {
    padding-left: 0 !important;
  }
  
  .position-sticky {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .booking-widget-float {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem !important;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon .bi {
    font-size: 1.5rem;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .room-card {
    height: 350px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
  
  .position-fixed.bottom-0.end-0 {
    bottom: 1rem !important;
    right: 1rem !important;
  }
  
  .position-fixed .btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content .display-2 {
    font-size: 1.75rem;
  }
  
  .hero-content .lead {
    font-size: 1.1rem;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
  
  .founder-portrait {
    width: 120px;
    height: 120px;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper .bi {
    font-size: 1.5rem;
  }
  
  .col-6 {
    width: 100%;
  }
}

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

/* Selection Color */
::selection {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
  background-size: 1000px 100%;
}