/* Forest Gold Architecture Studio Theme */
/* Primary Color: #2c5530 (Forest Green) */
/* Secondary Color: #d4af37 (Gold) */

:root {
  --primary-color: #2c5530;
  --secondary-color: #d4af37;
  --primary-dark: #1a3320;
  --primary-light: #3d6e42;
  --secondary-dark: #b8961f;
  --secondary-light: #e6c968;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --shadow: rgba(44, 85, 48, 0.15);
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.navbar-brand:hover {
  color: var(--secondary-light) !important;
  transform: scale(1.05);
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 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='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
}

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

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

.nav-link:hover {
  color: var(--secondary-color) !important;
  background-color: rgba(212, 175, 55, 0.1) !important;
}

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

.nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(212, 175, 55, 0.15) !important;
}

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

/* Hero Section */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hero Background Overlay */
.position-relative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 85, 48, 0.85) 0%, rgba(26, 51, 32, 0.75) 100%);
  z-index: 1;
}

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

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

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

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

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

/* Display Classes */
.display-3 {
  font-size: calc(1.525rem + 3.3vw) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw) !important;
  font-weight: 700 !important;
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw) !important;
  font-weight: 700 !important;
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw) !important;
  font-weight: 700 !important;
}

/* Font Sizes */
.fs-1 {
  font-size: 2.5rem !important;
}

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

.fs-4 {
  font-size: 1.5rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

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

.small {
  font-size: 0.875rem !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
  color: var(--text-light) !important;
}

/* Margin & Padding */
.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;
}

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

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

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

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

.mt-auto {
  margin-top: auto !important;
}

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

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

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

.ms-3 {
  margin-left: 1rem !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

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

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

.mb-md-0 {
  margin-bottom: 0 !important;
}

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

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

.p-0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !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;
}

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

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

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

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

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

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

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

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

/* Buttons */
.btn {
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.btn-outline-light:hover {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3) !important;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow) !important;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

/* Cards */
.card {
  border-radius: 15px !important;
  border: none !important;
  transition: var(--transition) !important;
  overflow: hidden;
  background-color: var(--white) !important;
}

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

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

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-bottom: 3px solid var(--secondary-color) !important;
  padding: 1.5rem !important;
  font-weight: 600 !important;
}

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

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

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

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

.shadow {
  box-shadow: 0 5px 15px var(--shadow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px var(--shadow) !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px var(--shadow) !important;
}

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

/* Forms */
.form-control,
.form-select {
  border: 2px solid #dee2e6 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition) !important;
  background-color: var(--white) !important;
  color: var(--text-dark) !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 {
  padding: 1rem 1.25rem !important;
  font-size: 1.1rem !important;
}

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

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

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

.form-check {
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 2px solid #dee2e6 !important;
  margin-left: -1.75rem;
}

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

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

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

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* Badge */
.badge {
  background-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
}

.bi-award,
.bi-award-fill,
.bi-geo-alt,
.bi-geo-alt-fill,
.bi-heart,
.bi-heart-fill,
.bi-building,
.bi-cup-hot,
.bi-flower1,
.bi-calendar-heart,
.bi-calendar-check,
.bi-calendar-event,
.bi-person-check,
.bi-person-check-fill,
.bi-person-badge,
.bi-person,
.bi-briefcase,
.bi-star-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-telephone,
.bi-telephone-fill,
.bi-envelope,
.bi-envelope-fill,
.bi-envelope-heart,
.bi-arrow-right,
.bi-arrow-right-circle,
.bi-arrow-repeat,
.bi-check-circle,
.bi-check-circle-fill,
.bi-pin-map,
.bi-clock,
.bi-clock-history,
.bi-shield-check,
.bi-shield-lock,
.bi-file-text,
.bi-collection,
.bi-laptop,
.bi-camera,
.bi-gear,
.bi-cookie,
.bi-share,
.bi-credit-card,
.bi-lightbulb,
.bi-lightbulb-fill,
.bi-eye,
.bi-pencil,
.bi-trash,
.bi-hand-thumbs-down,
.bi-download,
.bi-exclamation-triangle,
.bi-people,
.bi-link-45deg,
.bi-rulers,
.bi-tv,
.bi-wifi,
.bi-tree,
.bi-droplet,
.bi-droplet-half,
.bi-door-open,
.bi-moon-stars,
.bi-house,
.bi-controller,
.bi-snow,
.bi-snow2,
.bi-brightness-high,
.bi-basket3,
.bi-hammer,
.bi-badge-vo-fill {
  color: var(--secondary-color) !important;
}

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

/* Flexbox & Grid */
.d-flex {
  display: flex !important;
}

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

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

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

.flex-md-row {
  flex-direction: row !important;
}

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

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

.align-items-start {
  align-items: flex-start !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

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

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

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

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

.text-uppercase {
  text-transform: uppercase !important;
}

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

/* Grid System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.g-0 {
  margin-right: 0;
  margin-left: 0;
}

.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}

.g-3 {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.g-3 > * {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.g-4 {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.g-4 > * {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 15px;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
  padding: 0 15px;
}

.col-sm-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 15px;
}

.col-md-3 {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 15px;
}

.col-md-4 {
  flex: 0 0 auto;
  width: 33.333333%;
  padding: 0 15px;
}

.col-md-5 {
  flex: 0 0 auto;
  width: 41.666667%;
  padding: 0 15px;
}

.col-md-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 15px;
}

.col-md-7 {
  flex: 0 0 auto;
  width: 58.333333%;
  padding: 0 15px;
}

.col-lg-2 {
  flex: 0 0 auto;
  width: 16.666667%;
  padding: 0 15px;
}

.col-lg-3 {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 auto;
  width: 33.333333%;
  padding: 0 15px;
}

.col-lg-5 {
  flex: 0 0 auto;
  width: 41.666667%;
  padding: 0 15px;
}

.col-lg-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 15px;
}

.col-lg-7 {
  flex: 0 0 auto;
  width: 58.333333%;
  padding: 0 15px;
}

.col-lg-8 {
  flex: 0 0 auto;
  width: 66.666667%;
  padding: 0 15px;
}

.col-lg-9 {
  flex: 0 0 auto;
  width: 75%;
  padding: 0 15px;
}

.col-lg-10 {
  flex: 0 0 auto;
  width: 83.333333%;
  padding: 0 15px;
}

.offset-lg-1 {
  margin-left: 8.333333%;
}

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

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

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

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

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

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

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

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

.rounded-start {
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
}

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

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

.opacity-25 {
  opacity: 0.25 !important;
}

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

.h4 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

/* Alert */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--secondary-color);
  color: var(--text-dark) !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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 scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Scroll Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

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

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

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

/* Hover Effects */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow) !important;
}

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

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

/* Social Icons */
.bi-facebook:hover,
.bi-instagram:hover,
.bi-twitter:hover,
.bi-linkedin:hover {
  color: var(--secondary-light) !important;
  transform: scale(1.2);
}

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

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

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

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

footer a:hover {
  color: var(--secondary-color) !important;
}

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

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(44, 85, 48, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .col-lg-6,
  .col-lg-5,
  .col-lg-7,
  .col-lg-8,
  .col-lg-4,
  .col-lg-3,
  .col-lg-2,
  .col-lg-9,
  .col-lg-10 {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .offset-lg-1 {
    margin-left: 0;
  }
  
  .pe-lg-4,
  .ps-lg-4,
  .pe-lg-5,
  .ps-lg-5,
  .px-lg-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .text-lg-end {
    text-align: center !important;
  }
  
  .flex-lg-row-reverse {
    flex-direction: column !important;
  }
  
  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .col-md-4,
  .col-md-6,
  .col-md-3,
  .col-md-5,
  .col-md-7 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .fs-2 {
    font-size: 1.5rem !important;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .flex-md-row {
    flex-direction: column !important;
  }
  
  .p-md-5 {
    padding: 2rem !important;
  }
  
  .mb-md-0 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .col-sm-6,
  .col-6 {
    width: 100%;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  section {
    padding: 40px 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* Custom Scrollbar */
::-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);
}

/* Loading Spinner */
.spinner {
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top: 3px solid var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

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

/* Focus Styles */
*:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(44, 85, 48, 0.98) !important;
  box-shadow: 0 5px 20px var(--shadow) !important;
  padding: 0.5rem 0;
}

/* Hero Section Height */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Image Overlay */
.img-overlay {
  position: relative;
}

.img-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 85, 48, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.img-overlay:hover::after {
  opacity: 1;
}

/* Typography Enhancement */
p {
  color: var(--text-light) !important;
  line-height: 1.8;
}

/* Button Group */
.btn-group .btn {
  margin-right: 0.5rem;
}

.btn-group .btn:last-child {
  margin-right: 0;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
}