/* Mountain Twilight Architecture Studio - Custom Styles */

:root {
  --primary-color: #2C3E50;
  --secondary-color: #E67E22;
  --twilight-dark: #1a252f;
  --twilight-medium: #34495e;
  --mountain-gray: #7f8c8d;
  --sunset-orange: #d35400;
  --light-bg: #ecf0f1;
  --white: #ffffff;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
.display-3, .display-4, .display-5 {
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

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

.navbar.fixed-top {
  z-index: 1050;
}

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

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

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

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

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

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3) !important;
  padding: 0.5rem 0.75rem;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--twilight-dark) 0%, var(--primary-color) 50%, var(--twilight-medium) 100%);
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 100 L50 0 L100 100 Z" fill="rgba(230,126,34,0.1)"/%3E%3C/svg%3E') repeat;
  opacity: 0.3;
  animation: mountainMove 20s linear infinite;
}

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

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

.hero-section .display-3 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease;
}

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

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) ease;
  border: none;
  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(--white) !important;
  border: 2px solid var(--secondary-color) !important;
  padding: 0.75rem 2rem !important;
}

.btn-lg:hover {
  background-color: var(--sunset-orange) !important;
  border-color: var(--sunset-orange) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4) !important;
}

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

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

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

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

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

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

.filter-btn {
  margin: 0.25rem;
  transition: all var(--transition-speed) ease;
}

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

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.2) !important;
}

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

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

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

.card.shadow-lg {
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15) !important;
}

.card.shadow {
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1) !important;
}

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

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
  border: none !important;
}

/* Room Cards */
.room-card {
  position: relative;
  height: 100%;
  cursor: pointer;
}

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

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

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(230, 126, 34, 0.9));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

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

.room-item {
  transition: all var(--transition-speed) ease;
}

/* Forms */
.form-control, .form-select {
  border: 2px solid var(--light-bg) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-speed) ease;
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
  outline: none;
}

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

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

.form-check-input:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.15) !important;
}

.form-check-label {
  color: var(--primary-color) !important;
}

.input-group-text {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border: none !important;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block !important;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Progress Bar */
.progress {
  height: 8px !important;
  border-radius: 10px !important;
  background-color: var(--light-bg) !important;
}

.progress-bar {
  background-color: var(--secondary-color) !important;
  transition: width 0.5s ease;
}

/* Badges */
.badge {
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

.bg-success {
  background-color: #27ae60 !important;
}

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

.bg-info {
  background-color: #3498db !important;
}

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

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

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

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

.bi-door-open, .bi-cup-hot, .bi-heart-pulse, 
.bi-people, .bi-compass, .bi-concierge-bell,
.bi-building, .bi-star-fill, .bi-facebook,
.bi-instagram, .bi-twitter, .bi-linkedin,
.bi-geo-alt, .bi-telephone, .bi-envelope,
.bi-check-circle-fill, .bi-award-fill,
.bi-chevron-down, .bi-chevron-left, .bi-chevron-right,
.bi-camera, .bi-person, .bi-wifi, .bi-tv,
.bi-arrow-right, .bi-fire, .bi-moisture,
.bi-controller, .bi-cup-straw, .bi-droplet,
.bi-egg-fried, .bi-house-door, .bi-square,
.bi-wind, .bi-laptop, .bi-egg, .bi-wine-bottle,
.bi-telephone-fill, .bi-envelope-fill, .bi-geo-alt-fill,
.bi-info-circle, .bi-send, .bi-chat-dots-fill,
.bi-chat-left-text-fill, .bi-clock, .bi-signpost-2,
.bi-airplane-fill, .bi-car-front-fill, .bi-bus-front-fill,
.bi-geo-fill, .bi-search, .bi-download, .bi-collection,
.bi-gear, .bi-share, .bi-cookie, .bi-shield-check,
.bi-lock-fill, .bi-file-lock-fill, .bi-server,
.bi-arrow-repeat, .bi-person-check, .bi-clock-history,
.bi-grid-3x3-gap, .bi-list-ul, .bi-arrow-left {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

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

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

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

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

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

.text-success {
  color: #27ae60 !important;
}

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

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

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

.min-vh-100 {
  min-height: 100vh !important;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  animation: fadeInLeft 0.8s ease;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--sunset-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

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

/* Fade In Elements */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion */
.accordion-item {
  border: none !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

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

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

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

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

.accordion-button.collapsed::after {
  filter: none;
}

.accordion-body {
  padding: 1.5rem !important;
  background-color: var(--light-bg) !important;
  color: var(--primary-color) !important;
}

.accordion-collapse {
  border: none !important;
}

/* Tables */
.table {
  color: var(--primary-color) !important;
}

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

.table thead {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.table tbody tr:hover {
  background-color: rgba(230, 126, 34, 0.1) !important;
}

/* List Groups */
.list-group-item {
  border: 1px solid var(--light-bg) !important;
  color: var(--primary-color) !important;
  transition: all var(--transition-speed) ease;
}

.list-group-item:hover {
  background-color: rgba(230, 126, 34, 0.1) !important;
  transform: translateX(5px);
}

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

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

/* Sticky Elements */
.sticky-top {
  position: sticky !important;
  top: 80px;
  z-index: 1020;
}

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

.position-sticky {
  position: sticky !important;
  bottom: 20px;
  right: 20px;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed) ease;
}

.faq-item:hover {
  transform: translateX(10px);
}

/* Floating Chat Button */
.position-sticky.bottom-0.end-0 {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 1040;
}

.position-sticky .btn {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4); }
  50% { box-shadow: 0 10px 40px rgba(230, 126, 34, 0.6); }
  100% { box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4); }
}

/* Scroll Down Arrow */
.bottom-0.start-50.translate-middle-x {
  animation: bounce 2s infinite;
}

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

/* Image Styles */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

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

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

.shadow-sm {
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-shrink-0 {
  flex-shrink: 0 !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-end {
  justify-content: flex-end !important;
}

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

.justify-content-lg-end {
  justify-content: flex-end !important;
}

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

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

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

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

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

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

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

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

/* Spacing Utilities */
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 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; }

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

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

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

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

.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; }
.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; }
.mb-md-0 { margin-bottom: 0 !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; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }
.mt-lg-0 { margin-top: 0 !important; }

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

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

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

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

/* Border Utilities */
.border-0 { border: none !important; }
.border-bottom { border-bottom: 1px solid var(--light-bg) !important; }

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(26, 37, 47, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-section .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .order-1 { order: 1 !important; }
  .order-2 { order: 2 !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
}

@media (max-width: 767.98px) {
  .hero-section .display-3 {
    font-size: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.625rem 1.5rem !important;
    font-size: 1rem;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .timeline-container {
    padding-left: 1rem;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .position-sticky .btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .hero-section .display-3 {
    font-size: 1.75rem !important;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1rem !important;
  }
}

/* Bootstrap Grid Override */
.container, .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

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

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  padding-left: 15px;
  padding-right: 15px;
}

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

.g-3 > * {
  padding: 0.75rem;
}

.g-4 > * {
  padding: 1rem;
}

.g-5 > * {
  padding: 1.5rem;
}

/* Print Styles */
@media print {
  .navbar, .btn, .form-control, .form-select {
    display: none !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
  }
}

/* Accessibility */
.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;
}

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

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

/* Loading Animation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading {
  animation: rotate 1s linear infinite;
}

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

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

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