/* 
   FOX BMS Website Styles
   Enhanced version with additional animations and optimizations
*/

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  color: #3f3f3f;
  line-height: 1.5;
  background-color: #ffffff;
  padding-top: var(--header-height);
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===== COLOR VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary-orange: #ea700d;
  --primary-dark-gray: #3f3f3f;
  
  /* Complementary Colors */
  --accent-green: #0dea70;
  --accent-purple: #6f0dea;
  
  /* Supporting Colors */
  --light-gray: #f5f5f5;
  --white: #ffffff;
  
  /* Derived Colors */
  --primary-orange-dark: #d46209; /* For hover states */
  --primary-orange-light: #f7a96a; /* For lighter accents */
  
  /* Animation Durations */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-dark-gray);
}

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2rem; /* 32px */
}

h3 {
  font-size: 1.5rem; /* 24px */
}

h4 {
  font-size: 1.25rem; /* 20px */
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color var(--transition-medium) ease, transform var(--transition-medium) ease;
}

a:hover {
  color: var(--primary-orange-dark);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

/* ===== HEADER ===== */
/* header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform var(--transition-medium) ease;
} */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 40px);
  transition: box-shadow 0.3s ease;
  background-color: var(--white);
}

/* Header scroll behavior */
header.scrolled {
  transform: translateY(-40px); /* Hide utility nav when scrolled */
}

header.scroll-up {
  transform: translateY(0);
}

header.scroll-down {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  height: 50px;
  transition: transform var(--transition-medium) ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 100%;
}

/* ===== NAVIGATION ===== */
.utility-nav {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  font-size: 0.875rem;
}

.utility-nav a {
  margin-left: 1.5rem;
  color: var(--primary-dark-gray);
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 1.5rem;
  position: relative;
}

.main-nav a {
  color: var(--primary-dark-gray);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-medium) ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width var(--transition-medium) ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-dark-gray);
  transition: color var(--transition-fast) ease, transform var(--transition-fast) ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary-orange);
  transform: scale(1.1);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium) ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background-color: var(--primary-orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
  background-color: var(--primary-dark-gray);
  color: var(--white);
}

.btn-tertiary:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-tertiary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 8rem 0 4rem;
  background-color: var(--light-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(234, 112, 13, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

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

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

/* ===== CARDS ===== */
.card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.card img {
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-medium) ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card p {
  flex-grow: 1;
}

.card .btn {
  align-self: flex-start;
}

/* ===== GRID SYSTEM ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  padding: 0 1rem;
  flex: 1;
  min-width: 0;
}

.col-1 { flex-basis: 8.333%; }
.col-2 { flex-basis: 16.666%; }
.col-3 { flex-basis: 25%; }
.col-4 { flex-basis: 33.333%; }
.col-5 { flex-basis: 41.666%; }
.col-6 { flex-basis: 50%; }
.col-7 { flex-basis: 58.333%; }
.col-8 { flex-basis: 66.666%; }
.col-9 { flex-basis: 75%; }
.col-10 { flex-basis: 83.333%; }
.col-11 { flex-basis: 91.666%; }
.col-12 { flex-basis: 100%; }

.offset-col-1 { margin-left: 8.333%; }
.offset-col-2 { margin-left: 16.666%; }
.offset-col-3 { margin-left: 25%; }
.offset-col-4 { margin-left: 33.333%; }
.offset-col-5 { margin-left: 41.666%; }
.offset-col-6 { margin-left: 50%; }
.offset-col-7 { margin-left: 58.333%; }
.offset-col-8 { margin-left: 66.666%; }
.offset-col-9 { margin-left: 75%; }
.offset-col-10 { margin-left: 83.333%; }
.offset-col-11 { margin-left: 91.666%; }

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color var(--transition-medium) ease;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-medium) ease, box-shadow var(--transition-medium) ease, transform var(--transition-fast) ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(234, 112, 13, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.required {
  color: var(--primary-orange);
}

.error-message {
  color: #d9534f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
  transition: all var(--transition-medium) ease;
}

.form-response {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  display: none;
  animation: fadeIn var(--transition-medium) ease;
}

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

.form-response.success {
  display: block;
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.form-response.error {
  display: block;
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

.form-group.focused label {
  color: var(--primary-orange);
}

.button-loader {
  margin-left: 0.5rem;
}

/* Form field animation */
.form-group input,
.form-group textarea,
.form-group select {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width var(--transition-medium) ease;
  z-index: 0;
}

.form-group.focused::after {
  width: 100%;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-right: 1rem;
  min-width: 1.5rem;
  text-align: center;
  transition: transform var(--transition-medium) ease;
}

.contact-item:hover i {
  transform: scale(1.2);
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* ===== PROJECT ITEMS ===== */
.project-item {
  margin-bottom: 3rem;
  transition: opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.project-meta span {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  transition: transform var(--transition-fast) ease;
}

.project-meta span:hover {
  transform: translateY(-2px);
}

.project-meta i {
  color: var(--primary-orange);
  margin-right: 0.25rem;
}

.project-filters {
  margin-bottom: 2rem;
}

.project-filters button {
  margin: 0 0.5rem 1rem;
  transition: all var(--transition-medium) ease;
}

.project-filters button.active {
  background-color: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}

/* ===== TEAM MEMBERS ===== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
  transition: transform var(--transition-medium) ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  border-radius: 50%;
  margin-bottom: 1rem;
  max-width: 100%;
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.team-member:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-member .position {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== BENEFIT ITEMS ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-medium) ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-item i {
  margin-right: 1rem;
  min-width: 2rem;
  text-align: center;
  color: var(--primary-orange);
  transition: transform var(--transition-medium) ease;
}

.benefit-item:hover i {
  transform: scale(1.2);
}

.benefit-item h3 {
  margin-bottom: 0.5rem;
}

/* ===== MAP CONTAINER ===== */
.map-container {
  height: 400px;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition-medium) ease;
}

.map-container:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  height: 100%;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* ===== SERVICE FEATURES ===== */
.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  transition: transform var(--transition-fast) ease;
}

.service-features li:hover {
  transform: translateX(5px);
}

.service-features i {
  margin-right: 0.75rem;
  min-width: 1rem;
  color: var(--primary-orange);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width var(--transition-medium) ease;
}

.footer-section:hover h4::after {
  width: 75px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  transition: transform var(--transition-fast) ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--white);
  transition: color var(--transition-medium) ease;
}

.footer-links a:hover {
  color: var(--primary-orange-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: transform var(--transition-medium) ease, color var(--transition-medium) ease;
}

.social-links a:hover {
  color: var(--primary-orange);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow) ease, transform var(--transition-slow) ease;
}

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

/* Staggered animation for multiple elements */
.row .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.row .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.row .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.row .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

/* ===== LAZY LOADING ===== */
img.loaded {
  animation: fadeIn var(--transition-medium) ease;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.accent-line {
  height: 3px;
  width: 60px;
  background-color: var(--primary-orange);
  margin: 1rem 0;
  transition: width var(--transition-medium) ease;
}

.accent-line.center {
  margin: 1rem auto;
}

section:hover .accent-line {
  width: 80px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1023px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.15rem; }
  
  .container {
    padding: 0 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium) ease;
    overflow-y: auto;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 0 0 1rem 0;
  }
  
  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.2rem;
  }
  
  .row {
    flex-direction: column;
  }
  
  .col {
    flex-basis: 100%;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .offset-col-1, .offset-col-2, .offset-col-3, .offset-col-4,
  .offset-col-5, .offset-col-6, .offset-col-7, .offset-col-8,
  .offset-col-9, .offset-col-10, .offset-col-11 {
    margin-left: 0;
  }
  
  .project-meta {
    flex-direction: column;
  }
  
  .project-meta span {
    margin-bottom: 0.5rem;
  }
  
  /* Adjust animations for mobile */
  .animate-on-scroll {
    transition-delay: 0s !important;
  }
  
  .row .animate-on-scroll:nth-child(n) {
    transition-delay: 0s;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .utility-nav {
    justify-content: center;
  }
  
  .utility-nav a {
    margin: 0 0.75rem;
  }
  
  /* Reduce animation intensity for smaller devices */
  .card:hover,
  .contact-info:hover,
  .team-member:hover,
  .benefit-item:hover,
  .footer-links li:hover {
    transform: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  header, footer, .hero, .project-filters, .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .row {
    display: block;
  }
  
  .col {
    display: block;
    width: 100%;
    padding: 0;
  }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

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

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-orange);
  color: white;
  padding: 8px;
  z-index: 1001;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* High contrast mode adjustments */
@media (forced-colors: active) {
  .btn, .card, .contact-info {
    border: 1px solid;
  }
  
  .accent-line {
    background-color: currentColor;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}