/* Frontier Red & Steel - Architectural Studio Theme */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #D32F2F;
  --secondary-color: #424242;
  --accent-red: #B71C1C;
  --steel-light: #757575;
  --steel-dark: #212121;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --transition-base: all 0.3s ease;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===== 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(--secondary-color);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--steel-dark) 0%, var(--secondary-color) 100%) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-base);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(33, 33, 33, 0.98) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.8rem;
  letter-spacing: 1px;
  position: relative;
  padding-left: 15px;
  transition: var(--transition-base);
}

.navbar-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--primary-color);
  transition: var(--transition-base);
}

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

.navbar-brand:hover::before {
  height: 100%;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem 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;
}

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

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

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

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

.navbar-nav .nav-link.active {
  font-weight: 700;
}

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

.video-background {
  z-index: 1;
  object-fit: cover;
  opacity: 0.3;
  top: 0;
  left: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.hero-section .text-white {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .display-1 {
  font-weight: 800;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease;
  color: var(--white) !important;
}

.hero-section .display-5 {
  font-weight: 300;
  animation: fadeInUp 1.2s ease;
  color: var(--white) !important;
}

.hero-section .lead {
  font-size: 1.3rem;
  animation: fadeInUp 1.4s ease;
  color: rgba(255, 255, 255, 0.95) !important;
}

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

.hero-section .btn {
  animation: fadeInUp 1.6s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn:first-of-type {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary-color) !important;
}

.hero-section .btn:first-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-red);
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-section .btn:first-of-type:hover {
  color: var(--white) !important;
  border-color: var(--accent-red) !important;
}

.hero-section .btn:first-of-type:hover::before {
  left: 0;
}

.hero-section .btn:last-of-type {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
}

.hero-section .btn:last-of-type:hover {
  background: var(--white) !important;
  color: var(--secondary-color) !important;
}

.bi-chevron-down {
  animation: bounce 2s infinite;
  color: var(--white) !important;
  font-size: 2rem;
  cursor: pointer;
}

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

/* ===== BUTTONS ===== */
.btn {
  transition: var(--transition-base);
  border-radius: 4px;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-check:checked + .btn-outline-secondary {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

.btn-outline-danger {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-check:checked + .btn-outline-danger {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

.btn-link {
  color: var(--primary-color) !important;
  text-decoration: none;
}

.btn-link:hover {
  color: var(--accent-red) !important;
  text-decoration: underline;
}

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

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

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

.min-vh-50 {
  min-height: 50vh !important;
}

/* ===== IMAGES ===== */
.img-fluid {
  transition: transform 0.3s ease;
  border-radius: 4px;
}

.overflow-hidden .img-fluid:hover {
  transform: scale(1.05);
}

.overflow-hidden {
  border-radius: 4px;
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 8px;
  transition: var(--transition-base);
  background: var(--white);
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-red) 100%) !important;
  color: var(--white) !important;
  border-bottom: none;
  font-weight: 700;
  border-radius: 8px 8px 0 0 !important;
}

.card-body {
  padding: 2rem;
}

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

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

.card-img-top {
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* ===== TEAM CARDS ===== */
.team-card {
  perspective: 1000px;
  height: 400px;
  cursor: pointer;
}

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

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

.team-card-front,
.team-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.team-card-front {
  background: var(--white);
  box-shadow: var(--shadow-base);
}

.team-card-back {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-red) 100%);
  color: var(--white) !important;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.team-card-back * {
  color: var(--white) !important;
}

/* ===== TIMELINE ===== */
.timeline-container {
  position: relative;
}

.timeline-container .border-start {
  border-color: var(--primary-color) !important;
  border-width: 4px !important;
}

.timeline-container .badge {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
}

/* ===== ALERTS ===== */
.alert {
  border-radius: 8px;
  border: none;
  padding: 1.25rem;
}

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

.alert-light {
  background: var(--off-white) !important;
  color: var(--secondary-color) !important;
  border: 1px solid #dee2e6 !important;
}

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

/* ===== FORMS ===== */
.form-control,
.form-select {
  border: 2px solid #dee2e6;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: var(--transition-base);
  background: var(--white);
  color: var(--secondary-color) !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;
  background: var(--white) !important;
}

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

.invalid-feedback {
  color: var(--primary-color) !important;
  font-weight: 500;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--primary-color) !important;
}

.form-check-input {
  border: 2px solid #dee2e6;
}

.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 {
  color: var(--secondary-color) !important;
}

/* ===== ACCORDION ===== */
.accordion {
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-header {
  border-radius: 8px !important;
}

.accordion-button {
  background: var(--white) !important;
  color: var(--secondary-color) !important;
  font-weight: 600;
  border: 2px solid #dee2e6;
  border-radius: 8px !important;
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.15) !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 {
  background: var(--white);
  color: var(--secondary-color) !important;
  border: 2px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 8px 8px !important;
  padding: 1.5rem;
}

.accordion-collapse {
  border-radius: 0 0 8px 8px !important;
}

/* ===== LIST GROUPS ===== */
.list-group {
  border-radius: 8px;
}

.list-group-item {
  border: 1px solid #dee2e6;
  color: var(--secondary-color) !important;
  transition: var(--transition-base);
}

.list-group-item-action:hover {
  background: var(--off-white) !important;
  color: var(--secondary-color) !important;
}

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

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

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

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

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

.table thead {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--steel-dark) 100%);
  color: var(--white) !important;
}

.table thead th {
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  padding: 1rem;
}

.table-bordered {
  border: 2px solid #dee2e6;
}

.table-hover tbody tr:hover {
  background: rgba(211, 47, 47, 0.05) !important;
}

.table td,
.table th {
  padding: 1rem;
  vertical-align: middle;
}

/* ===== TABLE CLASSES ===== */
.class-cell {
  font-weight: 600;
  color: var(--secondary-color) !important;
}

.class-block {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  margin: 0.25rem;
  display: inline-block;
}

.bg-warning {
  background-color: #FFC107 !important;
}

.bg-success {
  background-color: #4CAF50 !important;
  color: var(--white) !important;
}

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

.bg-info {
  background-color: #2196F3 !important;
  color: var(--white) !important;
}

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

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

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

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

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

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

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

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

.carousel-indicators button {
  background-color: var(--primary-color) !important;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(211, 47, 47, 0.8);
  border-radius: 50%;
  padding: 1.5rem;
}

/* ===== PROGRESS ===== */
.progress {
  height: 1.5rem;
  border-radius: 8px;
  background-color: #e0e0e0;
  overflow: hidden;
}

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

/* ===== WIZARD STEP ===== */
.wizard-step {
  opacity: 0.5;
  transition: var(--transition-base);
}

.wizard-step.active {
  opacity: 1;
  font-weight: 700;
  color: var(--primary-color) !important;
}

/* ===== BADGES ===== */
.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

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

.bi-check-circle-fill,
.bi-check-circle {
  color: #4CAF50 !important;
}

.bi-x-circle {
  color: var(--primary-color) !important;
}

.bi-info-circle-fill {
  color: #2196F3 !important;
}

.bi-flag-fill,
.bi-lightning-charge-fill,
.bi-shield-check {
  color: var(--primary-color) !important;
}

/* ===== UTILITIES ===== */
.position-sticky {
  position: sticky !important;
  top: 100px;
}

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

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

.shadow {
  box-shadow: var(--shadow-base) !important;
}

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

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

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

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

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

/* ===== LINKS ===== */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

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

/* ===== TYPOGRAPHY ===== */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
}

.display-1 {
  font-size: calc(1.725rem + 5.7vw);
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
}

/* ===== SPACING ===== */
.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-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; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-auto { margin-left: auto !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; }
.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-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.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; }
.pe-4 { padding-right: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(33, 33, 33, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .hero-section .display-1 {
    font-size: 3rem;
  }
  
  .hero-section .display-5 {
    font-size: 1.8rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .team-card {
    height: 350px;
    margin-bottom: 2rem;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section .display-1 {
    font-size: 2.5rem;
  }
  
  .hero-section .display-5 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-section .display-1 {
    font-size: 2rem;
  }
  
  .hero-section .display-5 {
    font-size: 1.3rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .team-card {
    height: 300px;
  }
  
  .table {
    font-size: 0.875rem;
  }
}

/* ===== ANIMATIONS ===== */
@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);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

::-webkit-scrollbar-track {
  background: var(--off-white);
}

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

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

/* ===== FOOTER STYLES ===== */
footer {
  background: linear-gradient(135deg, var(--steel-dark) 0%, var(--secondary-color) 100%);
  color: var(--white) !important;
}

footer * {
  color: var(--white) !important;
}

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

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

footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-twitter:hover,
footer .bi-youtube:hover {
  color: var(--primary-color) !important;
  transform: scale(1.2);
}

/* ===== SPECIAL EFFECTS ===== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FOCUS VISIBLE ===== */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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