/* Jade Flame Architecture Studio - Custom Styles */

:root {
  --primary-color: #00796B;
  --secondary-color: #FF6F00;
  --dark-teal: #004D40;
  --light-teal: #4DB6AC;
  --dark-orange: #E65100;
  --light-orange: #FFB74D;
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
}

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Navbar Styling */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  color: #ffffff !important;
  font-size: 1.75rem;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

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

.navbar-brand .bi-fire {
  color: var(--secondary-color) !important;
  animation: flameFlicker 2s infinite alternate;
  margin-right: 0.5rem;
}

@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(-5deg); opacity: 0.9; }
  50% { transform: scale(0.95) rotate(5deg); opacity: 0.95; }
  75% { transform: scale(1.05) rotate(-3deg); opacity: 0.92; }
}

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

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

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

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

.nav-link.active {
  color: #ffffff !important;
  background: var(--secondary-color) !important;
  box-shadow: 0 4px 10px rgba(255, 111, 0, 0.4);
}

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

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-color) 50%, var(--dark-orange) 100%);
  position: relative;
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(30%);
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.85) 0%, rgba(0, 77, 64, 0.9) 50%, rgba(255, 111, 0, 0.75) 100%);
}

.hero-section .display-1 {
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  letter-spacing: 2px;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease-out;
  font-weight: 300;
}

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

.hero-section .btn {
  animation: fadeInUp 1.4s ease-out;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 2px !important;
}

.btn {
  transition: all var(--transition-speed) ease;
  border-radius: 10px;
  font-weight: 600;
  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.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-outline-light {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

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

.btn-light {
  color: var(--primary-color) !important;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
}

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

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

.btn-outline-secondary:hover {
  color: #ffffff !important;
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 111, 0, 0.3) !important;
}

/* Services Highlight */
.services-highlight {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
}

.services-highlight .display-4 {
  color: var(--primary-color) !important;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.services-highlight .display-4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 121, 107, 0.3);
}

.service-card .card-content {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover .card-content {
  color: #ffffff !important;
}

.service-card:hover .card-content * {
  color: #ffffff !important;
}

.service-card .bi {
  font-size: 3rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
  display: inline-block;
}

.service-card:hover .bi {
  color: #ffffff !important;
  transform: scale(1.2) rotate(5deg);
}

.flame-effect {
  position: relative;
}

.flame-effect::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  animation: pulseFlame 2s infinite;
}

.service-card:hover .flame-effect::after {
  opacity: 0.8;
}

@keyframes pulseFlame {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%);
  padding: 5rem 0;
  color: #ffffff;
}

.testimonials-section .display-4 {
  color: #ffffff !important;
  font-weight: 700;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color) !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 0.7;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.3);
}

.carousel-item {
  padding: 2rem 0;
}

.carousel-item .img-fluid {
  transition: all 0.4s ease;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.carousel-item .img-fluid:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
}

.carousel-item .bi-star-fill {
  color: var(--secondary-color) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-item .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-style: italic;
  font-weight: 300;
}

.carousel-item .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: all var(--transition-speed) ease;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-orange) 100%);
  padding: 4rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatBubble 15s infinite ease-in-out;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatBubble 20s infinite ease-in-out reverse;
}

@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.2); }
}

.cta-banner .display-4 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-banner .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner .bi {
  color: #ffffff !important;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-teal) 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

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

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

footer .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
}

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

.list-unstyled li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-unstyled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* Card Styling */
.card {
  border: none;
  border-radius: 15px;
  transition: all 0.4s ease;
  overflow: hidden;
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%) !important;
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  padding: 1.25rem;
}

.card-body {
  padding: 1.5rem;
}

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

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7;
}

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

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

/* Badge */
.badge {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Alerts */
.alert {
  border: none;
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid var(--secondary-color);
}

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

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background: #ffffff;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 121, 107, 0.25) !important;
  background: #ffffff;
}

.form-control::placeholder {
  color: #999 !important;
}

/* List Group */
.list-group-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed) ease;
  color: var(--text-dark) !important;
}

.list-group-item-action:hover {
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%) !important;
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.list-group-flush .list-group-item {
  border-left: none;
  border-right: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 1.25rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-orange) 100%) !important;
  color: #ffffff !important;
  box-shadow: none;
}

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

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

.accordion-body {
  padding: 1.5rem;
  background: #f8f9fa;
  color: var(--text-dark) !important;
}

/* Parallax Section */
.parallax-section {
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.95) 0%, rgba(255, 111, 0, 0.9) 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="30" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
}

.parallax-section * {
  position: relative;
  z-index: 1;
}

.parallax-section .display-5 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery/Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: all 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.9) 0%, rgba(255, 111, 0, 0.9) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Filter Buttons */
.filter-btn {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  transition: all var(--transition-speed) ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 121, 107, 0.3) !important;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

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

.modal-title {
  color: #ffffff !important;
  font-weight: 700;
}

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

.btn-close:hover,
.btn-close-white:hover {
  opacity: 1;
}

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

/* Blockquote */
blockquote {
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-dark) !important;
}

.blockquote-footer {
  color: #6c757d !important;
  font-style: normal;
  margin-top: 0.5rem;
}

/* Sticky Elements */
.sticky-top,
.sticky-lg-top {
  top: 80px;
  z-index: 1020;
}

/* Utility Classes */
.bg-white {
  background: #ffffff !important;
}

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

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

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

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

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

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

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

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

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

.border-start {
  border-left: 3px solid var(--secondary-color) !important;
}

.border-5 {
  border-width: 5px !important;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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

/* Responsive Masonry */
@media (max-width: 991px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3rem !important;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .lead {
    font-size: 1.1rem !important;
  }
}

/* Mobile Navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 77, 64, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-link {
    margin: 0.25rem 0;
  }
}

/* Scroll to Top Button */
.bi-arrow-up-circle-fill {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--secondary-color) !important;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bi-arrow-up-circle-fill.show {
  opacity: 1;
  visibility: visible;
}

.bi-arrow-up-circle-fill:hover {
  color: var(--primary-color) !important;
  transform: translateY(-5px) scale(1.1);
}

/* Loading Animation */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 121, 107, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Service Description */
.service-description {
  color: #6c757d !important;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card:hover .service-description {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Icon Specific Colors */
.bi-speedometer2 { color: var(--primary-color) !important; }
.bi-gem { color: var(--secondary-color) !important; }
.bi-laptop { color: var(--primary-color) !important; }
.bi-soundwave { color: var(--secondary-color) !important; }
.bi-gear-wide-connected { color: var(--primary-color) !important; }
.bi-bezier2 { color: var(--secondary-color) !important; }
.bi-flag-fill { color: var(--secondary-color) !important; }
.bi-trophy-fill { color: var(--secondary-color) !important; }
.bi-tools { color: var(--primary-color) !important; }
.bi-award-fill { color: var(--secondary-color) !important; }
.bi-lightning-charge-fill { color: var(--secondary-color) !important; }
.bi-patch-check-fill { color: var(--primary-color) !important; }
.bi-graph-up-arrow { color: var(--secondary-color) !important; }
.bi-shield-check { color: var(--primary-color) !important; }
.bi-ev-front-fill { color: var(--secondary-color) !important; }
.bi-wrench-adjustable-circle-fill { color: var(--primary-color) !important; }
.bi-building { color: var(--primary-color) !important; }
.bi-heart-fill { color: var(--secondary-color) !important; }
.bi-chat-dots-fill { color: var(--primary-color) !important; }
.bi-bullseye { color: var(--secondary-color) !important; }
.bi-lightning-fill { color: var(--secondary-color) !important; }
.bi-clock-history { color: var(--primary-color) !important; }
.bi-phone { color: var(--secondary-color) !important; }
.bi-envelope { color: var(--primary-color) !important; }
.bi-exclamation-triangle-fill { color: var(--secondary-color) !important; }
.bi-info-circle-fill { color: var(--primary-color) !important; }
.bi-list-ul { color: var(--primary-color) !important; }
.bi-person-circle { color: var(--primary-color) !important; }
.bi-car-front { color: var(--secondary-color) !important; }
.bi-credit-card { color: var(--primary-color) !important; }
.bi-globe { color: var(--secondary-color) !important; }
.bi-credit-card-2-front { color: var(--primary-color) !important; }
.bi-eye { color: var(--primary-color) !important; }
.bi-pencil-square { color: var(--secondary-color) !important; }
.bi-trash { color: #dc3545 !important; }
.bi-envelope-slash { color: #dc3545 !important; }
.bi-chevron-right { color: var(--secondary-color) !important; }
.bi-check-circle-fill { color: var(--primary-color) !important; }
.bi-cpu-fill { color: var(--secondary-color) !important; }
.bi-camera-video-fill { color: var(--primary-color) !important; }
.bi-wireless { color: var(--secondary-color) !important; }
.bi-search { color: var(--primary-color) !important; }
.bi-arrow-right-circle-fill { color: var(--secondary-color) !important; }
.bi-rulers { color: var(--primary-color) !important; }
.bi-wrench-adjustable-circle { color: var(--secondary-color) !important; }
.bi-telephone-fill { color: #ffffff !important; }
.bi-geo-alt-fill { color: var(--secondary-color) !important; }
.bi-envelope-fill { color: var(--secondary-color) !important; }
.bi-arrow-right-circle { color: var(--secondary-color) !important; }

/* Ensure Contrast */
.text-white,
.text-white * {
  color: #ffffff !important;
}

.btn-outline-light,
.btn-outline-light * {
  color: #ffffff !important;
}

.btn-outline-light:hover,
.btn-outline-light:hover * {
  color: var(--primary-color) !important;
}

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

/* Focus States for Accessibility */
a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn,
  .card,
  .form-control,
  .form-select {
    border-width: 3px;
  }
  
  .nav-link::before {
    height: 4px;
  }
}