/* ===================================
   Architectural Studio - Forest & Stone Theme
   Primary Color: #2C5530 (Forest Green)
   Secondary Color: #8B4513 (Saddle Brown)
   =================================== */

/* ===================================
   CSS VARIABLES & RESETS
   =================================== */
:root {
  --primary-color: #2C5530;
  --secondary-color: #8B4513;
  --primary-dark: #1a3d1f;
  --primary-light: #3d7040;
  --secondary-dark: #6b340e;
  --secondary-light: #a5541b;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --bg-light: #f5f5f0;
  --bg-dark: #2a2a2a;
  --transition-base: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(44, 85, 48, 0.1);
  --shadow-md: 0 4px 16px rgba(44, 85, 48, 0.15);
  --shadow-lg: 0 8px 32px rgba(44, 85, 48, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */
.display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--primary-color) !important;
}

.text-white.display-2,
.text-white.display-3,
.text-white.display-4,
.text-white.display-5,
.text-white.display-6 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.text-white.lead,
.text-white .lead {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.fw-semibold {
  font-weight: 600 !important;
}

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

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

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

.navbar.fixed-top {
  backdrop-filter: blur(10px);
}

.navbar.sticky-top {
  background: rgba(44, 85, 48, 0.95) !important;
}

.navbar-dark .navbar-brand {
  color: #ffffff !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: var(--transition-base);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background-color: var(--secondary-color) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.5) !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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 6px;
  transition: var(--transition-base);
  position: relative;
}

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

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

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
  background-color: var(--secondary-color) !important;
  font-weight: 600 !important;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  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-lg {
  padding: 0.75rem 2rem !important;
  font-size: 1.1rem !important;
}

.btn:not(.btn-light):not(.btn-outline-secondary):not(.btn-outline-primary) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn:not(.btn-light):not(.btn-outline-secondary):not(.btn-outline-primary):hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4) !important;
  color: #ffffff !important;
}

.btn-light {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
}

.btn-light:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

.btn:active {
  transform: translateY(0) !important;
}

/* ===================================
   CARDS
   =================================== */
.card {
  border: none !important;
  border-radius: 16px !important;
  transition: var(--transition-base);
  background-color: #ffffff !important;
  overflow: hidden;
}

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

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

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(44, 85, 48, 0.25) !important;
}

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

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

/* ===================================
   FORMS
   =================================== */
.form-control,
.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  transition: var(--transition-base);
  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.25rem rgba(44, 85, 48, 0.15) !important;
  outline: none !important;
}

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

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

.form-check-input {
  border: 2px solid var(--primary-color) !important;
  border-radius: 4px !important;
  cursor: pointer;
}

.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.25rem rgba(44, 85, 48, 0.15) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  cursor: pointer;
}

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

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

/* ===================================
   HERO SECTION
   =================================== */
.position-relative {
  min-height: 100vh;
}

.position-absolute.w-100.h-100 {
  z-index: 0;
}

.position-absolute.w-100.h-100::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 85, 48, 0.7) 0%, rgba(139, 69, 19, 0.5) 100%);
  z-index: 1;
}

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

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

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

/* ===================================
   ALERTS
   =================================== */
.alert {
  border: none !important;
  border-radius: 12px !important;
  padding: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

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

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

.bi-star-fill,
.bi-water,
.bi-tree-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-house-door,
.bi-droplet,
.bi-egg-fried,
.bi-people,
.bi-bicycle,
.bi-star,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-send,
.bi-check-circle-fill,
.bi-map,
.bi-car-front-fill,
.bi-airplane-fill,
.bi-bus-front-fill,
.bi-bicycle-fill,
.bi-youtube,
.bi-rulers,
.bi-camera-video,
.bi-wifi,
.bi-cup-hot,
.bi-snow2,
.bi-tv,
.bi-shield-check,
.bi-heart-pulse,
.bi-yin-yang,
.bi-person-video3,
.bi-easel,
.bi-projector,
.bi-tree,
.bi-fire,
.bi-p-square,
.bi-shop,
.bi-book,
.bi-stars,
.bi-heart-fill,
.bi-flower2,
.bi-clock-history,
.bi-sunrise,
.bi-moon-stars,
.bi-calendar-check,
.bi-info-circle,
.bi-egg {
  color: var(--primary-color) !important;
  transition: var(--transition-base);
}

.text-white .bi,
.bg-dark .bi,
.navbar .bi {
  color: #ffffff !important;
}

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

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

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

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

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

.card:hover .bi,
.btn:hover .bi {
  transform: scale(1.1);
}

.d-inline-flex {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* ===================================
   BACKGROUNDS
   =================================== */
.bg-white {
  background-color: #ffffff !important;
}

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

/* ===================================
   BORDERS
   =================================== */
.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-4 {
  border-width: 4px !important;
  border-color: var(--primary-color) !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

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

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

/* ===================================
   ROUNDED CORNERS
   =================================== */
.rounded {
  border-radius: 8px !important;
}

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

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

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

/* ===================================
   SHADOWS
   =================================== */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

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

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

/* ===================================
   OPACITY
   =================================== */
.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

/* ===================================
   OVERFLOW
   =================================== */
.overflow-hidden {
  overflow: hidden !important;
}

/* ===================================
   POSITIONING
   =================================== */
.position-sticky {
  position: sticky !important;
  top: 80px;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.top-0 {
  top: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.start-50 {
  left: 50% !important;
}

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

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

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

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

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

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

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

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

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

.pt-4 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

.ps-lg-4 {
  padding-left: 2rem !important;
}

.pe-lg-5 {
  padding-right: 3rem !important;
}

.pe-lg-4 {
  padding-right: 2rem !important;
}

.p-lg-6 {
  padding: 4rem !important;
}

.p-lg-5 {
  padding: 3rem !important;
}

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

.m-4 {
  margin: 2rem !important;
}

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

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !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: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

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

.ms-4 {
  margin-left: 2rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

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

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

/* ===================================
   FLEX & GRID
   =================================== */
.d-flex {
  display: flex !important;
}

.d-none {
  display: none !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;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

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

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

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

/* ===================================
   LISTS
   =================================== */
.list-unstyled {
  list-style: none !important;
  padding-left: 0 !important;
}

.list-unstyled li {
  padding: 0.5rem 0;
}

/* ===================================
   LINKS
   =================================== */
a {
  text-decoration: none !important;
  color: var(--primary-color) !important;
  transition: var(--transition-base);
}

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

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

.text-white a,
a.text-white {
  color: #ffffff !important;
}

.text-white a:hover,
a.text-white:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer a {
  color: var(--text-dark) !important;
}

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

/* ===================================
   IMAGES
   =================================== */
.img-fluid {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

img {
  transition: var(--transition-base);
}

.card:hover img,
.col-md-4:hover img,
.col-lg-4:hover img {
  transform: scale(1.05);
}

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-center {
  text-align: center !important;
}

.text-white {
  color: #ffffff !important;
}

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

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

.text-md-end {
  text-align: right !important;
}

.small {
  font-size: 0.875rem !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 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);
  }
}

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

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

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

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

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

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

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

.hover-zoom {
  transition: var(--transition-base);
  overflow: hidden;
}

.hover-zoom img {
  transition: var(--transition-base);
}

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

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

footer h5,
footer h6,
footer .h4 {
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

footer p,
footer li {
  color: rgba(255, 255, 255, 0.9) !important;
}

footer .bi {
  color: var(--secondary-light) !important;
}

footer a {
  color: rgba(255, 255, 255, 0.9) !important;
}

footer a:hover {
  color: #ffffff !important;
}

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

/* Mobile First - Base styles above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .mt-md-0 {
    margin-top: 0 !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .ps-md-4 {
    padding-left: 2rem !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .p-lg-5 {
    padding: 3rem !important;
  }
  
  .p-lg-6 {
    padding: 4rem !important;
  }
  
  .ps-lg-4 {
    padding-left: 2rem !important;
  }
  
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  
  .pe-lg-4 {
    padding-right: 2rem !important;
  }
  
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .display-6 {
    font-size: 1.25rem !important;
  }
  
  .lead,
  .fs-4 {
    font-size: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.5rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .position-relative {
    min-height: 100vh;
  }
  
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* ===================================
   CUSTOM THEME ELEMENTS
   =================================== */

/* Forest & Stone decorative elements */
.forest-pattern {
  background-image: 
    linear-gradient(135deg, var(--primary-color) 25%, transparent 25%),
    linear-gradient(225deg, var(--primary-color) 25%, transparent 25%),
    linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
    linear-gradient(315deg, var(--primary-color) 25%, var(--bg-light) 25%);
  background-position: 20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
  opacity: 0.03;
}

.stone-texture {
  background-color: #f5f5f0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 85, 48, 0.05) 0%, transparent 50%);
}

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

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

/* Loading animation */
.loading {
  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 var(--primary-light);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

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

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

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

/* Selection color */
::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .navbar,
  .btn,
  footer,
  .navbar-toggler {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .card {
    border: 1px solid #000 !important;
    box-shadow: none !important;
  }
}