/* Royal Fortress Architecture Studio - Custom Styles */

/* ===== CSS Variables ===== */
:root {
  --primary-color: #1A237E;
  --secondary-color: #C62828;
  --dark-bg: #0a0e27;
  --light-text: #f8f9fa;
  --stone-gray: #5a5a5a;
  --gold-accent: #d4af37;
  --transition-smooth: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

/* ===== Navigation Bar ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a0e27 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(26, 35, 126, 0.98) !important;
}

.navbar-brand {
  color: var(--gold-accent) !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

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

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

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

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231A237E" width="1200" height="600"/><path fill="%23ffffff" fill-opacity="0.05" d="M0 300L50 325L100 300L150 325L200 300L250 325L300 300L350 325L400 300L450 325L500 300L550 325L600 300L650 325L700 300L750 325L800 300L850 325L900 300L950 325L1000 300L1050 325L1100 300L1150 325L1200 300V600H0Z"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.8;
  animation: parallaxMove 30s ease-in-out infinite;
}

@keyframes parallaxMove {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.stone-texture {
  background: repeating-linear-gradient(
    45deg,
    rgba(90, 90, 90, 0.1),
    rgba(90, 90, 90, 0.1) 10px,
    rgba(120, 120, 120, 0.1) 10px,
    rgba(120, 120, 120, 0.1) 20px
  );
  z-index: 1;
}

.diagonal-split-container {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.left-image-section {
  flex: 1;
  background: linear-gradient(rgba(26, 35, 126, 0.6), rgba(10, 14, 39, 0.8)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%230a0e27" width="800" height="600"/><path fill="%231A237E" d="M0 300L100 250L200 300L300 200L400 300L500 250L600 300L700 200L800 300V600H0Z"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.left-image-section .display-3 {
  color: #fff !important;
  font-weight: 800;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.left-image-section .lead {
  color: var(--gold-accent) !important;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

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

.right-reservation-section {
  flex: 1;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(10px);
  padding: 3rem;
}

.reservation-card {
  background: rgba(26, 35, 126, 0.9) !important;
  border: 2px solid var(--gold-accent);
  padding: 2.5rem;
  max-width: 500px;
  animation: fadeInRight 1s ease-out;
}

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

.reservation-card h2 {
  color: var(--gold-accent) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background-color: rgba(10, 14, 39, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #fff !important;
  padding: 0.75rem;
  transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(10, 14, 39, 0.9) !important;
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
  color: #fff !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.form-select option {
  background-color: var(--dark-bg) !important;
  color: #fff !important;
}

/* ===== Buttons ===== */
.btn {
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  border: none;
  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-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8b0000 100%) !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b0000 0%, var(--secondary-color) 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a0e27 100%) !important;
  color: #fff !important;
  border: 2px solid var(--gold-accent) !important;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0a0e27 0%, var(--primary-color) 100%) !important;
  color: var(--gold-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.6);
}

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

.btn-outline-light:hover {
  background: #fff !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: #fff !important;
  color: var(--primary-color) !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

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

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

/* ===== Welcome Section ===== */
.welcome-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.polygon-frame {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  border: 3px solid var(--gold-accent);
}

.polygon-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.polygon-frame img {
  transition: var(--transition-smooth);
}

.polygon-frame:hover img {
  transform: scale(1.1);
}

.display-5 {
  color: var(--primary-color) !important;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.display-5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-accent) 100%);
}

/* ===== Service Cards ===== */
.services-showcase {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
}

.services-showcase .display-4 {
  color: #fff !important;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.service-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid var(--gold-accent);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(198, 40, 40, 0.9) 100%);
  transition: var(--transition-smooth);
  z-index: 0;
}

.service-card:hover::before {
  top: 0;
}

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

.service-card * {
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.service-card:hover .bi,
.service-card:hover .h4,
.service-card:hover p {
  color: #fff !important;
}

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

.service-card:hover .bi {
  transform: scale(1.2) rotate(10deg);
}

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

.service-card p {
  color: var(--stone-gray) !important;
  line-height: 1.6;
}

/* ===== Gallery Glimpse ===== */
.gallery-glimpse {
  background: #fff;
  padding: 5rem 0;
}

.gallery-glimpse .display-4 {
  color: var(--primary-color) !important;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-glimpse .text-secondary {
  color: var(--stone-gray) !important;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-glimpse img {
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 3px solid transparent;
}

.gallery-glimpse img:hover {
  transform: scale(1.05);
  border-color: var(--gold-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23ffffff" fill-opacity="0.03" d="M0 0L50 50L0 100L50 150L0 200L50 250L0 300L50 350L0 400L50 450L0 500L50 550L0 600H1200V0H0Z"/></svg>');
  opacity: 0.5;
}

.testimonial-section .bi-quote {
  color: var(--gold-accent) !important;
  font-size: 4rem !important;
  opacity: 0.3;
}

.testimonial-section blockquote {
  color: #fff !important;
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.testimonial-section .fw-light {
  color: var(--gold-accent) !important;
  font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8b0000 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

.cta-section h2 {
  color: #fff !important;
  font-weight: 800;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
}

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

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

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

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

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

footer .bi {
  color: var(--gold-accent) !important;
  transition: var(--transition-smooth);
}

footer a:hover .bi {
  transform: scale(1.2);
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===== Featured Suite Banner ===== */
.featured-suite-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.diagonal-image-crop {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
  position: relative;
}

.diagonal-image-crop img {
  transition: var(--transition-smooth);
}

.diagonal-image-crop:hover img {
  transform: scale(1.1);
}

/* ===== Filter Tabs ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid var(--gold-accent) !important;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-accent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--dark-bg) !important;
  border-color: var(--gold-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.sliding-underline {
  position: relative;
}

.sliding-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.sliding-underline.active::after,
.sliding-underline:hover::after {
  width: 100%;
}

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

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

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

.suite-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.suite-card .card-img-top {
  transition: var(--transition-smooth);
}

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

.price-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(198, 40, 40, 0.95);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.badge {
  background: var(--gold-accent) !important;
  color: var(--dark-bg) !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 50px;
}

.card-body {
  padding: 1.5rem;
}

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

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

/* ===== Tables ===== */
.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.table {
  margin-bottom: 0;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
  color: #fff !important;
}

.table thead th {
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem;
  border: none;
}

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

.table-hover tbody tr:hover {
  background-color: rgba(26, 35, 126, 0.05) !important;
  transform: scale(1.01);
}

.table tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

/* ===== Accordion ===== */
.accordion-item {
  background: #fff;
  border: 1px solid rgba(26, 35, 126, 0.2) !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

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

.accordion-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8b0000 100%) !important;
  color: #fff !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25) !important;
}

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

.accordion-button .bi {
  color: var(--gold-accent) !important;
  margin-right: 0.75rem;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--stone-gray) !important;
  line-height: 1.8;
  background: #f8f9fa;
}

/* ===== Alerts ===== */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
}

.alert-warning {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(198, 40, 40, 0.05) 100%);
  color: var(--secondary-color) !important;
  border-left: 4px solid var(--secondary-color) !important;
}

.alert .bi {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* ===== Cards ===== */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 2rem;
}

/* ===== Form Check ===== */
.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--primary-color) !important;
  background-color: transparent !important;
  cursor: pointer;
}

.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(26, 35, 126, 0.25) !important;
}

.form-check-label {
  color: var(--stone-gray) !important;
  margin-left: 0.5rem;
  cursor: pointer;
  user-select: none;
}

/* ===== Navigation Variants ===== */
.privacy-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  margin-bottom: 0.5rem;
}

.privacy-nav .nav-link:hover,
.privacy-nav .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%) !important;
  color: #fff !important;
  transform: translateX(10px);
}

.privacy-nav .bi {
  margin-right: 0.75rem;
  color: var(--gold-accent) !important;
}

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

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

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

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

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

/* ===== Text Colors ===== */
.text-white {
  color: #fff !important;
}

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

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

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

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

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* ===== Borders ===== */
.border-secondary {
  border-color: rgba(212, 175, 55, 0.3) !important;
}

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

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

/* ===== Rounded Corners ===== */
.rounded {
  border-radius: 10px !important;
}

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

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

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

/* ===== Spacing Utilities ===== */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

/* ===== Display Utilities ===== */
.d-flex {
  display: flex !important;
}

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

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

/* ===== Opacity ===== */
.opacity-75 {
  opacity: 0.75 !important;
}

/* ===== Image Utilities ===== */
.img-fluid {
  max-width: 100%;
  height: auto;
}

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

/* ===== Icons ===== */
.bi {
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition-smooth);
}

/* ===== Responsive Typography ===== */
@media (max-width: 1200px) {
  .display-1 { font-size: 4rem; }
  .display-2 { font-size: 3.5rem; }
  .display-3 { font-size: 3rem; }
  .display-4 { font-size: 2.5rem; }
  .display-5 { font-size: 2rem; }
  .display-6 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .display-1 { font-size: 3rem; }
  .display-2 { font-size: 2.5rem; }
  .display-3 { font-size: 2rem; }
  .display-4 { font-size: 1.75rem; }
  .display-5 { font-size: 1.5rem; }
  .display-6 { font-size: 1.25rem; }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }

  .left-image-section {
    clip-path: none;
    min-height: 50vh;
  }

  .right-reservation-section {
    padding: 2rem 1rem;
  }

  .reservation-card {
    padding: 1.5rem;
  }

  .hero-section {
    min-height: auto;
  }

  .diagonal-split-container {
    flex-direction: column;
  }

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

  .service-card {
    margin-bottom: 1.5rem;
  }

  .sticky-top,
  .sticky-lg-top {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .filter-tabs {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  footer {
    text-align: center;
  }

  footer .col-lg-2,
  footer .col-lg-3 {
    margin-bottom: 2rem;
  }

  .price-overlay {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* ===== Animations ===== */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ===== Scroll Animations ===== */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Loading States ===== */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== Selection ===== */
::selection {
  background: var(--gold-accent);
  color: var(--dark-bg);
}

::-moz-selection {
  background: var(--gold-accent);
  color: var(--dark-bg);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 6px;
  border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* ===== Print Styles ===== */
@media print {
  .navbar,
  .btn,
  footer,
  .cta-section {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .service-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}