/* Forest Gold Architecture Studio - Custom Styles */

:root {
  --primary-color: #2C5F2D;
  --secondary-color: #D4AF37;
  --primary-dark: #1a3a1b;
  --primary-light: #3d7f3f;
  --secondary-dark: #b89520;
  --secondary-light: #e5c868;
  --text-dark: #1a1a1a;
  --text-light: #f8f9fa;
  --bg-light: #f5f5f0;
  --shadow: rgba(44, 95, 45, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Typography */
.display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark) !important;
}

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

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

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

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

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

.navbar-brand.fw-bold {
  font-weight: 800 !important;
}

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

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  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: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem 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;
}

/* Buttons */
.btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
  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: 1rem 2.5rem !important;
  font-size: 1.1rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--text-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

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

.btn-outline-success:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.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;
  border-color: var(--secondary-color) !important;
  color: var(--text-dark) !important;
}

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

.btn-outline-dark:hover {
  background: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
  color: #ffffff !important;
}

/* Carousel */
.carousel {
  position: relative;
}

.carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-inner {
  border-radius: 0;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.7) 0%, rgba(26, 58, 27, 0.5) 100%);
  z-index: 1;
}

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

.carousel-caption {
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
}

.carousel-caption .display-3,
.carousel-caption .display-4 {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.carousel-caption .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}

.carousel-caption .btn {
  animation: fadeInUp 1.4s ease-out;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color) !important;
  border: 2px solid #ffffff;
  opacity: 0.6;
  transition: var(--transition);
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(44, 95, 45, 0.8);
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

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

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

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

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

.card-body {
  padding: 2rem;
}

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

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

.card-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

/* Forms */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: #ffffff;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
  background-color: #ffffff;
  color: var(--text-dark) !important;
}

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

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

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

.form-control::placeholder {
  color: #999999;
  opacity: 1;
}

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

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

.bi-bell-fill,
.bi-car-front-fill,
.bi-calendar-event-fill,
.bi-info-circle,
.bi-telephone,
.bi-envelope,
.bi-clock-history,
.bi-calendar-check,
.bi-building,
.bi-geo-alt,
.bi-wifi,
.bi-cup-hot,
.bi-droplet,
.bi-snow2,
.bi-shield-check,
.bi-clock,
.bi-x-circle,
.bi-car-front,
.bi-heart,
.bi-people,
.bi-peace,
.bi-clock-fill,
.bi-calendar-check-fill,
.bi-info-circle-fill,
.bi-droplet-half,
.bi-flower1,
.bi-moisture,
.bi-heart-pulse,
.bi-person-raised-hand,
.bi-wind,
.bi-water,
.bi-cup-hot-fill,
.bi-airplane-fill,
.bi-shop,
.bi-printer,
.bi-newspaper,
.bi-bag-check {
  color: var(--primary-color) !important;
}

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

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

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

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

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

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%) !important;
}

/* Text Colors */
.text-white {
  color: #ffffff !important;
}

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

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

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

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

/* Spacing */
.py-5 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-3 { padding-top: 2rem !important; padding-bottom: 2rem !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; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }
.pt-5 { padding-top: 4rem !important; }
.pb-3 { padding-bottom: 2rem !important; }
.pb-4 { padding-bottom: 3rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-lg-0 { margin-top: 0 !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: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.mb-md-0 { margin-bottom: 0 !important; }
.my-4 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 2rem !important; }
.ms-auto { margin-left: auto !important; }
.ms-md-3 { margin-left: 1rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Gaps */
.g-0 { gap: 0 !important; }
.g-3 { gap: 1.5rem !important; }
.g-4 { gap: 2rem !important; }
.g-5 { gap: 3rem !important; }
.gap-3 { gap: 1.5rem !important; }
.gap-4 { gap: 2rem !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-sticky { position: sticky !important; }
.position-fixed { position: fixed !important; }
.fixed-top { position: fixed !important; top: 0 !important; }
.sticky-top { position: sticky !important; top: 0 !important; z-index: 1020; }

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }

/* Opacity */
.opacity-75 { opacity: 0.75 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-25 { opacity: 0.25 !important; }

/* Shadows */
.shadow { box-shadow: 0 0.5rem 1rem rgba(44, 95, 45, 0.15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(44, 95, 45, 0.175) !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(44, 95, 45, 0.075) !important; }

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

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

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

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

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

/* Social Icons */
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin {
  font-size: 1.5rem;
  color: #ffffff !important;
  transition: var(--transition);
}

.bi-facebook:hover { color: var(--secondary-color) !important; }
.bi-instagram:hover { color: var(--secondary-color) !important; }
.bi-twitter:hover { color: var(--secondary-color) !important; }
.bi-linkedin:hover { color: var(--secondary-color) !important; }

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

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

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

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

/* Hover Effects */
.hover-zoom {
  overflow: hidden;
  border-radius: 15px;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

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

/* Privacy & Policy Sections */
.privacy-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  padding: 6rem 0 4rem;
  color: #ffffff;
  text-align: center;
}

.privacy-container {
  background: #ffffff;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.privacy-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2,
.policy-section h3 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.last-updated {
  background: var(--secondary-color);
  color: var(--text-dark) !important;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: #ffffff !important;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  border-left: 5px solid var(--secondary-color);
}

.highlight-box h4,
.highlight-box p {
  color: #ffffff !important;
}

.contact-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
  margin: 2rem 0;
}

.btn-back-home {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border: none;
  padding: 0.75rem 2rem;
}

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

/* Table of Contents Sidebar */
.toc-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
}

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

.toc-sidebar .list-unstyled a {
  color: var(--text-dark) !important;
  padding: 0.5rem 0;
  display: block;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: var(--transition);
}

.toc-sidebar .list-unstyled a:hover,
.toc-sidebar .list-unstyled a.active {
  color: var(--primary-color) !important;
  border-left-color: var(--secondary-color);
  background: rgba(44, 95, 45, 0.05);
  text-decoration: none;
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  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.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.animate-fadeIn { animation: fadeIn 1s ease-out; }
.animate-fadeInUp { animation: fadeInUp 1s ease-out; }
.animate-fadeInDown { animation: fadeInDown 1s ease-out; }
.animate-slideInLeft { animation: slideInLeft 1s ease-out; }
.animate-slideInRight { animation: slideInRight 1s ease-out; }
.animate-scaleIn { animation: scaleIn 0.5s ease-out; }

/* Scroll Animation Trigger */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 58, 27, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
  
  .fs-1 { font-size: 2rem !important; }
  .fs-3 { font-size: 1.5rem !important; }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .card-body.p-5 {
    padding: 2rem !important;
  }
  
  .privacy-container {
    padding: 2rem;
  }
  
  .privacy-hero {
    padding: 4rem 0 3rem;
  }
}

@media (max-width: 767.98px) {
  .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .fs-1 { font-size: 1.75rem !important; }
}

@media (max-width: 575.98px) {
  .carousel-item {
    height: 50vh;
    min-height: 350px;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .display-4 {
    font-size: 1.5rem !important;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .privacy-container {
    padding: 1.5rem;
  }
  
  .fs-1 { font-size: 1.5rem !important; }
  .fs-3 { font-size: 1.25rem !important; }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.d-lg-block { display: block !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }
.flex-lg-row { flex-direction: row !important; }
.flex-lg-row-reverse { flex-direction: row-reverse !important; }
.flex-md-row { flex-direction: row !important; }
.flex-sm-row { flex-direction: row !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-md-center { align-items: center !important; }
.align-self-start { align-self: flex-start !important; }
.text-center { text-align: center !important; }
.text-lg-end { text-align: end !important; }
.text-md-start { text-align: start !important; }
.text-md-end { text-align: end !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.fw-bold { font-weight: 700 !important; }
.small { font-size: 0.875rem !important; }
.container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }

/* Responsive Grid Adjustments */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .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%; }
  .mt-lg-0 { margin-top: 0 !important; }
  .text-md-start { text-align: start !important; }
  .text-md-end { text-align: end !important; }
}

@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-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .offset-lg-1 { margin-left: 8.333333%; }
  .offset-lg-2 { margin-left: 16.666667%; }
  .ps-lg-5 { padding-left: 3rem !important; }
  .pe-lg-5 { padding-right: 3rem !important; }
  .p-lg-5 { padding: 3rem !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .d-lg-block { display: block !important; }
  .flex-lg-row { flex-direction: row !important; }
  .flex-lg-row-reverse { flex-direction: row-reverse !important; }
}

/* Additional Utility */
.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

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

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

/* Print Styles */
@media print {
  .navbar,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  .card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}