/* Forest Gold Architecture Studio Theme - CSS */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #2C5530;
  --secondary-color: #D4AF37;
  --primary-dark: #1a3320;
  --primary-light: #3d7043;
  --secondary-dark: #b8971f;
  --secondary-light: #e6c85c;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --bg-light: #f8f9fa;
  --bg-overlay: rgba(44, 85, 48, 0.9);
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

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

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

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

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

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.3) !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;
}

/* ===== HERO SECTION ===== */
.position-relative {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.position-relative::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" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%232C5530" opacity="0.1"/></svg>') repeat-x;
  opacity: 0.3;
  animation: wave 20s linear infinite;
}

@keyframes wave {
  0% { background-position: 0 0; }
  100% { background-position: 1200px 0; }
}

.display-3 {
  font-weight: 800 !important;
  color: var(--text-light) !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
  line-height: 1.2;
}

.lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.3rem !important;
  font-weight: 300;
  animation: fadeInUp 1.2s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

/* ===== BUTTONS ===== */
.btn {
  border-radius: 50px !important;
  padding: 0.8rem 2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition) !important;
  border-width: 2px !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 {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-outline-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

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

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

.btn-light:hover {
  background: var(--bg-light) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}

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

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

/* ===== CARDS ===== */
.card {
  border-radius: 15px !important;
  transition: var(--transition) !important;
  border: none !important;
  overflow: hidden;
  background: var(--text-light);
}

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

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

.card.shadow-lg {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.card.border-0 {
  background: var(--text-light);
}

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

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

/* ===== FORMS ===== */
.form-control,
.form-select {
  border-radius: 10px !important;
  border: 2px solid #e0e0e0 !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition) !important;
  background: var(--text-light) !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;
  background: var(--text-light) !important;
}

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

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

.form-check-input {
  border-color: var(--secondary-color) !important;
  background-color: var(--text-light) !important;
}

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

.form-check-label {
  color: var(--text-dark) !important;
  margin-left: 0.5rem;
}

/* ===== ICONS ===== */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-building,
.bi-geo-alt,
.bi-star,
.bi-heart-pulse,
.bi-briefcase,
.bi-person-check,
.bi-calendar-event,
.bi-wifi,
.bi-shield-check,
.bi-star-fill,
.bi-telephone,
.bi-envelope,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin,
.bi-house-heart,
.bi-people,
.bi-tree,
.bi-check-circle-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-send,
.bi-info-circle,
.bi-clipboard-data,
.bi-gear,
.bi-share,
.bi-cookie,
.bi-eye,
.bi-pencil,
.bi-trash,
.bi-x-circle,
.bi-download,
.bi-pause-circle,
.bi-lock,
.bi-globe,
.bi-arrow-repeat,
.bi-camera-video,
.bi-clock-history,
.bi-gift,
.bi-award,
.bi-stars,
.bi-sunrise,
.bi-sun,
.bi-moon-stars,
.bi-cup-hot,
.bi-droplet-fill,
.bi-p-circle,
.bi-bicycle,
.bi-bell-fill,
.bi-snow2,
.bi-tv,
.bi-snow,
.bi-droplet,
.bi-cup-straw,
.bi-speaker,
.bi-outlet,
.bi-bag {
  color: var(--secondary-color) !important;
  transition: var(--transition);
}

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

/* ===== SECTIONS ===== */
section {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== IMAGES ===== */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

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

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

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

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

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

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

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

.display-3 { font-size: 4rem !important; }
.display-4 { font-size: 3.5rem !important; }
.display-5 { font-size: 3rem !important; }
.display-6 { font-size: 2.5rem !important; }

.h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.h5 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
}

/* ===== TEXT UTILITIES ===== */
.text-white {
  color: var(--text-light) !important;
}

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

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

.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

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

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

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

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

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

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

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

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

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

/* ===== GAPS AND SPACING ===== */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.g-0 { --bs-gutter-x: 0 !important; --bs-gutter-y: 0 !important; }
.g-2 { --bs-gutter-x: 0.5rem !important; --bs-gutter-y: 0.5rem !important; }
.g-3 { --bs-gutter-x: 1rem !important; --bs-gutter-y: 1rem !important; }
.g-4 { --bs-gutter-x: 1.5rem !important; --bs-gutter-y: 1.5rem !important; }
.g-5 { --bs-gutter-x: 3rem !important; --bs-gutter-y: 3rem !important; }

/* ===== POSITIONING ===== */
.position-sticky {
  position: sticky !important;
  top: 100px;
  z-index: 1020;
}

.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== WIDTH & HEIGHT ===== */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* ===== PADDING ===== */
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !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; }
.ps-0 { padding-left: 0 !important; }
.ps-3 { padding-left: 1rem !important; }
.pe-lg-4 { padding-right: 1.5rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

/* ===== BADGE ===== */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

/* ===== ALERTS ===== */
.alert {
  border-radius: 10px !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ===== ACCORDION ===== */
.accordion {
  --bs-accordion-border-color: #e0e0e0;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.accordion-item {
  border: 1px solid #e0e0e0 !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow);
}

.accordion-header {
  margin-bottom: 0;
}

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

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

.accordion-button:not(.collapsed) .bi {
  color: var(--secondary-color) !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='%232C5530'%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: 1.5rem !important;
  background-color: var(--bg-light) !important;
  color: var(--text-dark) !important;
  line-height: 1.7;
}

.accordion-collapse.show {
  border-top: 2px solid var(--secondary-color) !important;
}

/* ===== TABLE ===== */
.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table {
  margin-bottom: 0 !important;
  color: var(--text-dark) !important;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light) !important;
}

.table thead th {
  padding: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
}

.table tbody tr {
  transition: var(--transition);
}

.table-hover tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
  transform: translateX(5px);
}

.table tbody td {
  padding: 1rem !important;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0 !important;
}

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

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

.list-unstyled a {
  color: var(--text-dark) !important;
  text-decoration: none !important;
  transition: var(--transition);
  display: inline-block;
}

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

/* ===== NAV (GENERIC) ===== */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* ===== AMENITY CARDS ===== */
.amenity-card {
  padding: 2rem;
  background: var(--text-light);
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  height: 100%;
}

.amenity-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.amenity-card .bi {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

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

.amenity-card p {
  color: var(--text-dark);
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 50%, var(--secondary-color) 100%);
}

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

footer .bi {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  transition: var(--transition);
}

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

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--text-dark) !important;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  z-index: 1025;
  font-size: 1.5rem;
}

#scrollTop:hover {
  background: var(--secondary-dark);
  color: var(--text-light) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

#scrollTop.show {
  display: flex !important;
  animation: fadeInUp 0.5s ease;
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-lg-1 { margin-left: 8.33333333%; }
  
  .flex-lg-row-reverse { flex-direction: row-reverse !important; }
  
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  
  .text-lg-end { text-align: right !important; }
  .text-lg-start { text-align: left !important; }
  
  .mt-lg-0 { margin-top: 0 !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
  
  .mb-md-0 { margin-bottom: 0 !important; }
  
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  
  .flex-sm-row { flex-direction: row !important; }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-dark);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .display-3 { font-size: 2.5rem !important; }
  .display-4 { font-size: 2.2rem !important; }
  .display-5 { font-size: 2rem !important; }
  .display-6 { font-size: 1.8rem !important; }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .position-relative {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .display-3 { font-size: 2rem !important; }
  .display-4 { font-size: 1.8rem !important; }
  .display-5 { font-size: 1.6rem !important; }
  .display-6 { font-size: 1.4rem !important; }
  
  .lead { font-size: 1.1rem !important; }
  
  .fs-1 { font-size: 2rem !important; }
  .fs-2 { font-size: 1.8rem !important; }
  .fs-3 { font-size: 1.5rem !important; }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .col-12 { width: 100% !important; }
  .col-6 { width: 50% !important; }
  .col-4 { width: 33.33333333% !important; }
  
  #scrollTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
  }
}

/* ===== CUSTOM 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);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.animate-slide-left {
  animation: slideInLeft 1s ease;
}

.animate-slide-right {
  animation: slideInRight 1s ease;
}

.animate-scale {
  animation: scaleIn 0.8s ease;
}

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

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

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

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

/* ===== UTILITIES ===== */
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.m-3 { margin: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  #scrollTop,
  footer {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}