/* Conquest Fire Architecture Studio CSS */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #D32F2F;
  --secondary-color: #FFA726;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
  --shadow-hover: 0 15px 40px rgba(211, 47, 47, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1050;
}

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

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

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

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 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='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;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== HERO BANNER ===== */
.hero-banner {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.9) 0%, rgba(183, 28, 28, 0.9) 50%, rgba(255, 167, 38, 0.8) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23212529" width="1200" height="600"/><path fill="%23D32F2F" opacity="0.1" d="M0 300L50 325L100 300L150 350L200 325L250 375L300 350L350 400L400 375L450 425L500 400L550 450L600 425L650 475L700 450L750 500L800 475L850 525L900 500L950 550L1000 525L1050 575L1100 550L1150 600L1200 575V600H0Z"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-banner .display-1 {
  font-weight: 900 !important;
  color: var(--text-light) !important;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
  letter-spacing: 3px;
}

.hero-banner .display-5 {
  color: var(--secondary-color) !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.3s both;
  font-weight: 600 !important;
}

.hero-banner .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.3rem !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition) !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: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  color: var(--text-light) !important;
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
  padding: 1rem 3rem !important;
  font-size: 1.1rem !important;
}

.btn-lg:hover {
  background: linear-gradient(135deg, #b71c1c 0%, var(--primary-color) 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.6) !important;
  color: var(--text-light) !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-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(255, 167, 38, 0.4) !important;
}

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

.btn-outline-dark:hover {
  background: var(--text-dark) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px) !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) !important;
}

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

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

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

/* ===== CARDS ===== */
.card {
  border: none !important;
  border-radius: 15px !important;
  transition: var(--transition) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  height: 100%;
}

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

.training-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

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

.card-body {
  padding: 1.5rem !important;
  background: var(--text-light);
}

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

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

.card-stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  color: var(--text-light) !important;
  padding: 0.75rem !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  color: var(--text-light) !important;
  border-bottom: none !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
}

.program-card {
  cursor: pointer;
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ===== SECTIONS ===== */
.py-5 {
  padding: 4rem 0 !important;
}

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

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

.display-4 {
  font-weight: 800 !important;
  color: var(--primary-color) !important;
  margin-bottom: 3rem !important;
  position: relative;
  display: inline-block;
}

.display-4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.display-3 {
  font-weight: 800 !important;
  color: var(--primary-color) !important;
}

.display-1 {
  font-size: 4.5rem !important;
}

.display-5 {
  font-size: 2.5rem !important;
}

/* ===== BACKGROUNDS ===== */
.bg-white {
  background-color: var(--text-light) !important;
}

.rounded {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
  box-shadow: var(--shadow);
}

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

/* ===== ICONS ===== */
.bi, .fas, .far, .fab {
  transition: var(--transition);
}

.bi-fire, .bi-trophy, .bi-trophy-fill {
  color: var(--secondary-color) !important;
  filter: drop-shadow(0 2px 4px rgba(255, 167, 38, 0.4));
}

.bi-clock, .bi-people, .bi-graph-up-arrow,
.bi-person-check, .bi-calendar-check, .bi-graph-up,
.bi-clipboard-data, .bi-chat-dots, .bi-egg-fried,
.bi-people-fill, .bi-alarm, .bi-heart-pulse,
.bi-bullseye, .bi-speedometer2, .bi-award {
  color: var(--primary-color) !important;
}

.bi-patch-check-fill, .bi-lightning-charge-fill,
.bi-shield-check, .bi-check-circle-fill {
  color: var(--secondary-color) !important;
}

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

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

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

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

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

.fa-lg {
  font-size: 1.5rem !important;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--primary-color);
}

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: var(--transition);
  display: inline-block;
}

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

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

footer .bi-facebook, footer .bi-instagram,
footer .bi-twitter, footer .bi-youtube,
footer .fab {
  font-size: 1.8rem !important;
  transition: var(--transition);
}

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

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

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

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

/* ===== BADGE ===== */
.badge {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9800 100%) !important;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 10px rgba(255, 167, 38, 0.3);
}

.position-sticky.bottom-0 .badge {
  animation: pulse 2s infinite;
}

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

/* ===== TIMELINE ===== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
  border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}

.timeline-item:hover::before {
  background: var(--primary-color);
  animation: ping 1s ease-out;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
  100% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
}

/* ===== CAROUSEL ===== */
.carousel {
  border-radius: 15px;
  overflow: hidden;
}

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

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--secondary-color) !important;
  border: 2px solid var(--text-light) !important;
  opacity: 0.7 !important;
}

.carousel-indicators button.active {
  opacity: 1 !important;
  background-color: var(--primary-color) !important;
  transform: scale(1.3);
}

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

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

/* ===== FORMS ===== */
.form-control {
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition) !important;
  font-size: 1rem !important;
}

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

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

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

.form-select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  transition: var(--transition) !important;
}

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

.form-check-input {
  border: 2px solid var(--primary-color) !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  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 rgba(211, 47, 47, 0.25) !important;
}

.form-check-label {
  cursor: pointer;
  font-weight: 500;
  margin-left: 0.5rem;
}

.invalid-feedback {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

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

/* ===== ALERTS ===== */
.alert {
  border-radius: 10px !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 1rem 1.5rem !important;
  animation: slideInDown 0.5s ease-out;
}

.alert-success {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%) !important;
  color: var(--text-light) !important;
}

.alert-warning {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9800 100%) !important;
  color: var(--text-dark) !important;
}

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

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

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

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

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

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

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

.accordion-button.collapsed {
  background: linear-gradient(135deg, #616161 0%, #424242 100%) !important;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 15px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  color: var(--text-light) !important;
  border-bottom: none !important;
  padding: 1.5rem !important;
}

.modal-title {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
}

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

.btn-close, .btn-close-white {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

.btn-close:hover, .btn-close-white:hover {
  transform: rotate(90deg) scale(1.2);
  opacity: 1 !important;
}

/* ===== TABLE ===== */
.table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  color: var(--text-light) !important;
}

.table thead th {
  border: none !important;
  padding: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-hover tbody tr {
  transition: var(--transition);
}

.table-hover tbody tr:hover {
  background-color: rgba(211, 47, 47, 0.1) !important;
  transform: scale(1.01);
}

.table-bordered td, .table-bordered th {
  border-color: #e0e0e0 !important;
}

/* ===== PROGRESS BAR ===== */
.progress {
  height: 25px !important;
  border-radius: 15px !important;
  background-color: #e0e0e0 !important;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  font-weight: 700 !important;
  line-height: 25px !important;
  transition: width 1s ease-in-out !important;
  animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
  from { width: 0; }
}

/* ===== PRICING TOGGLE ===== */
.pricing-toggle {
  background: #e0e0e0 !important;
  border-radius: 50px !important;
  padding: 0.5rem !important;
  display: inline-flex;
  align-items: center;
}

.pricing-toggle .btn {
  background: transparent !important;
  color: var(--text-dark) !important;
  margin: 0 !important;
}

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

.price-monthly, .price-annual {
  transition: var(--transition);
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
  margin: 0.5rem !important;
  border-radius: 25px !important;
}

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

/* ===== PROGRAM GRID ===== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* ===== RATIO ===== */
.ratio-16x9 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.ratio-16x9 iframe,
.ratio-16x9 img,
.ratio-16x9 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* ===== STICKY ELEMENTS ===== */
.sticky-top {
  top: 80px !important;
  z-index: 1020;
}

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

.position-fixed {
  position: fixed !important;
  z-index: 1030;
}

/* ===== SOCIAL MEDIA BUTTONS ===== */
.position-fixed.d-block {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.position-fixed.d-block a {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-light) !important;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
  transition: var(--transition);
}

.position-fixed.d-block a:hover {
  background: var(--secondary-color);
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 6px 15px rgba(255, 167, 38, 0.6);
}

/* ===== NAV PILLS ===== */
.nav {
  border-radius: 10px;
}

.nav .nav-link {
  color: var(--text-dark) !important;
  border-radius: 8px !important;
  padding: 1rem 1.5rem !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

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

.nav .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%) !important;
  color: var(--text-light) !important;
}

.flex-column .nav-link {
  text-align: left;
  border-left: 3px solid transparent;
}

.flex-column .nav-link.active {
  border-left-color: var(--secondary-color);
}

/* ===== TEXT UTILITIES ===== */
.text-muted {
  color: #6c757d !important;
}

.text-success {
  color: #4caf50 !important;
}

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

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

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

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

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

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

/* ===== OPACITY ===== */
.opacity-75 {
  opacity: 0.75 !important;
}

/* ===== BORDERS ===== */
.border-0 {
  border: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

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

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* ===== UTILITY CLASSES ===== */
.d-none {
  display: none !important;
}

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

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===== SPACING ===== */
.m-3 {
  margin: 1rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile First - Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .hero-banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  .py-5 {
    padding: 2rem 0 !important;
  }
  
  .position-fixed.d-block {
    display: none !important;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-5 {
    font-size: 1.8rem !important;
  }
  
  .hero-banner {
    height: 80vh;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .text-lg-end {
    text-align: right !important;
  }
}

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

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-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, #b71c1c 0%, #ff9800 100%);
}

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

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

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.top-50 {
  top: 50% !important;
}

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

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

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

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

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

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

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

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

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