/* Base Styles */
@import '../variables.css';
@import '../responsive.css';

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(224, 94, 26, 0.3);
}

.btn-primary:hover {
  background-color: rgba(224, 94, 26, 0.9);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--secondary);
  transition: all 0.3s ease;
  text-align: center;
}

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

.full-width {
  width: 100%;
}

/* Utility Classes */
.text-dark-blue {
  color: var(--secondary);
}

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

.section-spacer {
  height: 2.5rem;
  background-color: var(--white);
}

@media (min-width: 768px) {
  .section-spacer {
    height: 5rem;
  }
}

/* Animation */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 50;
  transition: box-shadow 0.3s ease;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Thin outline under navbar */
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 1rem;
}

@media (min-width: 640px) {
  .navbar nav {
    padding: 0.875rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .navbar nav {
    padding: 1.25rem 2rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar nav {
    padding: 1.25rem 3rem;
    gap: 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .logo {
    font-size: 1.5rem;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .logo {
    font-size: 2rem;
  }
}

.car-icon {
  color: var(--secondary);
  font-size: 1.5rem;
}

@media (min-width: 480px) {
  .car-icon {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .car-icon {
    font-size: 2.75rem;
  }
}

.logo span {
  color: var(--primary);
}

.desktop-menu,
.desktop-buttons {
  display: none;
}

.desktop-menu a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.desktop-menu a.active-link {
  color: var(--primary);
}

.desktop-menu a.active-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 100%;
  background-color: var(--primary);
  /* ORANGE underline */
  border-radius: 2px;
}

.dropdown {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -5px;
  right: -5px;
  height: 5px;
  background: transparent;
  z-index: 999;
}

.dropdown-toggle {
  all: unset;
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.dropdown-toggle:hover {
  background-color: #2A3B54;
  transform: translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 1000;
  border-radius: 8px;
  width: 8rem;
  margin-top: 0px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Keep Login/Sign Up buttons styled when dropdown is open */
.dropdown:hover .dropdown-toggle {
  background-color: #2A3B54;
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-1px);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 400;
  text-align: left;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}

.dropdown-menu a:last-child {
  margin-top: 0;
}

.dropdown-menu a:hover {
  background-color: var(--gray-100);
  color: var(--secondary);
}


@media (min-width: 1210px) {
  .desktop-menu {
    display: flex;
    gap: 2.25rem;
    font-size: 1.05rem;
  }

  .desktop-menu a {
    font-weight: 500;
    white-space: nowrap;
  }

  .desktop-menu a:hover {
    color: var(--primary);
  }
}

@media (min-width: 1210px) {
  .desktop-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .auth-buttons {
    display: flex;
    gap: 1rem;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}

.mobile-toggle:hover {
  color: var(--primary);
}

.mobile-toggle:active {
  transform: scale(0.95);
}

@media (min-width: 1210px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background-color: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

.mobile-menu a {
  padding: 1rem 1.5rem;
  color: var(--gray-800);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background-color: var(--gray-50);
  color: var(--primary);
  padding-left: 1.75rem;
}

.mobile-menu .mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-top: 2px solid var(--gray-200);
}

.mobile-menu .mobile-buttons .btn-outline {
  padding: 0.875rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  border: 2px solid var(--secondary);
  background-color: var(--white);
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-menu .mobile-buttons .btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 69, 110, 0.2);
}

.mobile-menu .btn-primary {
  padding: 1rem 1.5rem;
  margin-top: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(224, 94, 26, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu .btn-primary:hover {
  background: rgba(224, 94, 26, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 94, 26, 0.4);
}

.mobile-menu .mobile-buttons {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-menu .btn-primary {
  margin-top: 0.5rem;
}

/* Mission Section */
.mission {
  padding: 6rem 0 2rem;
  background: var(--white);
  color: var(--gray-800);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .mission {
    padding: 7rem 0 3rem;
  }
}

@media (min-width: 768px) {
  .mission {
    padding: 8rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .mission {
    padding: 9rem 0 5rem;
  }
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.mission-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary);
}

@media (min-width: 480px) {
  .mission-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 640px) {
  .mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .mission-text h2 {
    font-size: 3rem;
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .mission-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.mission-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 480px) {
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 500;
  margin-top: 0.5rem;
}

.mission-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* CEO Message */
.ceo-message {
  padding: 2.5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .ceo-message {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .ceo-message {
    padding: 5rem 0;
  }
}

.testimonial-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .testimonial-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.testimonial-text {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 6rem;
  color: var(--primary);
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .testimonial-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 640px) {
  .testimonial-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .testimonial-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .testimonial-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.testimonial-text blockquote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.testimonial-text blockquote p {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  padding-top: 2rem;
  border-top: 3px solid var(--primary);
}

.testimonial-author h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  color: var(--gray-600);
  font-weight: 500;
}

.testimonial-image {
  position: relative;
}

.testimonial-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--white);
}

.testimonial-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.1;
}

/* Team Section */
.team-section {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (min-width: 768px) {
  .team-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .team-section {
    padding: 5rem 0;
  }
}

.team-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* First three team members span 2 columns each (fills all 6 columns) */
.team-member:nth-child(1) {
  grid-column: 1 / 3;
}

.team-member:nth-child(2) {
  grid-column: 3 / 5;
}

.team-member:nth-child(3) {
  grid-column: 5 / 7;
}

/* Bottom two members are centered with space on sides */
.team-member:nth-child(4) {
  grid-column: 2 / 4;
}

.team-member:nth-child(5) {
  grid-column: 4 / 6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-member:nth-child(1),
  .team-member:nth-child(2),
  .team-member:nth-child(3),
  .team-member:nth-child(4),
  .team-member:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
  background: var(--white);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b35);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.member-image {
  margin-bottom: 2rem;
  position: relative;
}

.member-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary);
  margin: 0 auto;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(224, 94, 26, 0.2);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.member-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 80px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  color: var(--gray-600);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  text-decoration: none;
}

.member-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-social a:first-child:hover {
  background: linear-gradient(135deg, #0077b5, #005885);
  color: var(--white);
}

.member-social a:nth-child(2):hover {
  background: linear-gradient(135deg, #333, #000);
  color: var(--white);
}

.member-social a:last-child:hover {
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  color: var(--white);
}

/* Values Section */
.values {
  padding: 2.5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .values {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .values {
    padding: 5rem 0;
  }
}

.values h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .values h2 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 640px) {
  .values h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .values h2 {
    font-size: 2.25rem;
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .values h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b35);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 10px 30px rgba(224, 94, 26, 0.2);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -0.25rem;
}

.footer-logo-icon i {
  color: var(--secondary);
  font-size: 2rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--white);
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--white);
}

.contactinfo li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .copyright {
    margin-bottom: 0;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

@media (min-width: 1024px) {
  .navbar nav {
    max-width: 1500px;
    margin: 0 auto;
  }
}