/* ============================================
   Architectural Studio - Battle Crimson & Iron Slate Theme
   Primary: #C62828 | Secondary: #37474F
   ============================================ */

:root {
  --primary-color: #C62828;
  --secondary-color: #37474F;
  --primary-dark: #8E0000;
  --primary-light: #FF5F52;
  --secondary-dark: #1E272E;
  --secondary-light: #546E7A;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #263238;
  --text-dark: #212121;
  --text-light: #757575;
  --shadow-sm: 0 2px 4px rgba(198, 40, 40, 0.1);
  --shadow-md: 0 4px 12px rgba(198, 40, 40, 0.15);
  --shadow-lg: 0 8px 24px rgba(198, 40, 40, 0.2);
  --transition-speed: 0.3s;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  letter-spacing: -1px;
  color: var(--text-dark) !important;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-speed) ease;
}

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

.navbar-brand {
  font-size: 1.75rem !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.nav-link:hover {
  color: var(--white) !important;
  background-color: rgba(198, 40, 40, 0.2);
}

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

.nav-link.active {
  color: var(--white) !important;
  background-color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  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-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

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

.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-outline-light {
  border-color: var(--white) !important;
  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-danger {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.position-relative.overflow-hidden {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.position-absolute.w-100.h-100 {
  opacity: 0.15;
  background-blend-mode: overlay;
}

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

.min-vh-75 {
  min-height: 75vh;
}

.d-flex.align-items-center {
  position: relative;
  z-index: 2;
}

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

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white .display-1,
.text-white .display-2,
.text-white .display-3,
.text-white .display-4,
.text-white .display-5 {
  color: var(--white) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.text-white p,
.text-white .fs-4,
.text-white .fs-5 {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  letter-spacing: 0.5px;
}

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

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

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

.bg-warning {
  background-color: #FFA000 !important;
  color: var(--text-dark) !important;
}

.bg-success {
  background-color: #2E7D32 !important;
  color: var(--white) !important;
}

.bg-info {
  background-color: #0277BD !important;
  color: var(--white) !important;
}

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

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

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

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

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

.text-warning {
  color: #FFA000 !important;
}

/* ============================================
   CARDS
   ============================================ */

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

.card.border-0.shadow {
  box-shadow: var(--shadow-md) !important;
}

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

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

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

.card-body {
  padding: 2rem;
}

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

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

.program-card {
  border-left: 4px solid var(--primary-color) !important;
  transition: all var(--transition-speed) ease;
}

.program-card:hover {
  border-left-width: 8px !important;
  box-shadow: var(--shadow-lg) !important;
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.card-details {
  background-color: var(--light-gray);
  padding: 1rem;
}

/* ============================================
   ICONS
   ============================================ */

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

.bi-trophy-fill,
.bi-people-fill,
.bi-graph-up-arrow,
.bi-check-circle-fill,
.bi-star-fill,
.bi-shield-fill-check,
.bi-lightning-charge-fill,
.bi-fire,
.bi-award {
  color: var(--primary-color) !important;
}

.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter-x,
.bi-twitter {
  font-size: 1.5rem;
  transition: all var(--transition-speed) ease;
}

.bi-facebook:hover { color: #1877F2 !important; }
.bi-instagram:hover { color: #E4405F !important; }
.bi-youtube:hover { color: #FF0000 !important; }
.bi-twitter-x:hover,
.bi-twitter:hover { color: #1DA1F2 !important; }

/* ============================================
   STATS & FEATURES
   ============================================ */

.text-center.p-4 {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
}

.text-center.p-4:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.display-4.mb-3 {
  font-size: 3.5rem !important;
  color: var(--primary-color) !important;
  font-weight: 800 !important;
}

/* ============================================
   IMAGES
   ============================================ */

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

.rounded {
  border-radius: calc(var(--border-radius) * 2) !important;
}

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

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

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

/* ============================================
   FORMS
   ============================================ */

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

.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  background-color: var(--white);
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25) !important;
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-check-input {
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  width: 1.25rem;
  height: 1.25rem;
}

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

.form-check-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25) !important;
}

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

/* ============================================
   ALERTS
   ============================================ */

.alert {
  border-radius: var(--border-radius);
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-danger {
  background-color: rgba(198, 40, 40, 0.1) !important;
  color: var(--primary-dark) !important;
  border-left: 4px solid var(--primary-color);
}

.alert-warning {
  background-color: rgba(255, 160, 0, 0.1) !important;
  color: #E65100 !important;
  border-left: 4px solid #FFA000;
}

.alert-info {
  background-color: rgba(2, 119, 189, 0.1) !important;
  color: #01579B !important;
  border-left: 4px solid #0277BD;
}

.alert-success {
  background-color: rgba(46, 125, 50, 0.1) !important;
  color: #1B5E20 !important;
  border-left: 4px solid #2E7D32;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
  color: var(--white) !important;
  padding: 4rem 0 2rem;
}

footer h5,
footer h6 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

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

.text-decoration-none:hover {
  color: var(--primary-light) !important;
  padding-left: 5px;
}

footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   CAROUSEL
   ============================================ */

.carousel {
  border-radius: calc(var(--border-radius) * 2);
  overflow: hidden;
}

.carousel-inner {
  border-radius: calc(var(--border-radius) * 2);
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  border: 2px solid var(--white);
  opacity: 0.5;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

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

/* ============================================
   PRIVACY PAGE
   ============================================ */

.position-sticky {
  position: sticky !important;
  top: 100px;
  align-self: flex-start;
}

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

.privacy-nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--light-gray);
  border-left-color: var(--primary-color);
  padding-left: 1.5rem;
}

.privacy-nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(198, 40, 40, 0.1);
  border-left-color: var(--primary-color);
  font-weight: 600;
}

.privacy-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E0E0E0;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

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

.g-0 {
  gap: 0 !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;
}

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

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

.p-2 {
  padding: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-block {
  display: block !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: 1px solid #E0E0E0 !important;
}

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

.border-top {
  border-top: 1px solid #E0E0E0 !important;
}

.small {
  font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

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

.animate-scale {
  animation: scaleIn 0.5s ease-out forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--secondary-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 2.5rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .fs-1 {
    font-size: 2.5rem !important;
  }
  
  .fs-2 {
    font-size: 2rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .position-sticky {
    position: relative !important;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .fs-2 {
    font-size: 1.75rem !important;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .fs-4 {
    font-size: 1.25rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .display-2 {
    font-size: 1.75rem !important;
  }
  
  .display-3 {
    font-size: 1.5rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.35rem !important;
  }
  
  .fs-1 {
    font-size: 1.75rem !important;
  }
  
  .fs-2 {
    font-size: 1.5rem !important;
  }
  
  .fs-3 {
    font-size: 1.35rem !important;
  }
  
  .btn-lg {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.9rem !important;
  }
  
  .card-img-top {
    height: 160px;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .p-4 {
    padding: 1rem !important;
  }
  
  .p-5 {
    padding: 1.5rem !important;
  }
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .card {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .card-title {
    color: var(--white) !important;
  }
  
  .card-text {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .form-control,
  .form-select {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-color: var(--secondary-light);
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .navbar,
  .btn,
  footer,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .card,
  .shadow,
  .shadow-sm,
  .shadow-lg {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}