
/* Base Styles */
:root {
    /* Colors */
    --primary-color: #0f2546;
    --secondary-color: #1e3a6a;
    --accent-color:#ed1a25;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --border-color: #e0e0e0;

    
/* Adventure Typography */
--body-font: 'Poppins';
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--body-font);
    line-height: 1.5;
    color: var(--dark-gray);
    
  }
  
  .container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Hero Section */
  .home-hero {
    position: relative;
    height: 80vh;
    min-height: 80vh;
    width: 95%;
    margin: 0 auto;
    background: linear-gradient(rgba(15, 37, 70, 0.7), rgba(15, 37, 70, 0.7)), url('https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .home-hero__content {
    width: 100%;
    max-width:1550px;
    margin: 0 auto;
    padding: 0 1rem;

  }
  
  .home-hero__subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
  }
  
  .home-hero__title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.2;
  }
  
  /* Search Box Redesign */
  .home-search {
    background: #ffffffcf;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(20px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
  }
  
  .search-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .search-label {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
  }
  
  .select-wrapper {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d6d9df;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .select-wrapper:hover {
    border-color: #D1D5DB;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .select-wrapper:focus-within {
    border-color: #ed1a25;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
  }
  
  .search-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    color: #374151;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  
  .search-select:focus {
    outline: none;
  }
  
  /* Year field styles */
  .year-field {
    flex: 1;
  }
  
  .year-container {
    display: flex;
    gap: 0.5rem;
  }
  
  .year-select-wrapper {
    flex: 1;
  }
  
  .year-select-wrapper:first-child .search-select {
    border-color: #ed1a25;
  }
  
  /* Search button */
  .search-button {
    background-color: #0f2446;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    height: 45px;
    margin-top: 30px;
  }
  
  .search-button:hover {
    background-color: #ed1a25;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .search-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.3);
  }
  
  .search-button i {
    font-size: 1.1rem;
  }
  
  
  /* Advanced search link */
  .advanced-search {
    color: #ed1a25;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    display: block;
    margin-left: auto;
    text-decoration: none;
  }
  
  .advanced-search:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .home-hero__title {
      font-size: 3rem;
    }
    
    .search-row {
      flex-wrap: wrap;
    }
    
    .search-field {
      flex-basis: calc(50% - 0.5rem);
    }
    
    .search-button {
      flex-basis: 100%;
      margin-top: 1rem;
      height: 50px;
    }
  }
  
  @media (max-width: 768px) {
    .home-hero__title {
      font-size: 2.5rem;
    }
    
    .home-search {
      padding: 1.5rem;
    }
    
    .search-field {
      flex-basis: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .home-hero__title {
      font-size: 2rem;
    }
    
    .home-hero__subtitle {
      font-size: 1rem;
    }
    
    .home-search {
      padding: 1rem;
    }
  }


  /* Browse by Make Section */
.browse-make {
    padding: 2rem;
    background-color: rgb(255, 255, 255);
  }
  
  .browse-make__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .browse-make__title {
    font-size: 2rem ;
    font-weight: 700;
    color: var(--dark-gray);
  }
  
  .browse-make__link {
    color: var(--dark-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: color 0.3s ease;
  }
  
  .browse-make__link:hover {
    color: var(--accent-color);
  }
  
  .browse-make__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
  
  .browse-make__item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius:12px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .browse-make__item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .browse-make__logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-md);
    object-fit: contain;
  }
  
  .browse-make__name {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
  }
  


  /* Browse by Type Section */
.browse-type {
  margin-top: -3rem;
  padding: 2rem;
  background-color: var(--white);
}

.browse-type__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.browse-type__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.browse-type__link {
  color: var(--dark-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: color 0.3s ease;
}

.browse-type__link:hover {
  color: var(--accent-color);
}

.browse-type__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
}

.browse-type__item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 16/20;
  cursor: pointer;
}

.browse-type__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.browse-type__item:hover .browse-type__image {
  transform: scale(1.1);
}

.browse-type__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
}

.browse-type__count {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
  opacity: 0.9;
}

.browse-type__name {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .browse-make__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .browse-type__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .home-hero__title {
    font-size: 3rem;
  }
  
  .home-search__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-search__bottom {
    grid-template-columns: 1fr 1fr;
  }
  
  .browse-make__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .browse-type__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-hero__title {
    font-size: 2.5rem;
  }
  
  .home-search {
    padding: var(--spacing-lg);
  }
  
  .home-search__grid {
    grid-template-columns: 1fr;
  }
  
  .home-search__bottom {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .home-search__button {
    width: 100%;
  }
  
  .browse-make__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .browse-make__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .home-hero__title {
    font-size: 2rem;
  }
  
  .home-hero__subtitle {
    font-size: 1rem;
  }
  
  .home-search {
    padding: var(--spacing-md);
  }
  
  .browse-make__grid {
    grid-template-columns: 1fr;
  }
  
  .browse-make__header {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .browse-type__grid {
    grid-template-columns: 1fr;
  }
  
  .browse-type__header {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .browse-type__title {
    font-size: 1.75rem;
  }
}





.auction-section {
  padding: 2rem;
}

.container1 {
  max-width: 1550px;
  margin: 0 auto;
}

.auction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.auction-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
}

.show-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-all:hover {
  color: #1d4ed8;
}

.show-all:hover .arrow {
  transform: translateX(4px);
}

.arrow {
  transition: transform 0.3s ease;
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .auction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.car-card {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.card-header h3 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.category {
  font-size: 0.875rem;
  color: #2563eb;
}

.favorite-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: rgba(243, 244, 246, 0.8);
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

.favorite-btn.active {
  background: #fee2e2;
  color: #ef4444;
}

.favorite-btn.active .heart-icon {
  fill: currentColor;
}

.car-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.5s ease;

}

.car-image img {
  margin-top: 3rem;
  width: 100%;
  height: auto;
  object-fit: cover;

}



.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.color {
  font-weight: 700;
  color: #0f172a;
}

.separator {
  color: #9ca3af;
}

.mileage {
  color: #64748b;
}

.year {
  background: #0f172a;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}


.info-section {
  max-width: auto;
  margin: 0 auto;
  padding:2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {

    font-size: 2rem ;
    font-weight: 700;
    color: var(--dark-gray);
  }

.show-all {
  color: #111827;
  text-decoration: none;
  font-size: 0.875rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.info-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 4/5;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  text-align: center;
}




.testimonials-section {
  margin-top: -0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-align: center;
}

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 80%;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator:hover,
.indicator.active {
  background-color: var(--primary-color);
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
  }
}






@tailwind base;
@tailwind components;
@tailwind utilities;

.map-section {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 65vh;
  position: relative;
  overflow: hidden;


}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 13, 94, 0.11); /* darkblue with transparency */
  pointer-events: none; /* allows clicks to go through to the iframe */
}

.contact-sidebar {
  width: 450px;
  min-width: 450px;
  background-color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 2rem;
}

.contact-content {
  padding: 20px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 30px;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 12px 25px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.phone-button:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 5px 0;
}

.day {
  font-weight: 500;
  color: #0f172a;
}

.hours {
  color: #64748b;
}

.closed {
  color: #ef4444;
  font-weight: 600;
}

.map-container {
  flex: 1;
  height: 100%;

  overflow: hidden;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
    height: 800px;
    border-radius: 12px;
  }

  .contact-sidebar {
    width: 100%;
    height: auto;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }

  .contact-content {
    padding: 20px 10px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .map-container {
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 480px) {
  .map-section {
    height: 750px;
  }

  .contact-content {
    padding: 15px 10px;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .business-hours {
    font-size: 0.9rem;
  }
}

/* Footer styles */
.footer {
  background-color: #0a1026;
  color: #ffffff;
  padding: 2em;
  width: 100%;
}

.footer-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Brand section */
.footer-brand {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 4rem;
  width: auto;
}

.footer-brand p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 350px;
}

/* App download section */
.app-download {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.app-button {
  display: flex;
  align-items: center;
  background-color: #1e293b;
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}

.app-button:hover {
  background-color: #2d3a4f;
}

.app-icon {
  margin-right: 8px;
  font-size: 20px;
}

.app-text {
  display: flex;
  flex-direction: column;
}

.app-store-text {
  font-size: 10px;
  opacity: 0.8;
}

.app-store-name {
  font-weight: bold;
}

/* QR codes section */
.qr-codes {
  display: flex;
  gap: 20px;
}

.qr-code {
  width: 80px;
  height: 80px;
  background-color: white;
  padding: 5px;
  border-radius: 4px;
}

/* Marquee section */
.footer-marquee {
  padding-top: 5rem;
  flex: 1;
  min-width: 65%;
  margin-bottom: 10px;

}

.marquee-wrapper {

  height: 20VH;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  position: absolute;
  white-space: nowrap;
  font-size: 12EM;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
  color: transparent;
  will-change: transform;
}

/* Footer links section */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-links-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 25px;
  padding-right: 15px;
}

.footer-links-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

/* Mobile numbers section */
.footer-mobile {
  flex: 1;
  min-width: 200px;
}

.mobile-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-number {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-number:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-icon {
  margin-right: 8px;
}

/* Social media section */
.footer-social {
  margin-top: 20px;
}

.footer-social-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #aaa;
}

.footer-copyright {
  margin-right: 20px;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-top {
      flex-direction: column;
  }
  
  .footer-links {
      flex-wrap: wrap;
  }
  
  .footer-links-column {
      min-width: 45%;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .footer-copyright {
      margin-right: 0;
  }
  
  .footer-legal {
      justify-content: center;
  }
  
  .marquee-content {
      font-size: 28px;
  }
  
  .marquee-wrapper {
      height: 70px;
  }
}

@media (max-width: 480px) {
  .app-download {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .footer-links-column {
      min-width: 100%;
  }
  
  .qr-codes {
      flex-direction: column;
  }
  
  .marquee-content {
      font-size: 22px;
  }
  
  .marquee-wrapper {
      height: 60px;
  }
}