/* Fire Storm Architecture Studio Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Raleway:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #FF5722;
  --secondary-color: #263238;
  --accent-color: #FF6F3C;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --gray-text: #b0b0b0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--secondary-color);
  background-color: #f8f9fa;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
  transition: var(--transition);
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
  background: rgba(38, 50, 56, 0.95) !important;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 900 !important;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--accent-color) !important;
  text-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
  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(--primary-color) !important;
  transform: translateY(-2px);
}

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

.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='%23FF5722' 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%, var(--secondary-color) 50%, #000 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M50 10L61 35 88 35 66 52 77 77 50 60 23 77 34 52 12 35 39 35z" fill="%23FF5722" opacity="0.05"/%3E%3C/svg%3E');
  animation: float 20s infinite linear;
  opacity: 0.3;
}

.video-background {
  z-index: 0;
  object-fit: cover;
  opacity: 0.3;
  filter: contrast(1.2) brightness(0.7);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900 !important;
  color: var(--light-text) !important;
  text-shadow: 0 0 40px rgba(255, 87, 34, 0.6), 0 5px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-section .display-5 {
  color: var(--primary-color) !important;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
  letter-spacing: 1px;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem;
  animation: fadeInUp 1.4s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

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

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

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

.btn-primary,
.btn.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6f3c, var(--primary-color)) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
  color: #ffffff !important;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

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

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

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

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

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

.btn-secondary,
.btn.bg-secondary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

/* Icons */
.bi, .fas, .fa {
  font-size: 3rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.bi-fire, .fa-fire {
  animation: flicker 2s infinite alternate;
}

.bi-lightning-charge,
.bi-lightning-charge-fill {
  animation: electricPulse 1.5s infinite;
}

/* Cards and Sections */
.card {
  border: none !important;
  border-radius: 20px;
  transition: var(--transition);
  overflow: hidden;
  background: #ffffff;
}

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

.card-body {
  padding: 2rem;
}

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

.shadow-lg:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Team Cards */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 400px;
}

.team-card img {
  transition: var(--transition);
  height: 100%;
  object-fit: cover;
}

.team-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  padding: 2rem;
  transition: var(--transition);
}

.team-info {
  position: absolute;
  background: rgba(255, 87, 34, 0.95);
  color: white;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  height: 100%;
  width: 100%;
}

.team-card:hover .team-info {
  opacity: 1;
}

/* Trainer Card with Flip Effect */
.trainer-card-container {
  perspective: 1000px;
  height: 400px;
}

.trainer-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.trainer-card-container:hover .trainer-card {
  transform: rotateY(180deg);
}

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

.trainer-card-front {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.trainer-card-back {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
}

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

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

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #1a1a1a) !important;
  color: white !important;
}

.bg-secondary * {
  color: white !important;
}

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

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

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

/* Images */
.img-fluid {
  border-radius: 15px;
  transition: var(--transition);
}

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

/* Text Colors */
.text-white {
  color: #ffffff !important;
}

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

.text-success {
  color: #28a745 !important;
}

/* Backgrounds */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-sticky {
  position: sticky;
  top: 80px;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background: white;
  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(255, 87, 34, 0.25) !important;
  background: white !important;
  color: var(--secondary-color) !important;
}

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

.form-check-input {
  border-color: var(--primary-color);
}

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

.form-check-label {
  color: var(--secondary-color);
}

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

.accordion-button {
  background: white !important;
  color: var(--secondary-color) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  color: white !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

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

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

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

/* Badge */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Ratio (for videos/maps) */
.ratio {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.list-unstyled a {
  color: inherit;
  transition: var(--transition);
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color), #000000);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
}

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

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: var(--transition);
}

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

footer .bi {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

footer .bi:hover {
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

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

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

@keyframes flicker {
  0%, 100% {
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
  }
  50% {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
  }
}

@keyframes electricPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.5) drop-shadow(0 0 10px var(--primary-color));
  }
}

@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);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.fw-bold {
  font-weight: 700 !important;
}

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

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

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

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

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

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

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

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

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

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

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

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

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !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; }
.ms-4 { margin-left: 1.5rem !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.mb-md-0 { margin-bottom: 0 !important; }

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

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

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

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

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

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

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

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

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

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

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

.opacity-75 {
  opacity: 0.75 !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; }
.bottom-0 { bottom: 0 !important; }

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

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

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

.small {
  font-size: 0.875rem;
}

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

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

/* Responsive Typography */
.display-1 { font-size: clamp(2.5rem, 8vw, 6rem); }
.display-2 { font-size: clamp(2.25rem, 7vw, 5.5rem); }
.display-3 { font-size: clamp(2rem, 6vw, 4.5rem); }
.display-4 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
.display-5 { font-size: clamp(1.5rem, 4vw, 3rem); }

.h3, h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
.h4, h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.h5, h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
.h6, h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(38, 50, 56, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .order-lg-1,
  .order-lg-2 {
    order: 0;
  }
  
  .text-lg-end,
  .text-md-end {
    text-align: center !important;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  .col-lg-8.offset-lg-2 {
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 0.9rem;
  }
  
  .gap-4 {
    gap: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .team-card {
    height: 350px;
  }
  
  .p-md-5 {
    padding: 2rem !important;
  }
  
  .fs-4 {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .bi, .fas, .fa {
    font-size: 2.5rem;
  }
  
  .team-card {
    height: 300px;
  }
  
  .trainer-card-container {
    height: 350px;
  }
}

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

a:hover {
  color: var(--accent-color);
}

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

/* Special Effects for Fire Storm Theme */
.fire-effect {
  position: relative;
}

.fire-effect::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: fireGradient 3s ease infinite;
  opacity: 0;
  transition: var(--transition);
}

.fire-effect:hover::after {
  opacity: 0.7;
  filter: blur(15px);
}

@keyframes fireGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Card Image Top */
.card-img-top {
  border-radius: 20px 20px 0 0;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-title {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.card-text {
  color: #6c757d;
  line-height: 1.6;
}

/* Contact Info Icons */
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-clock-fill,
.bi-clock {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

/* Social Media Icons */
.bi-facebook,
.bi-instagram,
.bi-youtube,
.bi-twitter,
.bi-twitter-x,
.bi-tiktok {
  font-size: 1.75rem;
  transition: var(--transition);
}

.bi-facebook:hover { color: #1877f2 !important; }
.bi-instagram:hover { color: #e4405f !important; }
.bi-youtube:hover { color: #ff0000 !important; }
.bi-twitter:hover,
.bi-twitter-x:hover { color: #1da1f2 !important; }
.bi-tiktok:hover { color: #000000 !important; }

/* Loading Spinner */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth transitions for all interactive elements */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  outline: none;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.25) !important;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }
}