/* Architecture Studio - Deep Teal & Golden Sand Theme */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #1B4B5A;
  --secondary-color: #C9A86A;
  --dark-teal: #0F2E38;
  --light-teal: #2A6B7D;
  --cream: #F5EFE6;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --shadow-sm: 0 2px 8px rgba(27, 75, 90, 0.1);
  --shadow-md: 0 4px 16px rgba(27, 75, 90, 0.15);
  --shadow-lg: 0 8px 32px rgba(27, 75, 90, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--black);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 800 !important;
  color: var(--primary-color) !important;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-size: 1.75rem !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: var(--cream) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  margin: 0 0.25rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--white) !important;
  background-color: rgba(201, 168, 106, 0.2) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 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, 168, 106, 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='%23C9A86A' 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;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-color) 50%, var(--light-teal) 100%);
  padding: 120px 0 80px;
}

.video-background {
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  top: 0;
  left: 0;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-section .display-2 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-section .lead {
  color: var(--cream) !important;
  font-size: 1.25rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

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

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: var(--transition) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-width: 2px !important;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #B8965A !important;
  border-color: #B8965A !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4) !important;
}

.btn-outline-light {
  border-color: var(--white) !important;
  color: var(--white) !important;
  background-color: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

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

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

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary-color);
  box-shadow: var(--shadow-lg) !important;
  animation: fadeInRight 1s ease-out;
}

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

.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  padding: 0.875rem 1.25rem !important;
  font-size: 1rem !important;
  color: var(--black) !important;
  background-color: var(--white) !important;
  transition: var(--transition);
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(201, 168, 106, 0.15) !important;
  outline: none;
}

.booking-widget h3 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--white) !important;
  font-size: 2rem;
  display: block;
  transition: var(--transition);
}

.scroll-indicator a:hover {
  color: var(--secondary-color) !important;
  transform: translateY(5px);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background-color: var(--white);
  border-radius: 16px;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--secondary-color);
}

.service-card img {
  border-radius: 14px 14px 0 0;
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}

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

.service-card .card-body {
  padding: 1.75rem;
}

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

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
  position: relative;
}

section.py-5 {
  background-color: var(--cream);
}

section:nth-child(even) {
  background-color: var(--white);
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 75, 90, 0.9) 0%, rgba(15, 46, 56, 0.85) 100%);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

.parallax-section h2,
.parallax-section p,
.parallax-section .display-6 {
  color: var(--white) !important;
}

/* ===== AMENITY CARDS ===== */
.amenity-card {
  background-color: var(--white);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid #F0F0F0;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
  background-color: var(--cream);
}

.amenity-card .bi {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition);
}

.amenity-card:hover .bi {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-color);
}

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

.amenity-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== CARD STYLES ===== */
.card {
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-sm);
}

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

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

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

.card-body {
  padding: 1.75rem;
  background-color: var(--white);
}

.card-body h5,
.card-body .h4 {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-body p {
  color: #666;
  line-height: 1.7;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  position: relative;
  padding-left: 3rem;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.timeline-section .badge {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
}

.timeline-section .badge::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.2);
}

/* ===== ACCORDION ===== */
.accordion-item {
  border: 2px solid #E8E8E8 !important;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  background-color: var(--white);
}

.accordion-button {
  background-color: var(--cream) !important;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 1.1rem;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(201, 168, 106, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(1647%) hue-rotate(145deg) brightness(95%) contrast(91%);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(201deg) brightness(104%) contrast(104%);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
  color: #555;
  line-height: 1.8;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  color: var(--black) !important;
  background-color: var(--white) !important;
  transition: var(--transition);
}

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

.form-control::placeholder {
  color: #999 !important;
}

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

.form-check-input {
  border: 2px solid var(--secondary-color) !important;
  width: 1.25rem;
  height: 1.25rem;
  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(201, 168, 106, 0.25) !important;
}

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

.invalid-feedback {
  color: #DC3545 !important;
  font-weight: 600;
  display: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #DC3545 !important;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* ===== ALERTS ===== */
.alert {
  border-radius: 12px !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-success {
  background-color: #D4EDDA !important;
  color: #155724 !important;
}

.alert-success .bi {
  font-size: 1.5rem;
  color: #28A745;
}

.alert-danger {
  background-color: #F8D7DA !important;
  color: #721C24 !important;
}

.alert-danger .bi {
  font-size: 1.5rem;
  color: #DC3545;
}

/* ===== BADGES ===== */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* ===== TABLES ===== */
.table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-dark {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.table-dark thead {
  background-color: var(--dark-teal) !important;
}

.table-dark th,
.table-dark td {
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 1rem !important;
}

.table-dark tbody tr:hover {
  background-color: rgba(201, 168, 106, 0.1) !important;
}

/* ===== PROGRESS BARS ===== */
.progress {
  height: 12px !important;
  border-radius: 10px !important;
  background-color: #E8E8E8 !important;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* ===== MODALS ===== */
.modal-content {
  border-radius: 20px !important;
  border: none !important;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

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

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

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

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

.btn-close:hover,
.btn-close-white:hover {
  opacity: 0.8 !important;
  transform: rotate(90deg);
}

/* ===== CAROUSEL ===== */
.carousel-item {
  height: 500px;
}

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

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 168, 106, 0.8) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: var(--transition);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--secondary-color) !important;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== STICKY NAVIGATION ===== */
.sticky-top {
  top: 100px !important;
  z-index: 100;
}

.nav.flex-column .nav-link {
  color: var(--primary-color) !important;
  padding: 0.75rem 1.25rem !important;
  border-left: 3px solid transparent;
  transition: var(--transition);
  font-weight: 600;
}

.nav.flex-column .nav-link:hover,
.nav.flex-column .nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(201, 168, 106, 0.1);
  border-left-color: var(--secondary-color);
  transform: translateX(5px);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-color) 100%);
  color: var(--cream) !important;
  padding: 60px 0 0;
}

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

footer a {
  color: var(--cream) !important;
  transition: var(--transition);
  display: inline-block;
}

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

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

footer .bi {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

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

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

/* ===== SOCIAL ICONS ===== */
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin {
  font-size: 1.5rem;
  color: var(--cream) !important;
  transition: var(--transition);
  display: inline-block;
}

.bi-facebook:hover {
  color: #1877F2 !important;
  transform: translateY(-3px);
}

.bi-instagram:hover {
  color: #E4405F !important;
  transform: translateY(-3px);
}

.bi-twitter:hover {
  color: #1DA1F2 !important;
  transform: translateY(-3px);
}

.bi-linkedin:hover {
  color: #0A66C2 !important;
  transform: translateY(-3px);
}

/* ===== ICONS ===== */
.bi {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

/* ===== UTILITIES ===== */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Devices (Desktops) */
@media (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(27, 75, 90, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-section .display-2 {
    font-size: 2.5rem;
  }
  
  .booking-widget {
    margin-top: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .sticky-top {
    position: relative !important;
    top: 0 !important;
  }
  
  .timeline-section {
    padding-left: 2rem;
  }
}

/* Small Devices (Mobile Landscape) */
@media (max-width: 767.98px) {
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  .hero-section .lead {
    font-size: 1.1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  
  .modal-body {
    padding: 1.5rem !important;
  }
}

/* Extra Small Devices (Mobile Portrait) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .hero-section .display-2 {
    font-size: 1.75rem;
  }
  
  .hero-section .lead {
    font-size: 1rem !important;
  }
  
  .booking-widget {
    padding: 1.5rem !important;
  }
  
  section {
    padding: 40px 0;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .service-card .card-body,
  .card-body {
    padding: 1.25rem;
  }
  
  .amenity-card {
    padding: 1.5rem;
  }
  
  .amenity-card .bi {
    font-size: 2.5rem;
  }
  
  footer {
    padding: 40px 0 0;
  }
  
  .timeline-section {
    padding-left: 1.5rem;
  }
  
  .timeline-section .badge::before {
    left: -2.5rem;
    width: 12px;
    height: 12px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  .scroll-indicator,
  footer {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .hero-section {
    background: none;
    color: black !important;
  }
}

/* ===== ACCESSIBILITY ===== */
.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;
}

:focus-visible {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 2px !important;
}

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

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

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

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

/* ===== LOADING STATES ===== */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid var(--cream);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
  transition: var(--transition);
}

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

.hover-scale {
  transition: var(--transition);
}

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

/* ===== TEXT SELECTION ===== */
::selection {
  background-color: var(--secondary-color);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: var(--white);
}