/* Architectural Studio - Ignition Red & Carbon Theme CSS */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #D32F2F;
  --secondary-color: #212121;
  --light-gray: #F5F5F5;
  --dark-gray: #424242;
  --white: #FFFFFF;
  --accent-red: #FF5252;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--secondary-color) !important;
  background-color: var(--white) !important;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ===== NAVBAR STYLES ===== */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%) !important;
  padding: 1rem 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition-speed) ease;
}

.navbar.sticky-top,
.navbar.position-sticky,
.navbar.fixed-top {
  background: rgba(33, 33, 33, 0.95) !important;
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  transition: all var(--transition-speed) ease;
}

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

.navbar-dark .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;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.navbar-dark .navbar-nav .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;
}

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

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

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

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

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="none"/%3E%3Cpath d="M30 0L0 30l30 30 30-30z" fill="%23D32F2F" opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.3;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-60px) translateY(-60px); }
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px !important;
  transition: all var(--transition-speed) ease !important;
  border: 2px solid transparent !important;
}

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

.btn-primary,
.btn.btn-lg.px-5.py-3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-red) 100%) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover,
.btn.btn-lg.px-5.py-3:hover {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-color) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.6) !important;
  color: var(--white) !important;
}

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

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

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

.btn-dark:hover {
  background-color: var(--dark-gray) !important;
  border-color: var(--dark-gray) !important;
  color: var(--white) !important;
}

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

.btn-light:hover {
  background-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
  border-color: var(--light-gray) !important;
}

.btn-outline-secondary {
  border-color: var(--dark-gray) !important;
  color: var(--dark-gray) !important;
}

.btn-outline-secondary:hover {
  background-color: var(--dark-gray) !important;
  color: var(--white) !important;
}

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

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

/* ===== ANIMATE BOUNCE ===== */
.animate-bounce {
  animation: bounce 2s infinite;
}

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

/* ===== CARDS ===== */
.card {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all var(--transition-speed) ease !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  height: 100%;
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

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

.card-title {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
}

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

.card-header {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
  border-bottom: 3px solid var(--primary-color) !important;
}

.card-img-top {
  transition: transform var(--transition-speed) ease;
}

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

.class-card .card-body {
  background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

/* ===== FLIP CARD ===== */
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 300px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.flip-card-front {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
  color: var(--white) !important;
}

.flip-card-back {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-red) 100%);
  color: var(--white) !important;
  transform: rotateY(180deg);
}

/* ===== BADGES ===== */
.badge {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 6px;
}

/* ===== ICONS ===== */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-lightning-charge-fill,
.bi-trophy-fill,
.bi-person-arms-up,
.bi-people-fill,
.bi-person-check-fill,
.bi-egg-fried,
.bi-star-fill,
.bi-check-circle-fill,
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter,
.bi-chevron-down,
.bi-arrow-right,
.bi-info-circle,
.bi-question-circle-fill,
.bi-list-ul,
.bi-database,
.bi-gear,
.bi-shield-check,
.bi-share,
.bi-exclamation-triangle,
.bi-lock,
.bi-cookie,
.bi-person-check,
.bi-box-arrow-up-right,
.bi-arrow-repeat,
.bi-clock,
.bi-fire,
.bi-arrow-left,
.bi-check-circle,
.bi-calendar-check {
  color: var(--primary-color) !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-white .bi,
.card-body .bi {
  color: var(--primary-color) !important;
}

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

.btn .bi-arrow-right,
.btn .bi-arrow-left {
  font-size: 1rem;
  margin: 0;
}

/* ===== SECTIONS ===== */
section {
  position: relative;
  padding: 80px 0;
}

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

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

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

/* ===== IMAGES ===== */
.img-fluid {
  border-radius: 12px;
  transition: all var(--transition-speed) ease;
}

.img-fluid:hover {
  transform: scale(1.02);
}

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

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

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12) !important;
}

/* ===== TEXT UTILITIES ===== */
.text-white {
  color: var(--white) !important;
}

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

.text-muted {
  color: rgba(33, 33, 33, 0.6) !important;
}

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

.display-1 {
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 900 !important;
}

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

.display-4 {
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
}

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

.h2, .h3, .h4, .h5 {
  color: var(--secondary-color) !important;
}

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

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

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

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

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

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

/* ===== ALERTS ===== */
.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1.25rem 1.5rem !important;
  font-weight: 500;
}

.alert-info {
  background-color: #E3F2FD !important;
  color: #1976D2 !important;
}

.alert-info .bi {
  color: #1976D2 !important;
}

.alert-warning {
  background-color: #FFF3E0 !important;
  color: #F57C00 !important;
}

.alert-warning .bi {
  color: #F57C00 !important;
}

.alert-success {
  background-color: #E8F5E9 !important;
  color: #388E3C !important;
}

.alert-success .bi {
  color: #388E3C !important;
}

.alert-secondary {
  background-color: var(--light-gray) !important;
  color: var(--secondary-color) !important;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-speed) ease !important;
  background-color: var(--white) !important;
  color: var(--secondary-color) !important;
}

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

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

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

.form-check-input {
  border: 2px solid rgba(0, 0, 0, 0.2) !important;
  width: 1.5rem;
  height: 1.5rem;
}

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

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

.invalid-feedback {
  color: #DC3545 !important;
  font-weight: 500;
}

.valid-feedback {
  color: #28A745 !important;
  font-weight: 500;
}

.form-control.is-invalid {
  border-color: #DC3545 !important;
}

.form-control.is-valid {
  border-color: #28A745 !important;
}

.form-step {
  transition: all 0.5s ease;
}

.form-step.d-none {
  display: none !important;
}

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

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

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

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

.list-group {
  border-radius: 8px !important;
}

.list-group-item {
  background-color: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--secondary-color) !important;
  transition: all var(--transition-speed) ease;
}

.list-group-item-action:hover {
  background-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
  border-left: 3px solid var(--primary-color) !important;
}

.list-group-item.active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.list-group-flush .list-group-item {
  border-width: 0 0 1px !important;
}

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

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--light-gray) !important;
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  transition: all var(--transition-speed) ease !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

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

.accordion-button::after {
  filter: brightness(0) saturate(100%);
}

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

.accordion-body {
  padding: 1.5rem !important;
  background-color: var(--white) !important;
  color: var(--secondary-color) !important;
}

.accordion-collapse {
  border-top: 2px solid var(--primary-color) !important;
}

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

.modal-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%) !important;
  color: var(--white) !important;
  border-bottom: 3px solid var(--primary-color) !important;
  padding: 1.5rem !important;
}

.modal-title {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.modal-body {
  padding: 2rem !important;
  background-color: var(--white) !important;
}

.modal-lg {
  max-width: 900px !important;
}

/* ===== PROGRESS BAR ===== */
.progress {
  height: 2rem !important;
  border-radius: 8px !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-red) 100%) !important;
  font-weight: 600;
  transition: width 0.6s ease !important;
}

/* ===== TABLE ===== */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
}

.table {
  margin-bottom: 0 !important;
  color: var(--secondary-color) !important;
}

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

.table-dark th,
.table-dark td {
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 1rem !important;
}

.table-dark thead th {
  background-color: var(--dark-gray) !important;
  border-bottom: 2px solid var(--primary-color) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.schedule-table {
  width: 100%;
}

.schedule-cell {
  min-height: 80px;
  padding: 1rem;
  transition: all var(--transition-speed) ease;
}

.schedule-cell:hover {
  background-color: rgba(211, 47, 47, 0.1) !important;
  cursor: pointer;
}

.schedule-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
}

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

.carousel-inner {
  border-radius: 12px;
}

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

.carousel-control-prev,
.carousel-control-next {
  width: 60px !important;
  opacity: 0.8 !important;
  transition: all var(--transition-speed) ease !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
}

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

/* ===== FILTER BUTTONS ===== */
.filter-btn {
  background-color: var(--light-gray) !important;
  color: var(--secondary-color) !important;
  border: 2px solid transparent !important;
  padding: 0.75rem 1.5rem !important;
  margin: 0.5rem;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* ===== PRICING TOGGLE ===== */
.pricing-toggle {
  display: inline-flex;
  background-color: var(--light-gray);
  border-radius: 50px;
  padding: 0.5rem;
  gap: 0.5rem;
}

.pricing-toggle .btn {
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary-color) !important;
}

/* ===== ROUNDED UTILITIES ===== */
.rounded {
  border-radius: 8px !important;
}

.rounded-circle {
  border-radius: 50% !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== SPACING UTILITIES ===== */
.gap-3 {
  gap: 1rem !important;
}

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

.p-0 {
  padding: 0 !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-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

.mt-lg-0 {
  margin-top: 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-2 {
  margin-right: 0.5rem !important;
}

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

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

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

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 3rem 0 1rem;
}

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

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

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

footer .bi-facebook:hover {
  color: #1877F2 !important;
}

footer .bi-instagram:hover {
  color: #E4405F !important;
}

footer .bi-twitter:hover {
  color: #1DA1F2 !important;
}

footer .bi-youtube:hover {
  color: #FF0000 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(33, 33, 33, 0.98);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .pe-5 {
    padding-right: 1rem !important;
  }
  
  section {
    padding: 60px 0;
  }
  
  .order-lg-1 {
    order: 1;
  }
  
  .order-lg-2 {
    order: 2;
  }
  
  .text-lg-end {
    text-align: left !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.75rem !important;
  }
  
  .display-4 {
    font-size: 1.5rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
  
  .order-2 {
    order: 2;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .p-5 {
    padding: 2rem !important;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .display-1 {
    font-size: 1.75rem !important;
  }
  
  .hero-section {
    padding: 80px 0 40px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .modal-body {
    padding: 1.5rem !important;
  }
  
  .accordion-button {
    padding: 1rem !important;
    font-size: 0.95rem !important;
  }
  
  .table-dark th,
  .table-dark td {
    padding: 0.75rem !important;
    font-size: 0.875rem;
  }
}

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

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

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

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

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

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

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

/* ===== UTILITY CLASSES ===== */
.position-relative {
  position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-grow-1 {
  flex-grow: 1 !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;
}

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

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

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

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

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

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

.show {
  display: block !important;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

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

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

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