/* Architectural Studio - Midnight Slate & Royal Gold Theme */

:root {
  --primary-color: #2C3E50;
  --secondary-color: #D4AF37;
  --accent-dark: #1a252f;
  --accent-light: #e8d7a0;
  --text-dark: #2C3E50;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.1);
  --shadow-md: 0 4px 6px rgba(44, 62, 80, 0.15);
  --shadow-lg: 0 10px 25px rgba(44, 62, 80, 0.2);
  --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);
  line-height: 1.6;
  overflow-x: hidden;
  background: #f8f9fa;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #6c757d !important;
}

/* Navbar Styles */
.navbar {
  background: var(--primary-color) !important;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.navbar-dark .navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.navbar-dark .nav-link:hover {
  color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.1);
}

.navbar-dark .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.15);
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
  min-height: 100vh;
  padding-top: 100px;
  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="%23D4AF37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,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;
  background-size: cover;
  background-position: bottom;
  animation: waveAnimation 20s ease-in-out infinite;
}

@keyframes waveAnimation {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

.hero-section .display-2 {
  color: var(--text-light) !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;
  animation: fadeInUp 1.2s ease;
}

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

.hero-section .card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid var(--secondary-color);
  border-radius: 15px;
  animation: fadeInRight 1.4s ease;
}

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

.hero-section .bi-chevron-down {
  color: var(--secondary-color) !important;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

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

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: var(--accent-light) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.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(--primary-color) !important;
  transform: translateY(-2px);
}

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

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

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

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

.btn-close {
  filter: invert(1) brightness(2);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: #ffffff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 1.5rem;
}

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

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

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

.shadow {
  box-shadow: var(--shadow-md) !important;
}

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

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

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
  outline: none;
}

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

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

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

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

/* Room Card */
.room-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.room-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.room-card:hover .room-overlay {
  background: linear-gradient(to top, rgba(44, 62, 80, 0.98) 0%, rgba(44, 62, 80, 0.7) 70%);
}

.room-card h3, .room-card p {
  color: var(--text-light) !important;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(212, 175, 55, 0.3);
}

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

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

/* Icons */
.bi {
  color: var(--secondary-color) !important;
}

.bi-door-open, .bi-droplet, .bi-cup-hot, .bi-calendar-event, 
.bi-compass, .bi-water, .bi-wifi, .bi-shield-check, 
.bi-moon-stars, .bi-snow, .bi-tv, .bi-headset {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bi-facebook:hover, .bi-instagram:hover, .bi-twitter:hover, .bi-linkedin:hover {
  color: var(--accent-light) !important;
  transform: scale(1.2);
}

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

/* Timeline */
.timeline-content {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--secondary-color);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

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

.accordion-button {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

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

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

.modal-header {
  background: var(--primary-color);
  color: var(--text-light) !important;
  border-bottom: 3px solid var(--secondary-color);
  padding: 1.5rem;
}

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

.modal-body {
  padding: 2rem;
}

/* Carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-item img {
  border-radius: 8px;
}

/* Nav Pills */
.nav-pills .nav-link {
  color: var(--primary-color) !important;
  background: transparent;
  border: 2px solid var(--primary-color);
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.nav-pills .nav-link:hover {
  background: var(--accent-light) !important;
  border-color: var(--secondary-color);
  color: var(--primary-color) !important;
}

/* Tab Content */
.tab-content {
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}

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

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

/* Alerts */
.alert-info {
  background: rgba(212, 175, 55, 0.1) !important;
  border-left: 4px solid var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 8px;
}

/* List Group */
.list-group-item {
  border: 1px solid #e0e0e0;
  padding: 1rem;
  transition: var(--transition);
  background: #ffffff;
  color: var(--text-dark) !important;
}

.list-group-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid var(--secondary-color);
  cursor: pointer;
}

/* Tables */
.table {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

.table tbody td {
  padding: 1rem;
  color: var(--text-dark) !important;
  vertical-align: middle;
}

.table-bordered {
  border: 2px solid #e0e0e0;
}

/* Multi-Step Form */
.multi-step-form .step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.multi-step-form .step.active {
  display: block;
}

.purpose-option {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.purpose-option:hover {
  border-color: var(--secondary-color) !important;
  background: rgba(212, 175, 55, 0.05);
}

.purpose-option input[type="radio"]:checked ~ * {
  color: var(--secondary-color) !important;
}

.purpose-option input[type="radio"]:checked ~ .form-check-label {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* Social Links */
.social-links a {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
}

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

footer p, footer li, footer a {
  color: rgba(255, 255, 255, 0.8) !important;
}

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

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

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

.position-fixed {
  z-index: 1030;
}

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

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

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

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

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

.text-light {
  color: rgba(255, 255, 255, 0.9) !important;
}

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

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

/* Border Colors */
.border-primary {
  border-color: var(--primary-color) !important;
}

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

.border-start {
  border-left-width: 3px !important;
}

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

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Spacing Utilities */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !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; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }

/* Display Utilities */
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-block { display: block !important; }
.d-inline-flex { display: inline-flex !important; }
.d-none { display: none !important; }

/* Flex Utilities */
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-grow-1 { flex-grow: 1 !important; }

/* Gap Utilities */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.end-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }
.translate-middle-x { transform: translateX(-50%) !important; }

/* Other Utilities */
.overflow-hidden { overflow: hidden !important; }
.rounded { border-radius: 0.375rem !important; }
.rounded-circle { border-radius: 50% !important; }
.text-center { text-align: center !important; }
.text-decoration-none { text-decoration: none !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fst-italic { font-style: italic !important; }
.text-uppercase { text-transform: uppercase !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-vh-100 { min-height: 100vh !important; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Font Sizes */
.fs-1 { font-size: 2.5rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }
.small { font-size: 0.875rem !important; }

/* Responsive Typography */
@media (max-width: 991px) {
  .display-2 { 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; }
  .lead { font-size: 1.1rem !important; }
}

/* Responsive Grid */
@media (min-width: 992px) {
  .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-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
  .d-lg-block { display: block !important; }
  .flex-lg-row-reverse { flex-direction: row-reverse !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .text-lg-end { text-align: right !important; }
  .p-lg-5 { padding: 3rem !important; }
  .ps-lg-5 { padding-left: 3rem !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .mt-lg-0 { margin-top: 0 !important; }
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .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%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  .mt-md-0 { margin-top: 0 !important; }
}

@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
  .hero-section { padding-top: 80px; min-height: auto; padding-bottom: 3rem; }
  .navbar { padding: 0.5rem 0; }
  .navbar-brand { font-size: 1.25rem; }
  .btn { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
  .btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
  .card-body { padding: 1rem; }
  .p-5 { padding: 1.5rem !important; }
  .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .mb-5 { margin-bottom: 2rem !important; }
  .room-card { height: 300px; }
  .gallery-item { height: 250px; }
  .modal-body { padding: 1rem; }
  .accordion-button { padding: 1rem; font-size: 0.9rem; }
  .table { font-size: 0.85rem; }
  .table thead th, .table tbody td { padding: 0.75rem 0.5rem; }
  .navbar-collapse { background: var(--primary-color); padding: 1rem; margin-top: 1rem; border-radius: 8px; }
}

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

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

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-180deg); }
  to { opacity: 1; transform: rotate(0); }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spin 1s ease-in-out infinite;
}

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

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

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

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

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

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

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

/* Print Styles */
@media print {
  .navbar, .btn, .modal, .carousel-control-prev, .carousel-control-next, footer {
    display: none !important;
  }
  body { background: white; color: black; }
  .card { page-break-inside: avoid; }
}