/* Obsidian Gold Architecture Studio Theme */

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #c7a678;
  --gold-light: #d4b896;
  --gold-dark: #a88a5f;
  --text-light: #f5f5f5;
  --text-dark: #2a2a3e;
  --shadow-dark: rgba(26, 26, 46, 0.3);
  --shadow-gold: rgba(199, 166, 120, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.lead {
  color: var(--text-light) !important;
  opacity: 0.9;
  font-size: 1.15rem !important;
}

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

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

.text-muted {
  color: rgba(199, 166, 120, 0.7) !important;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-dark);
  transition: var(--transition-smooth);
  padding: 1rem 0 !important;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98) !important;
  box-shadow: 0 4px 30px var(--shadow-dark);
}

.navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  text-shadow: 0 2px 10px var(--shadow-gold);
}

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

.navbar-nav {
  gap: 0.5rem !important;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.nav-link:hover {
  color: var(--secondary-color) !important;
  background: rgba(199, 166, 120, 0.1) !important;
}

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

.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(199, 166, 120, 0.15) !important;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 166, 120, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c7a678' 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;
  border-radius: 12px !important;
  transition: var(--transition-smooth) !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

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

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

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

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

.btn-outline-light:hover {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--shadow-gold);
}

.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-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem !important;
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

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

.filter-btn {
  background: rgba(199, 166, 120, 0.1) !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
}

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

.next-step,
.prev-step {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

/* Cards */
.card {
  background: rgba(42, 42, 62, 0.6) !important;
  border: 1px solid rgba(199, 166, 120, 0.2) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth) !important;
  overflow: hidden;
}

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

.card-body {
  color: var(--text-light) !important;
  padding: 2rem !important;
}

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

.card-text {
  color: rgba(245, 245, 245, 0.85) !important;
}

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

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

/* Suite Cards */
.suite-card {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 62, 0.9) 100%) !important;
  border: 2px solid rgba(199, 166, 120, 0.3) !important;
  overflow: hidden;
  transition: var(--transition-smooth) !important;
}

.suite-card.tall {
  height: 500px;
}

.suite-card.wide {
  grid-column: span 2;
}

.suite-card:hover {
  border-color: var(--secondary-color) !important;
  transform: scale(1.02);
  box-shadow: 0 20px 60px var(--shadow-dark) !important;
}

.suite-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.95) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.suite-card:hover .suite-hover-effect {
  opacity: 1;
}

.amenity-badge {
  background: rgba(199, 166, 120, 0.2) !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Team Cards */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  height: 400px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
  padding: 2rem;
  transform: translateY(60%);
  transition: var(--transition-smooth);
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

/* Forms */
.form-control,
.form-select {
  background: rgba(42, 42, 62, 0.6) !important;
  border: 2px solid rgba(199, 166, 120, 0.3) !important;
  color: var(--text-light) !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition-smooth) !important;
}

.form-control:focus,
.form-select:focus {
  background: rgba(42, 42, 62, 0.8) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 0 0.2rem rgba(199, 166, 120, 0.25) !important;
}

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

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

.form-select-lg {
  padding: 1rem 1.25rem !important;
}

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

.form-check-input {
  background-color: rgba(42, 42, 62, 0.6) !important;
  border: 2px solid var(--secondary-color) !important;
  width: 1.5rem;
  height: 1.5rem;
}

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

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

/* Multi-Step Form */
.multi-step-form {
  background: rgba(42, 42, 62, 0.4) !important;
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.progress {
  height: 8px;
  background: rgba(42, 42, 62, 0.6) !important;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--gold-light) 100%) !important;
  transition: width 0.5s ease;
}

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

.bi-building,
.bi-droplet,
.bi-stars,
.bi-cup-hot,
.bi-heart-pulse,
.bi-calendar-event,
.bi-star-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-arrow-right,
.bi-arrow-left,
.bi-send,
.bi-check-circle-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-chat-dots-fill,
.bi-chat-left-text-fill,
.bi-airplane-fill,
.bi-car-front-fill,
.bi-train-front-fill,
.bi-bicycle-fill,
.bi-clock-fill,
.bi-cup-hot-fill,
.bi-calendar-check-fill,
.bi-calendar-check,
.bi-file-earmark-pdf,
.bi-info-circle,
.bi-shield-check,
.bi-cookie,
.bi-lock,
.bi-share,
.bi-person-check,
.bi-check-circle,
.bi-people,
.bi-globe,
.bi-arrow-repeat,
.bi-funnel,
.bi-badge-vr,
.bi-tree,
.bi-fire,
.bi-moon-stars,
.bi-moon,
.bi-wifi,
.bi-water,
.bi-tv,
.bi-snow,
.bi-clock-history,
.bi-car-front,
.bi-calendar-x,
.bi-peace {
  color: var(--secondary-color) !important;
}

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

.fs-3 {
  font-size: 1.75rem !important;
}

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

/* Hero Section */
.parallax-header {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.9) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.parallax-header::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="%23c7a678" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,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>');
  background-size: cover;
  background-position: bottom;
  opacity: 0.3;
}

.parallax-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(42, 42, 62, 0.95) 100%);
}

/* Timeline */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  animation: fadeInScale 0.6s ease;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px var(--shadow-gold);
}

.timeline-card {
  width: 45%;
  background: rgba(42, 42, 62, 0.6) !important;
  border: 2px solid rgba(199, 166, 120, 0.3) !important;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.masonry-item {
  break-inside: avoid;
  animation: fadeInUp 0.6s ease;
}

/* Chat Bubble */
.chat-bubble {
  background: rgba(199, 166, 120, 0.1) !important;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 20px !important;
  padding: 1rem 1.5rem !important;
  position: relative;
}

.chat-bubble::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--secondary-color);
}

/* Accordion */
.accordion {
  background: transparent !important;
}

.accordion-item {
  background: rgba(42, 42, 62, 0.4) !important;
  border: 1px solid rgba(199, 166, 120, 0.3) !important;
  margin-bottom: 1rem !important;
  border-radius: 12px !important;
  overflow: hidden;
}

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

.accordion-button {
  background: rgba(42, 42, 62, 0.6) !important;
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 1.5rem !important;
  transition: var(--transition-smooth) !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(199, 166, 120, 0.2) !important;
  color: var(--secondary-color) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c7a678'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c7a678'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  background: rgba(42, 42, 62, 0.3) !important;
  color: var(--text-light) !important;
  padding: 1.5rem !important;
  border-top: 1px solid rgba(199, 166, 120, 0.2) !important;
}

.accordion-collapse {
  border: none !important;
}

/* Modal */
.modal {
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(42, 42, 62, 0.95) 100%) !important;
  border: 2px solid var(--secondary-color) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 80px var(--shadow-dark) !important;
}

.modal-header,
.modal-footer {
  border-color: rgba(199, 166, 120, 0.3) !important;
}

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

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

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Carousel */
.carousel {
  border-radius: 16px;
  overflow: hidden;
}

.carousel-item {
  height: 500px;
  background: rgba(26, 26, 46, 0.8);
}

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

.carousel-indicators {
  margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color) !important;
  border: none;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

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

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

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

/* List */
.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--text-light) !important;
}

.list-unstyled a {
  color: rgba(245, 245, 245, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

.list-unstyled a:hover {
  color: var(--secondary-color) !important;
  padding-left: 10px;
}

/* Links */
a {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-light) !important;
}

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

/* Image */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

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

/* Utilities */
.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

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

.h-100 {
  height: 100% !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;
}

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

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

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(199, 166, 120, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(199, 166, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(199, 166, 120, 0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease;
}

.slide-in-right {
  animation: slideInRight 0.8s ease;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(199, 166, 120, 0.3);
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .parallax-header {
    min-height: 80vh;
  }

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

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

  .display-4 {
    font-size: 1.75rem !important;
  }

  .suite-card.wide {
    grid-column: span 1;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .multi-step-form {
    padding: 1.5rem;
  }

  .suite-card {
    height: 300px;
  }

  .suite-card.tall {
    height: 400px;
  }

  .team-card {
    height: 350px;
  }

  .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: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .carousel-item {
    height: 300px;
  }

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

@media (max-width: 575.98px) {
  .display-2 {
    font-size: 2rem !important;
  }

  .display-3 {
    font-size: 1.75rem !important;
  }

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

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

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

  .navbar-brand {
    font-size: 1.5rem !important;
  }

  .suite-card {
    height: 250px;
  }

  .suite-card.tall {
    height: 350px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .modal,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card {
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }
}