/* Architectural Studio - Fortress Slate & Sunset Copper Theme */

:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --light-slate: #34495E;
  --dark-slate: #1A252F;
  --copper-light: #F39C12;
  --copper-dark: #D35400;
  --white: #FFFFFF;
  --light-gray: #ECF0F1;
  --dark-gray: #7F8C8D;
  --success: #27AE60;
  --shadow: rgba(44, 62, 80, 0.15);
  --shadow-hover: rgba(44, 62, 80, 0.25);
}

* {
  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(--light-gray) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
.display-2, .display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  letter-spacing: -1px;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 300;
  color: var(--dark-gray) !important;
}

h2, h3, h4, .h2, .h3, .h4 {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-slate) 100%) !important;
  padding: 1rem 0 !important;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.scrolled {
  background: var(--dark-slate) !important;
  padding: 0.5rem 0 !important;
}

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

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

.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(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: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem !important;
  margin: 0 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(230, 126, 34, 0.1) !important;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E67E22" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-25px); }
}

.hero-section .text-white {
  color: var(--white) !important;
  position: relative;
  z-index: 2;
}

.hero-section .display-2 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease;
}

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

/* Buttons */
.btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

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

.btn-primary,
.btn.text-white {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3) !important;
}

.btn-primary:hover,
.btn.text-white:hover {
  background: var(--copper-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4) !important;
}

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

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

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

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

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

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

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

/* Booking Widget */
.booking-widget {
  background: var(--white) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px var(--shadow-hover) !important;
  animation: fadeInRight 1s ease;
  border: 2px solid var(--secondary-color) !important;
}

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

.booking-widget .mb-3 {
  margin-bottom: 1.5rem !important;
}

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

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

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

.form-control::placeholder {
  color: var(--dark-gray) !important;
  opacity: 0.6;
}

.form-check-input {
  border: 2px solid var(--dark-gray) !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
}

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

/* Scroll Indicator */
.scroll-indicator {
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator .bi {
  font-size: 2rem;
  color: var(--secondary-color) !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

/* Service Cards */
.service-card {
  background: var(--white) !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  transition: all 0.4s ease !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 16px var(--shadow) !important;
  height: 100%;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 12px 32px var(--shadow-hover) !important;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%) !important;
}

.service-card .bi {
  font-size: 3rem !important;
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .bi {
  transform: scale(1.1) rotate(5deg);
  color: var(--copper-dark) !important;
}

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

.service-card p {
  color: var(--dark-gray) !important;
  margin-bottom: 0 !important;
  line-height: 1.8;
}

.service-card .text-white-50 {
  color: var(--dark-gray) !important;
}

/* Cards */
.card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.4s ease !important;
  background: var(--white) !important;
  box-shadow: 0 4px 16px var(--shadow) !important;
}

.card:hover.hover-lift {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px var(--shadow-hover) !important;
}

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

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

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

.card-title {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-slate) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
  font-weight: 600 !important;
}

/* Experience Card */
.experience-card {
  border-left: 4px solid var(--secondary-color) !important;
}

.experience-card:hover {
  border-left-width: 8px !important;
}

/* Amenity Cards */
.amenity-card {
  background: var(--white) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  text-align: center;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  box-shadow: 0 2px 12px var(--shadow) !important;
}

.amenity-card:hover {
  border-color: var(--secondary-color) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 24px var(--shadow-hover) !important;
}

.amenity-card .bi {
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

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

.amenity-card .small {
  color: var(--dark-gray) !important;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding-left: 3rem;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--light-gray);
}

.timeline-item:hover::before {
  background: var(--copper-dark);
  transform: scale(1.3);
  transition: all 0.3s ease;
}

/* Carousel */
.carousel-item {
  transition: transform 0.6s ease-in-out !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color) !important;
  border-radius: 50% !important;
  padding: 2rem !important;
  transition: all 0.3s ease !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--copper-dark) !important;
  transform: scale(1.1);
}

.carousel-item .card {
  background: var(--white) !important;
  margin: 1rem;
}

/* Alert */
.alert {
  border-radius: 12px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: 0 2px 12px var(--shadow) !important;
}

.alert.text-dark {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--secondary-color) !important;
}

.alert .bi {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}

.badge.bg-light {
  background: var(--light-gray) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--dark-gray);
}

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

.bi-star-fill {
  color: var(--copper-light) !important;
}

.bi-check-circle-fill.text-success {
  color: var(--success) !important;
}

.bi-shield-check.text-primary {
  color: var(--secondary-color) !important;
}

/* Table */
.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.table {
  margin-bottom: 0 !important;
  background: var(--white) !important;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-slate) 100%) !important;
  color: var(--white) !important;
}

.table thead th {
  border: none !important;
  padding: 1rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.table tbody tr {
  transition: all 0.3s ease !important;
  color: var(--primary-color) !important;
}

.table-hover tbody tr:hover {
  background: var(--light-gray) !important;
  transform: scale(1.01);
  box-shadow: 0 2px 8px var(--shadow);
}

.table td {
  padding: 1rem !important;
  border-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
}

.table .bi {
  font-size: 1.25rem;
  color: var(--secondary-color) !important;
}

/* Modal */
.modal-content {
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-slate) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 1.5rem !important;
}

.modal-title {
  color: var(--white) !important;
  font-weight: 600 !important;
}

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

.modal-body {
  padding: 2rem !important;
  background: var(--white) !important;
  color: var(--primary-color) !important;
}

/* Chat Button (Fixed) */
.position-fixed {
  bottom: 2rem;
  right: 2rem;
  z-index: 1040;
}

.position-fixed .btn {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.6);
  }
}

.position-fixed .btn:hover {
  background: var(--copper-dark) !important;
  transform: scale(1.1) !important;
}

.position-fixed .bi {
  font-size: 1.5rem !important;
}

/* Sticky Elements */
.sticky-top {
  top: 100px !important;
  z-index: 1020;
}

.position-sticky {
  top: 100px !important;
}

/* Image Styles */
.img-fluid {
  border-radius: 12px !important;
  transition: all 0.4s ease !important;
}

.img-fluid.shadow {
  box-shadow: 0 8px 24px var(--shadow-hover) !important;
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px var(--shadow-hover) !important;
}

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

/* Ratio (Video Embed) */
.ratio {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

/* Filter Buttons */
.filter-btn {
  margin: 0.25rem;
  transition: all 0.3s ease !important;
}

.filter-btn.active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.room-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

/* Privacy Content */
.privacy-content {
  background: var(--white) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 16px var(--shadow) !important;
}

.privacy-content h4 {
  color: var(--primary-color) !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.privacy-content p,
.privacy-content li {
  color: var(--dark-gray) !important;
  line-height: 1.8;
}

/* Navigation Sidebar */
.nav {
  background: var(--white) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  box-shadow: 0 4px 16px var(--shadow) !important;
}

.nav .nav-link {
  color: var(--primary-color) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  margin-bottom: 0.5rem !important;
  transition: all 0.3s ease !important;
}

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

/* Text Colors */
.text-white {
  color: var(--white) !important;
}

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

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

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

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

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

/* Background Colors */
.bg-light {
  background-color: var(--light-gray) !important;
}

/* Section Padding */
.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

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

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

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

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

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

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

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

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

footer h5 {
  color: var(--white) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 600 !important;
}

footer p,
footer li {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.8;
}

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

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

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

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

footer .fs-4 .bi:hover {
  color: var(--copper-light) !important;
  transform: scale(1.2) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--dark-slate);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .nav-link {
    margin: 0.25rem 0 !important;
  }
  
  .hero-section {
    padding: 100px 0 40px;
    text-align: center;
  }
  
  .hero-section .display-2 {
    font-size: 2.5rem !important;
  }
  
  .booking-widget {
    margin-top: 2rem;
  }
  
  .masonry-grid {
    column-count: 2;
  }
  
  .sticky-top,
  .position-sticky {
    position: relative !important;
    top: 0 !important;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .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;
  }
  
  .lead {
    font-size: 1.1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.95rem !important;
  }
  
  .masonry-grid {
    column-count: 1;
  }
  
  .timeline-container {
    padding-left: 2rem;
  }
  
  .timeline-item::before {
    left: -2.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .position-fixed {
    bottom: 1rem;
    right: 1rem;
  }
  
  .position-fixed .btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .hero-section .display-2 {
    font-size: 1.75rem !important;
  }
  
  .booking-widget {
    padding: 1.5rem !important;
  }
  
  .card-body {
    padding: 1rem !important;
  }
  
  .service-card {
    padding: 1.5rem 1rem !important;
  }
  
  .amenity-card {
    padding: 1.5rem !important;
  }
  
  .table thead th,
  .table td {
    padding: 0.75rem !important;
    font-size: 0.875rem !important;
  }
}

/* Utility Classes */
.text-decoration-none {
  text-decoration: none !important;
}

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

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

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

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

.shadow {
  box-shadow: 0 4px 16px var(--shadow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px var(--shadow) !important;
}

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

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease !important;
}

.hover-lift:hover {
  transform: translateY(-5px) !important;
}

/* Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Fade Animations */
.fade-in {
  animation: fadeIn 0.5s ease;
}

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

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--copper-dark);
}

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