/* Midnight Warrior Architecture Studio Theme */

:root {
  --primary-color: #2D1B69;
  --secondary-color: #FF6B35;
  --dark-accent: #1a0f3d;
  --light-accent: #f8f9fa;
  --warrior-gradient: linear-gradient(135deg, #2D1B69 0%, #1a0f3d 100%);
  --midnight-overlay: rgba(45, 27, 105, 0.85);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #0a0a0a !important;
  color: #ffffff !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Enhancements */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9) !important;
}

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

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

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

/* Navigation Styling */
.navbar {
  background: var(--warrior-gradient) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(45, 27, 105, 0.3);
  transition: all 0.4s ease;
  padding: 1rem 0 !important;
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(45, 27, 105, 0.98) !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  padding: 0.7rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 60%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B35' 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(--dark-accent) 0%, var(--primary-color) 50%, #000000 100%);
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 27, 105, 0.3) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-section .position-absolute {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3)); }
  100% { filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6)); }
}

.hero-section .img-fluid {
  border: 4px solid var(--secondary-color);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4),
              0 0 40px rgba(45, 27, 105, 0.6);
  animation: floatImage 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Buttons */
.btn {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px !important;
  transition: all 0.4s ease !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

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

.btn-lg {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-lg:hover {
  background: #ff5722 !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-outline-light {
  border: 3px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  border-color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* Sections */
section {
  position: relative;
  padding: 5rem 0;
  background: #0a0a0a;
}

section:nth-child(even) {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--dark-accent) 50%, #0a0a0a 100%);
}

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

/* Stats Section */
.col-md-3 .p-4 {
  background: var(--warrior-gradient);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 27, 105, 0.4);
}

.col-md-3 .p-4:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.display-4 {
  color: var(--secondary-color) !important;
  font-weight: 900 !important;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Service Cards */
.col-lg-4, .col-md-6 {
  transition: transform 0.3s ease;
}

.col-lg-4 .p-4, .col-md-6 .p-4 {
  background: rgba(45, 27, 105, 0.4);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.col-lg-4:hover .p-4, .col-md-6:hover .p-4 {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  background: rgba(45, 27, 105, 0.7);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.bi-lightning-charge-fill,
.bi-person-arms-up,
.bi-heart-pulse-fill,
.bi-trophy-fill,
.bi-egg-fried,
.bi-people-fill,
.bi-lightning-charge,
.bi-person-check,
.bi-shield-check {
  color: var(--secondary-color) !important;
  font-size: 3rem !important;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.col-lg-4:hover .bi-lightning-charge-fill,
.col-lg-4:hover .bi-person-arms-up,
.col-lg-4:hover .bi-heart-pulse-fill,
.col-lg-4:hover .bi-trophy-fill,
.col-md-6:hover .bi-egg-fried,
.col-md-6:hover .bi-people-fill {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 15px var(--secondary-color));
}

.h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}

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

.list-unstyled li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.list-unstyled li:hover {
  color: #ffffff !important;
  transform: translateX(10px);
}

.bi-check-circle-fill {
  color: var(--secondary-color) !important;
  font-size: 1.3rem !important;
}

.bi-check2 {
  color: var(--secondary-color) !important;
}

/* Forms */
.form-control, .form-select {
  background: rgba(45, 27, 105, 0.3) !important;
  border: 2px solid rgba(255, 107, 53, 0.3) !important;
  color: #ffffff !important;
  padding: 0.875rem 1.25rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  font-size: 1rem !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:focus, .form-select:focus {
  background: rgba(45, 27, 105, 0.5) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25) !important;
  transform: translateY(-2px);
}

.form-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
  font-size: 1.05rem !important;
}

.form-check-input {
  background-color: rgba(45, 27, 105, 0.4) !important;
  border: 2px solid rgba(255, 107, 53, 0.5) !important;
  width: 1.5em !important;
  height: 1.5em !important;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25) !important;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-left: 0.5rem !important;
}

.invalid-feedback {
  color: #ff4444 !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

/* Alerts */
.alert {
  border-radius: 15px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: 600 !important;
}

.alert-success {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

/* Cards */
.card {
  background: rgba(45, 27, 105, 0.4) !important;
  border: 2px solid rgba(255, 107, 53, 0.3) !important;
  border-radius: 20px !important;
  transition: all 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color) !important;
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

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

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

/* Transformation Cards */
.transformation-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.transformation-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.5);
}

.before-after-container {
  position: relative;
  overflow: hidden;
}

.after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.before-after-container:hover .after-img {
  opacity: 1;
}

/* Badges */
.badge {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  letter-spacing: 0.5px;
}

/* Progress Bars */
.progress {
  height: 1.5rem !important;
  background: rgba(45, 27, 105, 0.3) !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  transition: width 1.5s ease !important;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Accordion */
.accordion {
  border: none !important;
}

.accordion-item {
  background: rgba(45, 27, 105, 0.3) !important;
  border: 2px solid rgba(255, 107, 53, 0.2) !important;
  border-radius: 15px !important;
  margin-bottom: 1rem !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(45, 27, 105, 0.5) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.accordion-button:not(.collapsed) {
  background: var(--warrior-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25) !important;
}

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

.accordion-body {
  background: rgba(26, 15, 61, 0.4) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 1.5rem !important;
  border-top: 2px solid rgba(255, 107, 53, 0.2);
}

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

/* Icons */
.bi {
  transition: all 0.3s ease;
}

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

.bi-chevron-down,
.bi-chevron-right {
  color: var(--secondary-color) !important;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

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

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

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

/* Shadows */
.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Rounded Elements */
.rounded {
  border-radius: 15px !important;
}

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

/* Text Utilities */
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-lg-end { text-align: right !important; }
.text-md-start { text-align: left !important; }
.text-md-end { text-align: right !important; }

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

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

/* Footer */
footer {
  background: var(--warrior-gradient) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 3rem 0 1rem 0;
  border-top: 3px solid var(--secondary-color);
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-calendar-check,
.bi-chat-dots,
.bi-map,
.bi-send-fill,
.bi-clock,
.bi-people,
.bi-award,
.bi-lock-fill,
.bi-person-check-fill,
.bi-calendar-week,
.bi-fire,
.bi-mortarboard-fill,
.bi-lightning-fill,
.bi-star-fill {
  color: var(--secondary-color) !important;
}

/* Spacing Utilities */
.min-vh-75 {
  min-height: 75vh !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-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; }

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

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

.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

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

.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }

/* Flexbox Utilities */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !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; }

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

/* Grid Utilities */
.g-0 { --bs-gutter-x: 0 !important; --bs-gutter-y: 0 !important; }
.g-3 { --bs-gutter-x: 1rem !important; --bs-gutter-y: 1rem !important; }
.g-4 { --bs-gutter-x: 1.5rem !important; --bs-gutter-y: 1.5rem !important; }

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

/* Size Utilities */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

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

/* Image Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Small Text */
.small {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
  border: 2px solid var(--dark-accent);
}

::-webkit-scrollbar-thumb:hover {
  background: #ff5722;
}

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

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

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

.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(45, 27, 105, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    border-radius: 10px;
    margin: 0.25rem 0;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .hero-section {
    padding-top: 100px;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .sticky-top {
    position: relative !important;
    top: 0 !important;
  }
  
  .text-lg-end {
    text-align: center !important;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .col-md-3, .col-md-4, .col-md-6 {
    margin-bottom: 1.5rem;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .accordion-button {
    font-size: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

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