/* Forest Gold Elegance - Architectural Studio Theme */

:root {
  --primary-color: #1A4D2E;
  --secondary-color: #D4AF37;
  --dark-forest: #0F2818;
  --light-gold: #F4E4B8;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --shadow-sm: 0 2px 8px rgba(26, 77, 46, 0.1);
  --shadow-md: 0 4px 16px rgba(26, 77, 46, 0.15);
  --shadow-lg: 0 8px 32px rgba(26, 77, 46, 0.2);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark-forest);
  opacity: 0.9;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-forest) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1050;
}

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

.navbar-brand {
  font-size: 1.75rem !important;
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-weight: 800 !important;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !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='%23D4AF37' 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(--primary-color) 0%, var(--dark-forest) 100%);
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

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

.hero-section .text-white {
  color: var(--white) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .display-2 {
  color: var(--white) !important;
  font-size: 4rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero-section .lead {
  color: var(--light-gold) !important;
  font-size: 1.5rem;
  animation: fadeInUp 1.2s ease;
}

/* Booking Widget */
.booking-widget {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary-color);
  animation: fadeInRight 1.2s ease;
}

.booking-widget h3 {
  color: var(--primary-color) !important;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

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

.form-control,
.form-select {
  border: 2px solid rgba(26, 77, 46, 0.2) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
  background-color: var(--white) !important;
  color: var(--dark-forest) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
  outline: none !important;
}

.form-control-lg,
.form-select-lg {
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/* Buttons */
.btn {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px !important;
  transition: all 0.3s ease;
  border: none !important;
  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,
.btn-lg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #C49F2F 100%) !important;
  color: var(--dark-forest) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.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(--dark-forest) !important;
}

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

/* Badge */
.badge {
  background: var(--secondary-color) !important;
  color: var(--dark-forest) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.95rem !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.py-5 {
  padding: 80px 0 !important;
}

.bg-light {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%) !important;
}

/* Icons */
.bi {
  color: var(--secondary-color);
}

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

.bi-check-circle-fill,
.bi-house-heart-fill,
.bi-cup-hot-fill,
.bi-briefcase-fill,
.bi-person-check-fill,
.bi-star-fill,
.bi-heart-fill,
.bi-tree-fill,
.bi-people-fill {
  color: var(--secondary-color) !important;
  font-size: 3rem;
}

/* Cards */
.card,
.room-card,
.team-card,
.amenity-card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--white) !important;
  box-shadow: var(--shadow-sm) !important;
}

.card:hover,
.room-card:hover,
.team-card:hover,
.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg) !important;
}

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

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

.card-text {
  color: var(--dark-forest) !important;
  font-size: 1rem;
  line-height: 1.8;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

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

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

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

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

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

/* Parallax Section */
.parallax-section {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(15, 40, 24, 0.95) 100%),
    url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M50 0 L100 100 L0 100 Z" fill="%23D4AF37" opacity="0.05"/%3E%3C/svg%3E');
  background-attachment: fixed;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  color: var(--white) !important;
}

.parallax-section * {
  color: var(--white) !important;
}

.parallax-section h2,
.parallax-section h3,
.parallax-section h4 {
  color: var(--secondary-color) !important;
}

/* Team Cards */
.team-card {
  position: relative;
  height: 400px;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 77, 46, 0.95) 0%, transparent 100%);
  padding: 2rem;
  transform: translateY(60%);
  transition: transform 0.4s ease;
}

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

.team-bio {
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
  color: var(--light-gold) !important;
}

.team-card:hover .team-bio {
  opacity: 1;
}

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  padding: 0 3rem;
}

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

.timeline-year {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  font-size: 1.25rem;
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-md);
}

/* Navigation Pills */
.nav-pills .nav-link {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Room Details */
.room-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--light-bg);
  border-radius: 12px;
  margin-top: 1rem;
}

.room-details.show {
  max-height: 1000px;
  padding: 1.5rem;
}

.expand-room {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.expand-room.expanded {
  transform: rotate(180deg);
}

/* Table */
.table {
  color: var(--dark-forest) !important;
  margin: 0;
}

.table th {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none !important;
}

.table td {
  border-color: rgba(26, 77, 46, 0.1) !important;
  padding: 1rem !important;
}

.table-sm td,
.table-sm th {
  padding: 0.75rem !important;
}

.table-bordered {
  border: 2px solid var(--primary-color) !important;
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
}

/* List Group */
.list-group-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(26, 77, 46, 0.1) !important;
  padding: 1.25rem !important;
  color: var(--dark-forest) !important;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background: var(--light-bg) !important;
  padding-left: 1.5rem !important;
}

.list-group-item:last-child {
  border-bottom: none !important;
}

.list-unstyled {
  padding: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--dark-forest);
}

/* Horizontal Scroll */
.horizontal-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--light-bg);
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
  width: 300px;
  margin-right: 1.5rem;
}

/* Hotspot Button */
.hotspot-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color) !important;
  color: var(--dark-forest) !important;
  border: 3px solid var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  box-shadow: var(--shadow-md);
}

.hotspot-btn:hover {
  transform: scale(1.2);
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
}

/* Form Check */
.form-check-input {
  border: 2px solid var(--primary-color) !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.2rem rgba(212, 175, 55, 0.25) !important;
}

.form-check-label {
  color: var(--dark-forest) !important;
  cursor: pointer;
  font-weight: 500;
}

/* Accordion */
.accordion-item {
  border: 2px solid rgba(26, 77, 46, 0.1) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background: transparent;
}

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

.accordion-button:not(.collapsed) {
  background: var(--primary-color) !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='%231A4D2E'%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='%23D4AF37'%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 {
  padding: 2rem !important;
  background: var(--white) !important;
  color: var(--dark-forest) !important;
}

/* Modal */
.modal-content {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow-lg) !important;
}

.modal-header {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border: none !important;
  padding: 2rem !important;
}

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

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

.modal-footer {
  border: none !important;
  padding: 1.5rem 2rem !important;
  background: var(--light-bg) !important;
}

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

.btn-close:hover,
.btn-close-white:hover {
  opacity: 0.7;
}

/* Alert */
.alert {
  border: none !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  border-left: 4px solid var(--secondary-color) !important;
  background: var(--light-bg) !important;
  color: var(--dark-forest) !important;
}

/* Spinner */
.spinner-border {
  border-color: var(--secondary-color) !important;
  border-right-color: transparent !important;
}

/* Input Group */
.input-group {
  border-radius: 8px;
  overflow: hidden;
}

.input-group .form-control {
  border-radius: 0 !important;
}

.input-group .btn {
  border-radius: 0 !important;
}

/* Text Colors */
.text-white {
  color: var(--white) !important;
}

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

.text-muted {
  color: rgba(26, 77, 46, 0.6) !important;
}

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

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

.text-danger {
  color: #dc3545 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

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

/* Mission Fade In */
.mission-fade-in {
  animation: fadeInUp 1s ease;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-forest) 0%, var(--primary-color) 100%);
  color: var(--white) !important;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer * {
  color: var(--white) !important;
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

/* Sticky and Fixed Elements */
.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

.fixed-top {
  position: fixed !important;
  top: 0;
  z-index: 1030;
}

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

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

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

/* Object Fit */
.object-fit-cover {
  object-fit: cover !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 fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Utility Classes */
.gap-2 {
  gap: 0.5rem !important;
}

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

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

.g-0 {
  gap: 0 !important;
}

.g-3 > * {
  padding: 1rem !important;
}

.g-4 > * {
  padding: 1.5rem !important;
}

/* Responsive Typography */
@media (max-width: 992px) {
  .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;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  .hero-section .display-2 {
    font-size: 2.5rem !important;
  }
  
  .hero-section .lead {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  section {
    padding: 60px 0;
  }
  
  .py-5 {
    padding: 60px 0 !important;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
    padding-right: 0;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .navbar-collapse {
    background: rgba(26, 77, 46, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 576px) {
  .hero-section .display-2 {
    font-size: 2rem !important;
  }
  
  .hero-section .lead {
    font-size: 1.1rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .booking-widget {
    padding: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .modal-body,
  .accordion-body {
    padding: 1.5rem !important;
  }
  
  .flex-shrink-0 {
    width: 250px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .social-icons,
  .booking-widget {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn,
  .card,
  .form-control,
  .form-select {
    border: 3px solid currentColor !important;
  }
}

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

/* Focus Visible */
:focus-visible {
  outline: 3px solid var(--secondary-color) !important;
  outline-offset: 3px !important;
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: var(--dark-forest);
}

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

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

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

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

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