<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive Styles for Collector Car Revival */

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Large devices (desktops, 992px and up) - Ensure mobile menu buttons are hidden */
@media (min-width: 992px) {
  .navbar-toggler,
  .nav-close {
    display: none !important;
  }
  
  .navbar-collapse {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
  }
  
  .nav-item {
    margin-left: 2rem !important;
    margin-bottom: 0 !important;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-content {
    gap: 2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, 
  .about-text {
    width: 100%;
    flex: none;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .team-member-image {
    height: 250px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 8rem 0 4rem;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .priceplan-card,
  .team-member {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .services-grid,
  .priceplan-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .accordion-header {
    font-size: 0.95rem;
    padding: 1.2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .service-name,
  .priceplan-name,
  .coreinfo-title {
    font-size: 1.2rem;
  }
  
  .service-price,
  .priceplan-price {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Navigation responsive */
@media (max-width: 991.98px) {
  .navbar {
    position: relative;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-toggler {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover,
  .navbar-toggler:focus {
    background-color: rgba(139, 90, 43, 0.1);
    outline: none;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 2000;
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .nav-close:hover,
  .nav-close:focus {
    background-color: rgba(139, 90, 43, 0.1);
    outline: none;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .overlay.show {
    opacity: 1;
    visibility: visible;
  }
}

/* For prefers-reduced-motion */
@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;
  }
  
  .swiper-container {
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--primary-light);
    --swiper-pagination-color: var(--accent-color);
  }
  
  .service-card:hover,
  .priceplan-card:hover,
  .team-member:hover,
  .blog-item:hover,
  .about-feature:hover,
  .feature-item:hover,
  .coreinfo-item:hover {
    transform: none;
  }
} </pre></body></html>