/* Forest Copper Architecture Studio Theme - CSS */

/* ===== CSS Variables & Base Styles ===== */
:root {
  --primary-color: #2C5F4F;
  --secondary-color: #D4A574;
  --dark-primary: #1a3d30;
  --light-primary: #3d7d66;
  --dark-secondary: #b8894f;
  --light-secondary: #e8c9a1;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(44, 95, 79, 0.1);
  --shadow-lg: 0 10px 30px rgba(44, 95, 79, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== Typography ===== */
.display-1, .display-3, .display-4, .display-5 {
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-dark) !important;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-dark) !important;
}

.fs-3, .fs-4, .fs-5 {
  color: var(--text-dark);
}

h2, h3, h4, .h2, .h3, .h4 {
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* ===== Navbar Styles ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(44, 95, 79, 0.98) !important;
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: var(--transition);
  position: relative;
}

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

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

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 165, 116, 0.25);
}

.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='%23D4A574' 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, rgba(44, 95, 79, 0.95) 0%, rgba(26, 61, 48, 0.95) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F4F" width="1200" height="600"/><path fill="%23D4A574" opacity="0.1" d="M0 300L50 275L100 287.5L150 262.5L200 275L250 250L300 262.5L350 275L400 262.5L450 287.5L500 300L550 287.5L600 312.5L650 300L700 325L750 312.5L800 325L850 337.5L900 325L950 337.5L1000 350L1050 337.5L1100 350L1150 362.5L1200 350V600H0Z"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 80px;
}

.hero-section::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" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23D4A574" opacity="0.3"/></svg>');
  opacity: 0.3;
  animation: float 20s infinite linear;
}

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

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

.hero-section .text-white,
.hero-section .display-1,
.hero-section .fs-3 {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.animate-bounce {
  animation: bounce 2s infinite;
}

.bi-chevron-down {
  color: var(--secondary-color) !important;
  cursor: pointer;
  transition: var(--transition);
}

.bi-chevron-down:hover {
  transform: translateY(5px) !important;
  color: var(--light-secondary) !important;
}

/* ===== Buttons ===== */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  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.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-lg {
  background-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  border-color: var(--secondary-color) !important;
  padding: 0.75rem 2rem !important;
}

.btn-lg:hover {
  background-color: var(--dark-secondary) !important;
  border-color: var(--dark-secondary) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.btn-sm {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color) !important;
  padding: 0.375rem 1rem !important;
}

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

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

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

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

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

/* ===== Booking Widget ===== */
.booking-widget {
  bottom: -80px;
  z-index: 100;
  animation: slideInUp 1s ease-out 0.5s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.booking-widget .card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border: none !important;
  border-radius: 15px;
  max-width: 900px;
}

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

.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #fff !important;
  color: var(--text-dark) !important;
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 79, 0.15) !important;
  background-color: #fff !important;
}

/* ===== Cards ===== */
.card {
  border: none !important;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  background-color: #fff;
  height: 100%;
}

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

.card-body {
  padding: 2rem;
}

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

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7;
}

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

/* ===== Icons ===== */
.bi {
  transition: var(--transition);
}

.card:hover .bi {
  transform: scale(1.1) rotate(5deg);
}

.bi-building, .bi-flower1, .bi-hammer, .bi-egg-fried, 
.bi-calendar-event, .bi-compass, .bi-car-front-fill,
.bi-train-front-fill, .bi-airplane-fill, .bi-wifi,
.bi-cup-hot, .bi-tv, .bi-snow, .bi-droplet, .bi-moon-stars {
  font-size: 2.5rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

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

.bi-star-fill {
  color: var(--secondary-color) !important;
}

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

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

section {
  position: relative;
}

/* ===== Images ===== */
.img-fluid {
  border-radius: 15px;
  transition: var(--transition);
}

.img-fluid:hover {
  transform: scale(1.02);
}

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

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

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

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

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

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(44, 95, 79, 0.075) !important;
}

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

/* ===== Timeline ===== */
.timeline-container {
  position: relative;
  padding-left: 3rem;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-marker {
  position: absolute;
  left: -2.3rem;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-color);
  z-index: 1;
}

.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

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

.carousel-item {
  height: 500px;
  position: relative;
}

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

.carousel-caption {
  background: linear-gradient(0deg, rgba(44, 95, 79, 0.9) 0%, rgba(44, 95, 79, 0) 100%);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 2rem;
}

.carousel-caption h3,
.carousel-caption p {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}

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

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

/* ===== Forms ===== */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #fff;
  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(44, 95, 79, 0.15) !important;
  background-color: #fff !important;
}

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

.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(44, 95, 79, 0.15);
}

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

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

.form-control.is-invalid {
  border-color: #dc3545 !important;
}

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

.alert-success {
  background-color: rgba(44, 95, 79, 0.1) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color);
}

/* ===== Badges ===== */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
}

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

/* ===== Room Cards ===== */
.room-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}

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

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-image-wrapper img {
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card:hover .room-image-wrapper img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(44, 95, 79, 0.8) 0%, rgba(44, 95, 79, 0) 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-card:hover .overlay {
  opacity: 1;
}

.compare-checkbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.compare-check {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.view-details {
  background-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Filter Buttons ===== */
.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

/* ===== Accordion ===== */
.accordion-item {
  border: none !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

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

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

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

.accordion-body {
  background-color: #fff;
  color: var(--text-dark);
  padding: 1.5rem;
}

.accordion-button.collapsed {
  background-color: #f8f9fa !important;
  color: var(--primary-color) !important;
}

.accordion-button.collapsed::after {
  filter: brightness(0) saturate(100%) invert(34%) sepia(28%) saturate(815%) hue-rotate(116deg) brightness(92%) contrast(90%);
}

/* ===== Nav Pills/Tabs ===== */
.nav {
  border: none;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.nav-link:hover {
  background-color: rgba(44, 95, 79, 0.1);
  color: var(--primary-color) !important;
}

.nav-link.active {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--primary-color);
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

footer h3,
footer h4,
footer h5 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
}

footer p,
footer li,
footer a {
  color: var(--text-light) !important;
}

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

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

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

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

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

/* ===== Utility Classes ===== */
.sticky-top {
  position: sticky;
  top: 80px;
  z-index: 1020;
}

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-sticky {
  position: sticky !important;
  top: 100px;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !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-between {
  justify-content: space-between !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-lg-end {
  text-align: left !important;
}

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

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

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

.fst-italic {
  font-style: italic;
}

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

.gap-2 {
  gap: 0.5rem !important;
}

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

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

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-1 {
  --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.m-0 { margin: 0 !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.p-md-5 { padding: 3rem !important; }

.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;
}

.translate-middle-x {
  transform: translateX(-50%) !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;
}

.small {
  font-size: 0.875rem;
}

/* ===== Responsive Utilities ===== */
@media (min-width: 768px) {
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

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

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

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

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

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

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

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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

/* ===== Mobile Responsiveness ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(26, 61, 48, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding-top: 100px;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .booking-widget {
    position: relative;
    bottom: 0;
    transform: none;
    margin-top: 2rem;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .timeline-container {
    padding-left: 2rem;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .sticky-lg-top {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .display-1 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.25rem !important;
  }
  
  .btn-lg {
    padding: 0.5rem 1.5rem !important;
    font-size: 1rem;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .carousel-item {
    height: 250px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .p-md-5 {
    padding: 1.5rem !important;
  }
  
  .col-md-4,
  .col-md-6,
  .col-md-8 {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .booking-widget .card {
    margin: 0 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .bi-building, .bi-flower1, .bi-hammer {
    font-size: 2rem;
  }
  
  footer {
    text-align: center;
  }
  
  .timeline-line {
    left: 10px;
  }
  
  .timeline-marker {
    left: -2rem;
  }
}

/* ===== Print Styles ===== */
@media print {
  .navbar,
  .btn,
  footer,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}