/* ===================================
   Architecture Studio - Deep Crimson & Dark Walnut Theme
   Primary: #8B1538 | Secondary: #2C1810
   =================================== */

:root {
  --primary-color: #8B1538;
  --secondary-color: #2C1810;
  --accent-gold: #D4AF37;
  --light-cream: #F5F1E8;
  --dark-gray: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #2C1810;
  --transition-speed: 0.3s;
}

/* ===================================
   GLOBAL STYLES
   =================================== */

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

body {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--text-dark);
  background-color: var(--light-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.text-white h1,
.text-white h2,
.text-white h3,
.text-white .display-1,
.text-white .display-2,
.text-white .display-3,
.text-white .display-4 {
  color: var(--text-light) !important;
}

a {
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.container-fluid {
  max-width: 1920px;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(44, 24, 16, 0.98) !important;
}

.navbar-brand {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
}

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

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-light) !important;
  background: rgba(255, 255, 255, 0.1);
}

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

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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='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 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  position: relative;
}

.hero-background {
  opacity: 0.3;
  z-index: 1;
  filter: grayscale(20%);
}

.object-fit-cover {
  object-fit: cover;
}

.crimson-veil {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.7) 0%, rgba(44, 24, 16, 0.8) 100%);
  z-index: 2;
}

.veil-overlay {
  z-index: 2;
}

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

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem !important;
}

.hero-section .lead {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   BOOKING WIDGET
   =================================== */

.booking-widget {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.booking-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.booking-widget h3 {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}

.booking-widget .form-label {
  color: var(--secondary-color) !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-widget .text-white-50 {
  color: rgba(44, 24, 16, 0.6) !important;
}

.form-control,
.form-select {
  border: 2px solid rgba(139, 21, 56, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15) !important;
  background-color: #ffffff !important;
}

.form-control::placeholder {
  color: rgba(44, 24, 16, 0.4) !important;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  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(--primary-color) 0%, #6B1028 100%) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #6B1028 0%, var(--primary-color) 100%) !important;
  border-color: #6B1028 !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.btn-secondary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(44, 24, 16, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #1a0f08 !important;
  border-color: #1a0f08 !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 24, 16, 0.4);
}

.btn-light {
  background: var(--light-cream) !important;
  border-color: var(--light-cream) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

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

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

/* ===================================
   SERVICE CARDS
   =================================== */

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

.service-icon i,
.service-icon .bi {
  color: var(--text-light) !important;
  font-size: 2rem !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.service-card h4 {
  color: var(--secondary-color) !important;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(44, 24, 16, 0.75);
  line-height: 1.7;
}

/* ===================================
   TESTIMONIAL CARDS
   =================================== */

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(139, 21, 56, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
}

.testimonial-card .bi-star-fill {
  color: var(--accent-gold) !important;
  font-size: 1rem;
}

.testimonial-card .fw-bold {
  color: var(--secondary-color) !important;
  font-size: 1.1rem;
}

/* ===================================
   SUITE CARDS
   =================================== */

.suite-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.suite-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(139, 21, 56, 0.2);
}

.suite-card img {
  transition: transform 0.6s ease;
}

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

.suite-amenities {
  background: rgba(139, 21, 56, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
}

.suite-amenities li {
  color: var(--secondary-color);
  padding: 0.4rem 0;
}

.suite-amenities .bi-check-circle-fill {
  color: var(--primary-color) !important;
}

/* ===================================
   TIMELINE
   =================================== */

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
  border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--light-cream);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item:hover::before {
  animation: pulse 1s infinite;
}

.timeline-item .badge {
  background: var(--primary-color) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

/* ===================================
   ACCORDION
   =================================== */

.accordion-item {
  border: 1px solid rgba(139, 21, 56, 0.15);
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(44, 24, 16, 0.05) 100%) !important;
  color: var(--secondary-color) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border: none;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15) !important;
  border: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(13%) sepia(26%) saturate(1893%) hue-rotate(318deg) brightness(91%) contrast(90%);
}

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

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

/* ===================================
   MODAL
   =================================== */

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  border-bottom: none;
  padding: 1.5rem 2rem;
}

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

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

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
}

/* ===================================
   CAROUSEL
   =================================== */

.carousel-item img {
  border-radius: 8px;
  max-height: 70vh;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(139, 21, 56, 0.8);
  border-radius: 50%;
  padding: 2rem;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
}

/* ===================================
   CARD COMPONENT
   =================================== */

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card.shadow-sm {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(139, 21, 56, 0.15) !important;
}

.card-body {
  padding: 2rem;
}

/* ===================================
   FORM VALIDATION
   =================================== */

.needs-validation .form-control:invalid,
.needs-validation .form-select:invalid {
  border-color: #dc3545;
}

.needs-validation .form-control:valid,
.needs-validation .form-select:valid {
  border-color: #198754;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.valid-feedback {
  color: #198754;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-check-input {
  border-color: var(--primary-color);
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15) !important;
}

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

/* ===================================
   BADGES
   =================================== */

.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
}

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

.rounded-pill {
  border-radius: 50rem !important;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a0f08 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

footer h5,
footer h6 {
  color: var(--text-light) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: all var(--transition-speed) ease;
}

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

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

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.social-icons a:hover {
  background: var(--primary-color);
  border-color: var(--accent-gold);
  transform: translateY(-3px) rotate(5deg);
  padding-left: 0 !important;
}

.social-icons .bi {
  color: var(--text-light) !important;
  font-size: 1.2rem;
}

/* ===================================
   UTILITIES
   =================================== */

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

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

.text-muted {
  color: rgba(44, 24, 16, 0.6) !important;
}

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

.opacity-75 {
  opacity: 0.75;
}

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

.sticky-top {
  position: sticky;
  top: 80px;
  z-index: 1020;
}

.position-fixed {
  position: fixed !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;
}

/* ===================================
   SPACING UTILITIES
   =================================== */

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-5 { padding-top: 4rem !important; padding-bottom: 4rem !important; }

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

.pt-5 { padding-top: 4rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 2.5rem !important; }
.ps-4 { padding-left: 2rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }

.mt-2 { margin-top: 0.75rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2.5rem !important; }
.mt-5 { margin-top: 4rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 0.75rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2.5rem !important; }
.mb-5 { margin-bottom: 4rem !important; }

.m-3 { margin: 1.5rem !important; }

.ms-2 { margin-left: 0.75rem !important; }
.ms-4 { margin-left: 2rem !important; }
.me-2 { margin-left: 0.75rem !important; }
.me-3 { margin-left: 1.5rem !important; }

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

/* ===================================
   FLEX & GRID UTILITIES
   =================================== */

.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-lg-row-reverse { flex-direction: row-reverse !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }

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

.g-0 { gap: 0 !important; }
.g-3 > * { padding: 0.75rem !important; }
.g-4 > * { padding: 1.25rem !important; }
.g-5 > * { padding: 2rem !important; }

/* ===================================
   TEXT UTILITIES
   =================================== */

.text-center { text-align: center !important; }
.text-lg-start { text-align: left !important; }
.text-lg-end { text-align: right !important; }
.text-md-start { text-align: left !important; }
.text-md-end { text-align: right !important; }

.fw-bold { font-weight: 700 !important; }
.fst-italic { font-style: italic !important; }

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

.fs-1 { font-size: 2.5rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }

/* ===================================
   ANIMATIONS
   =================================== */

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

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

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

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

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

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

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

/* ===================================
   ICON STYLES
   =================================== */

.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-arrow-right,
.bi-check2,
.bi-check-circle-fill {
  transition: transform var(--transition-speed) ease;
}

a:hover .bi-arrow-right {
  transform: translateX(5px);
}

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

@media (max-width: 1199.98px) {
  .display-1 { font-size: 3.5rem !important; }
  .display-2 { font-size: 3rem !important; }
  .display-3 { font-size: 2.5rem !important; }
  .display-4 { font-size: 2rem !important; }
  .display-5 { font-size: 1.75rem !important; }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 24, 16, 0.98);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

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

  .hero-section .display-1 {
    font-size: 2.5rem !important;
  }

  .booking-widget {
    margin-top: 2rem;
  }

  .ps-lg-5,
  .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }

  .flex-lg-row-reverse {
    flex-direction: column !important;
  }

  .text-lg-start,
  .text-lg-end {
    text-align: center !important;
  }

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

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

  .sticky-top {
    top: 60px;
  }
}

@media (max-width: 767.98px) {
  .display-1 { font-size: 2rem !important; }
  .display-2 { font-size: 1.75rem !important; }
  .display-3 { font-size: 1.5rem !important; }
  .display-4 { font-size: 1.25rem !important; }
  .display-5 { font-size: 1.1rem !important; }

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

  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i,
  .service-icon .bi {
    font-size: 1.5rem !important;
  }

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

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

  .timeline-item {
    padding-left: 2rem;
  }

  .modal-body,
  .card-body {
    padding: 1.5rem;
  }

  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }

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

  .order-2 { order: 2 !important; }
  .order-1 { order: 1 !important; }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.3rem !important;
  }

  .hero-section .lead {
    font-size: 1rem !important;
  }

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

  .social-icons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */

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

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-gold);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
  border: 2px solid var(--light-cream);
}

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

/* ===================================
   LOADING STATES
   =================================== */

.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(139, 21, 56, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

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

/* ===================================
   BOOTSTRAP OVERRIDES
   =================================== */

.border-0 { border: 0 !important; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }
.p-md-5 { padding: 3rem !important; }

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

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

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

.top-0 { top: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.top-50 { top: 50% !important; }
.start-50 { left: 50% !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }

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

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

/* End of Styles */