/* Imperial Crimson & Shadow - Architecture Studio Theme */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --accent-dark: #B71C1C;
  --accent-light: #EF5350;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --shadow-color: rgba(211, 47, 47, 0.3);
  --transition-speed: 0.3s;
}

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

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

/* ===== NAVBAR STYLES ===== */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1A1A1A 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(33, 33, 33, 0.98) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.8rem;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
}

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

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

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

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

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !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='%23D32F2F' 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, rgba(33, 33, 33, 0.95) 0%, rgba(211, 47, 47, 0.85) 100%),
              url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h50v50H0zM50 50h50v50H50z" fill="%23000" fill-opacity="0.1"/%3E%3C/svg%3E');
  background-size: cover, 40px 40px;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(211, 47, 47, 0.2) 0%, transparent 50%);
  animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-section .display-1 {
  font-weight: 800;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
  color: var(--text-light) !important;
  letter-spacing: 2px;
}

.hero-section .display-6 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s ease-out;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 300;
  letter-spacing: 1px;
}

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

/* ===== BUTTONS ===== */
.btn {
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.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-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%) !important;
  color: var(--text-light) !important;
  box-shadow: 0 5px 20px var(--shadow-color);
}

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

.btn-outline-light {
  border: 2px solid 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-light {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
}

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

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

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

.btn-danger:hover {
  background: var(--accent-dark) !important;
  color: var(--text-light) !important;
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

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

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  background: var(--text-light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.card-body {
  padding: 2rem;
}

.program-card {
  border-radius: 20px;
  transition: all 0.4s ease;
  background: var(--text-light);
  height: 100%;
  border: 2px solid transparent;
}

.program-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.program-image {
  height: 250px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.program-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.program-content {
  padding: 2rem;
}

.program-description {
  color: var(--text-dark);
  line-height: 1.8;
}

.program-details {
  background: #F5F5F5;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

/* ===== ICONS ===== */
.bi {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.bi-chevron-down {
  animation: bounce 2s infinite;
  font-size: 2rem;
}

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

.bi-lightning-charge-fill,
.bi-fire,
.bi-trophy-fill,
.bi-shield-fill-check,
.bi-person-check-fill,
.bi-heart-pulse-fill,
.bi-hammer,
.bi-people,
.bi-trophy {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ===== IMAGES ===== */
.img-fluid {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-speed) ease;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-color);
}

/* ===== TYPOGRAPHY ===== */
.display-1 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.display-3 {
  font-weight: 700;
  color: var(--primary-color);
}

.display-4 {
  font-weight: 700;
  color: var(--text-dark);
}

.display-5 {
  font-weight: 600;
  color: var(--text-dark);
}

.h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.8;
}

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

.text-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

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

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

.text-decoration-none {
  text-decoration: none !important;
  transition: all var(--transition-speed) ease;
}

.text-decoration-none:hover {
  color: var(--primary-color) !important;
}

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

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

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

.small {
  font-size: 0.875rem;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background: var(--text-light);
  color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !important;
  background: var(--text-light);
  color: var(--text-dark);
}

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

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

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !important;
}

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

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

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

.list-unstyled a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

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

/* ===== BADGES ===== */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

/* ===== SHADOWS ===== */
.shadow-lg {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ===== BORDERS ===== */
.rounded {
  border-radius: 15px !important;
}

/* ===== ACCORDION ===== */
.accordion {
  border-radius: 15px;
  overflow: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.accordion-button {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1A1A1A 100%) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%) !important;
  color: var(--text-light) !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !important;
  border: none;
}

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

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

.accordion-body {
  padding: 1.5rem;
  background: var(--text-light);
  color: var(--text-dark);
  line-height: 1.8;
}

.accordion-collapse {
  border: none;
}

/* ===== NAVIGATION (SIDEBAR) ===== */
.nav {
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-dark) !important;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  border-radius: 8px;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(211, 47, 47, 0.1);
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.privacy-nav-link {
  color: var(--text-dark) !important;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  border-radius: 8px;
  border-left: 3px solid transparent;
  text-decoration: none;
  display: block;
}

.privacy-nav-link:hover,
.privacy-nav-link.active {
  background: rgba(211, 47, 47, 0.1);
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
}

.privacy-content {
  background: var(--text-light);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===== STICKY ELEMENTS ===== */
.sticky-top {
  position: sticky;
  top: 100px;
  z-index: 100;
}

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

/* ===== UTILITIES ===== */
.min-vh-100 {
  min-height: 100vh !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-lg-start {
  text-align: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-md-0 {
  margin-bottom: 0 !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== RESPONSIVE GRID ===== */
.container,
.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;
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(211, 47, 47, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

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

/* ===== SOCIAL ICONS ===== */
.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter-x {
  font-size: 1.5rem;
  color: var(--text-light) !important;
  transition: all var(--transition-speed) ease;
  display: inline-block;
  margin: 0 0.5rem;
}

.bi-facebook:hover {
  color: #1877F2 !important;
  transform: translateY(-3px) scale(1.1);
}

.bi-instagram:hover {
  color: #E4405F !important;
  transform: translateY(-3px) scale(1.1);
}

.bi-youtube:hover {
  color: #FF0000 !important;
  transform: translateY(-3px) scale(1.1);
}

.bi-twitter-x:hover {
  color: #1DA1F2 !important;
  transform: translateY(-3px) scale(1.1);
}

/* ===== CONTACT ICONS ===== */
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-clock-fill,
.bi-people-fill {
  color: var(--primary-color) !important;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* ===== STATISTICS SECTION ===== */
.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

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

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all var(--transition-speed) ease;
}

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

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Mobile First - Base styles above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .pt-md-6 {
    padding-top: 4rem !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .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%;
  }
  
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  
  .text-lg-start {
    text-align: left !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

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

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

/* Mobile specific adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(33, 33, 33, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .hero-section .display-1 {
    font-size: 2.5rem;
  }
  
  .hero-section .display-6 {
    font-size: 1.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem;
  }
  
  .sticky-top {
    position: relative;
    top: 0;
  }
  
  .privacy-content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 767px) {
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .display-1 {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ===== 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: 0;
}

*:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-dark) 100%);
  border-radius: 6px;
}

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

/* ===== SELECTION ===== */
::selection {
  background: var(--primary-color);
  color: var(--text-light);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--text-light);
}