/* Inferno Blaze Architecture Studio - Custom Styles */

:root {
  --primary-color: #D32F2F;
  --secondary-color: #FF6F00;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --border-color: rgba(211, 47, 47, 0.2);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Typography */
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.98) 0%, rgba(255, 111, 0, 0.98) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(211, 47, 47, 0.3);
}

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

.navbar-brand {
  font-size: 1.5rem !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

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

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

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-light) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

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

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1414 50%, #1a0a0a 100%);
  position: relative;
  padding: 120px 0 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(211, 47, 47, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 111, 0, 0.3) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-section .text-white {
  color: var(--text-light) !important;
  position: relative;
  z-index: 2;
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  text-shadow: 2px 2px 20px rgba(211, 47, 47, 0.5);
  animation: fadeInUp 1s ease-out;
}

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

.hero-section .lead {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9) !important;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .bi-chevron-down {
  font-size: 2rem;
  color: var(--text-light) !important;
  animation: bounce 2s infinite;
}

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

/* Buttons */
.btn {
  border-radius: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.btn:not(.btn-outline-danger):not(.btn-outline-secondary):not(.btn-light) {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn:not(.btn-outline-danger):not(.btn-outline-secondary):not(.btn-light):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6) !important;
  color: var(--text-light) !important;
}

.btn:not(.btn-outline-danger):not(.btn-outline-secondary):not(.btn-light):active {
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-color) !important;
  border: 2px solid transparent !important;
}

.btn-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.btn-outline-danger {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-danger:hover {
  background: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4) !important;
}

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

.btn-outline-secondary:hover {
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4) !important;
}

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

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

.col-md-3.text-center.p-4 {
  transition: var(--transition);
  position: relative;
}

.col-md-3.text-center.p-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.col-md-3.text-center.p-4:hover::before {
  opacity: 1;
}

.col-md-3.text-center.p-4:hover {
  transform: translateY(-5px);
}

.bi-fire, .bi-trophy, .bi-lightning-charge, .bi-clock-history,
.fa-fire-alt, .fa-fist-raised, .fa-users, .fa-heart {
  font-size: 3rem !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.col-md-3.text-center.p-4:hover .bi-fire,
.col-md-3.text-center.p-4:hover .bi-trophy,
.col-md-3.text-center.p-4:hover .bi-lightning-charge,
.col-md-3.text-center.p-4:hover .bi-clock-history,
.col-md-3.text-center.p-4:hover .fa-fire-alt,
.col-md-3.text-center.p-4:hover .fa-fist-raised,
.col-md-3.text-center.p-4:hover .fa-users,
.col-md-3.text-center.p-4:hover .fa-heart {
  transform: scale(1.2) rotateY(360deg);
}

.fa-3x {
  font-size: 3rem !important;
}

.display-3 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: var(--text-dark);
}

.display-4 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}

.display-5 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

/* Card Styles */
.card {
  border-radius: 16px !important;
  transition: var(--transition);
  border: none !important;
  overflow: hidden;
}

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

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

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

.card-text {
  color: #666 !important;
  line-height: 1.8;
}

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

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

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Image Styles */
.img-fluid {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.rounded-circle {
  border-radius: 50% !important;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  padding: 3px;
}

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

/* Background Colors */
.bg-dark {
  background-color: var(--dark-bg) !important;
}

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

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

.bg-success {
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%) !important;
}

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

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

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

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

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

.text-light {
  color: #f8f9fa !important;
}

/* Border Styles */
.border {
  border: 1px solid var(--border-color) !important;
}

.border-end {
  border-right: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-top {
  border-top: 1px solid var(--border-color) !important;
}

.border-light {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

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

/* Badge */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px;
}

/* Alert */
.alert {
  border-radius: 12px !important;
  border: none !important;
  padding: 1.25rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%) !important;
  color: var(--text-dark) !important;
}

.bi-info-circle-fill,
.bi-exclamation-triangle-fill {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

/* Form Styles */
.form-control,
.form-select {
  border-radius: 12px !important;
  border: 2px solid #e0e0e0 !important;
  padding: 0.75rem 1.25rem !important;
  transition: var(--transition);
  font-size: 1rem !important;
}

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

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

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

.fw-semibold {
  font-weight: 600 !important;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #dee2e6 !important;
  transition: var(--transition);
}

.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 rgba(211, 47, 47, 0.15) !important;
}

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

/* Accordion */
.accordion {
  --bs-accordion-border-radius: 16px;
}

.accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem !important;
  overflow: hidden;
  background: #ffffff;
}

.accordion-button {
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  padding: 1.25rem 1.5rem !important;
  color: var(--text-dark) !important;
  background: #ffffff !important;
  border: none !important;
  transition: var(--transition);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%) !important;
  color: var(--primary-color) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.15) !important;
  border: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D32F2F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 1.5rem !important;
  background: #ffffff;
  color: #666;
  line-height: 1.8;
}

.accordion-collapse.show {
  border-top: 1px solid var(--border-color);
}

/* List Styles */
.list-unstyled {
  list-style: none !important;
  padding-left: 0 !important;
}

.list-unstyled li {
  padding: 0.5rem 0;
}

/* Link Styles */
a {
  text-decoration: none;
  transition: var(--transition);
}

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

a:not(.btn):not(.navbar-brand):not(.nav-link) {
  color: var(--primary-color) !important;
}

a:not(.btn):not(.navbar-brand):not(.nav-link):hover {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}

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

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

/* Icons */
.bi, .fas, .fa, .fab {
  transition: var(--transition);
}

.bi-facebook, .fa-facebook,
.bi-instagram, .fa-instagram,
.bi-youtube, .fa-youtube,
.bi-twitter, .bi-twitter-x, .fa-twitter {
  font-size: 1.5rem !important;
  color: var(--text-light) !important;
  transition: var(--transition);
}

.bi-facebook:hover, .fa-facebook:hover {
  color: #1877f2 !important;
  transform: scale(1.2);
}

.bi-instagram:hover, .fa-instagram:hover {
  color: #e4405f !important;
  transform: scale(1.2);
}

.bi-youtube:hover, .fa-youtube:hover {
  color: #ff0000 !important;
  transform: scale(1.2);
}

.bi-twitter:hover, .bi-twitter-x:hover, .fa-twitter:hover {
  color: #1da1f2 !important;
  transform: scale(1.2);
}

.bi-send-fill,
.bi-check-circle-fill,
.bi-star-fill,
.bi-shield-check,
.bi-person-badge,
.bi-gear,
.bi-share,
.bi-lock,
.bi-hand-thumbs-up,
.bi-cookie,
.bi-hourglass-split,
.bi-people,
.bi-arrow-repeat,
.bi-telephone,
.bi-envelope,
.bi-phone,
.bi-geo-alt,
.bi-patch-check,
.bi-chevron-right,
.bi-check2,
.bi-calendar-day,
.bi-calendar-check,
.bi-people-fill,
.bi-trophy-fill,
.bi-clock-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.fa-map-marker-alt,
.fa-phone,
.fa-envelope {
  color: var(--primary-color) !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1414 100%);
  color: var(--text-light);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

footer h5 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

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

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

/* Ratio (Video Embeds) */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* Hexagon Container (Custom) */
.hexagon-container {
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.hexagon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.hexagon-frame {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hexagon-frame:hover {
  transform: rotate(60deg) scale(1.1);
}

.hexagon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  z-index: 2;
}

/* Class Cards with Filters */
.day-filter {
  cursor: pointer;
  transition: var(--transition);
}

.day-filter:hover {
  transform: scale(1.05);
}

.class-card {
  transition: var(--transition);
  position: relative;
}

.class-card:hover {
  transform: scale(1.03);
}

.mma-fundamentals { border-left: 4px solid #D32F2F !important; }
.combat-conditioning { border-left: 4px solid #388e3c !important; }
.boxing-basics { border-left: 4px solid #1976d2 !important; }
.olympic-lifting { border-left: 4px solid #fbc02d !important; }
.advanced-kickboxing { border-left: 4px solid #c62828 !important; }
.functional-fitness { border-left: 4px solid #7b1fa2 !important; }
.grappling-essentials { border-left: 4px solid #0288d1 !important; }
.warrior-bootcamp { border-left: 4px solid #f57c00 !important; }
.mma-sparring { border-left: 4px solid #d32f2f !important; }
.heavy-bag-warriors { border-left: 4px solid #455a64 !important; }
.strength-power { border-left: 4px solid #e64a19 !important; }
.cardio-combat { border-left: 4px solid #00897b !important; }
.mma-technique { border-left: 4px solid #5d4037 !important; }

/* Utility Classes */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.g-5 {
  --bs-gutter-x: 3rem !important;
  --bs-gutter-y: 3rem !important;
}

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

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

.mt-1 {
  margin-top: 0.25rem !important;
}

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

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

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

.mt-lg-0 {
  margin-top: 0 !important;
}

.mt-md-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: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

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

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

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

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

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

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

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

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

.opacity-75 {
  opacity: 0.75 !important;
}

.small {
  font-size: 0.875rem !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(211, 47, 47, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    min-height: 100vh;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .col-md-3.text-center.p-4 {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }
  
  .col-md-3.text-center.p-4:last-child {
    border-bottom: none;
  }
  
  .ps-lg-5, .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .order-lg-1, .order-lg-2 {
    order: 0 !important;
  }
  
  .text-lg-start, .text-lg-end {
    text-align: center !important;
  }
  
  .mt-lg-0, .mb-lg-0 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
  
  .text-md-start, .text-md-end {
    text-align: center !important;
  }
  
  .mt-md-0 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section .display-1 {
    font-size: 1.75rem !important;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0 !important;
  }
  
  .rounded-circle {
    width: 60px;
    height: 60px;
  }
  
  footer .col-lg-2,
  footer .col-lg-3,
  footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

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

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #c62828 0%, #f57c00 100%);
}

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

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

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    page-break-inside: avoid;
  }
}