/* Fortress Stone & Gold - Architectural Studio Theme */

/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #2C3E50;
  --secondary-color: #C9A961;
  --dark-primary: #1a252f;
  --light-primary: #34495e;
  --dark-secondary: #b39850;
  --light-secondary: #d4b872;
  --text-light: #ecf0f1;
  --text-dark: #2c3e50;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.3);
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

.text-white .display-2,
.text-white .display-3,
.text-white .display-4,
.text-white .display-5 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
}

.text-uppercase {
  letter-spacing: 2px;
  font-weight: 600;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar.fixed-top {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-base);
}

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

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 6px;
  transition: var(--transition-base);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(201, 169, 97, 0.1) !important;
  transform: translateY(-2px);
}

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

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

/* ==================== BUTTONS ==================== */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary,
.btn.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-secondary) 100%) !important;
  color: var(--primary-color) !important;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--secondary-color) !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--secondary-color) 100%) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.btn-secondary,
.btn.btn-secondary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color) !important;
}

.btn-secondary:hover,
.btn.btn-secondary:hover {
  background: linear-gradient(135deg, var(--light-primary) 0%, var(--primary-color) 100%) !important;
  color: var(--secondary-color) !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

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

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

/* ==================== CARDS ==================== */
.card {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: var(--transition-base);
  background: #ffffff;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl) !important;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 1.5rem !important;
  font-weight: 700;
  font-size: 1.3rem;
}

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

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

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

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

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

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

/* ==================== FORMS ==================== */
.form-control,
.form-select {
  border: 2px solid #dee2e6 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition-base);
  background: #ffffff !important;
  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(201, 169, 97, 0.15) !important;
  transform: translateY(-2px);
}

.form-control-lg,
.form-select-lg {
  padding: 1rem 1.25rem !important;
  font-size: 1.1rem !important;
}

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

.form-control::placeholder {
  color: #adb5bd !important;
  opacity: 1;
}

/* ==================== HERO SECTION ==================== */
.position-relative {
  position: relative !important;
}

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.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 100 100"><path d="M0,0 L50,50 L0,100 Z" fill="rgba(201,169,97,0.05)" /><path d="M100,0 L50,50 L100,100 Z" fill="rgba(201,169,97,0.05)" /></svg>');
  background-size: 200px;
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.hero-section .text-white {
  color: #ffffff !important;
  z-index: 2;
}

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

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

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

.bi-building,
.bi-cup-hot,
.bi-compass,
.bi-heart,
.bi-calendar-event,
.bi-wine,
.bi-star-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-send-fill,
.bi-info-circle-fill,
.bi-castle,
.bi-heart-pulse,
.bi-briefcase,
.bi-shield-fill-check,
.bi-check-circle-fill,
.bi-badge-3d,
.bi-clock,
.bi-hourglass-split,
.bi-people,
.bi-moon-stars,
.bi-thermometer-half,
.bi-sunset-fill,
.bi-egg-fried,
.bi-cup-straw,
.bi-trophy,
.bi-droplet-half,
.bi-cup-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter {
  color: var(--secondary-color) !important;
  transition: var(--transition-base);
}

.card:hover .bi,
.btn:hover .bi {
  transform: scale(1.2) rotate(5deg);
}

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

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

.rounded-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-secondary) 100%);
  box-shadow: var(--shadow-md);
}

/* ==================== IMAGES ==================== */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: var(--transition-base);
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

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

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

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

/* ==================== ROOM CARDS ==================== */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.room-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.room-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.room-card:hover .room-image-container img {
  transform: scale(1.15);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

/* ==================== MASONRY GRID ==================== */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-grid .card {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* ==================== FILTER BUTTONS ==================== */
.filter-btn {
  padding: 0.75rem 1.5rem !important;
  margin: 0.25rem;
  background: #ffffff !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  font-weight: 600;
  transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-secondary) 100%) !important;
  color: #ffffff !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

/* ==================== BADGES ==================== */
.badge {
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-secondary) 100%) !important;
  color: var(--primary-color) !important;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== PARALLAX EFFECT ==================== */
.parallax-artifact {
  position: absolute;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  opacity: 0.1;
  color: var(--secondary-color) !important;
}

/* ==================== VIDEO OVERLAY ==================== */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(26, 37, 47, 0.9) 100%);
  z-index: 1;
}

/* ==================== CONTACT SPLIT ==================== */
.contact-split-container {
  min-height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-split-container .col-lg-6:first-child {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-split-container .col-lg-6:last-child {
  background: #ffffff;
  padding: 4rem 2rem;
}

/* ==================== ALERTS ==================== */
.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
  color: #155724 !important;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
  color: #721c24 !important;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%) !important;
  color: #0c5460 !important;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%);
  padding: 3rem 0;
  margin-top: 76px;
}

.breadcrumb-section h1 {
  color: #ffffff !important;
  margin-bottom: 1rem;
}

/* ==================== PRIVACY CONTAINER ==================== */
.privacy-container {
  padding: 4rem 0;
}

.privacy-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

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

.privacy-content h3 {
  color: var(--secondary-color) !important;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* ==================== CAROUSEL ==================== */
.carousel {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item {
  height: 500px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 62, 80, 0.7) !important;
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition-base);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: var(--secondary-color) !important;
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 3rem;
  padding-top: 2rem;
}

footer .bi-facebook,
footer .bi-instagram,
footer .bi-twitter {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: var(--transition-base);
}

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--secondary-color) !important;
}

/* ==================== UTILITY CLASSES ==================== */
.text-white {
  color: #ffffff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-lg-5 {
  padding-right: 3rem !important;
}

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

.mb-0 {
  margin-bottom: 0 !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-2 {
  margin-top: 0.5rem !important;
}

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

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

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

.mt-lg-0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

/* ==================== RESPONSIVE UTILITIES ==================== */
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .text-lg-start {
    text-align: left !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
}

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

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

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

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

.flex-column {
  flex-direction: column !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-between {
  justify-content: space-between !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020 !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;
}

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

@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 scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 62, 80, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .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;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .col-md-6,
  .col-md-4,
  .col-lg-6,
  .col-lg-4,
  .col-lg-3,
  .col-lg-7,
  .col-lg-5,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-12 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .p-5 {
    padding: 2rem !important;
  }
  
  .p-md-5 {
    padding: 1.5rem !important;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  footer .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .rounded-circle {
    width: 60px;
    height: 60px;
  }
  
  .fs-2 {
    font-size: 2rem !important;
  }
  
  .room-image-container {
    height: 200px;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .navbar,
  .btn,
  footer,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}