/* MOBILE NOTARY & DOCUMENT CLINIC TEMPLATE - RESPONSIVE STYLES */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  /* Gallery */
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  /* Typography */
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  /* Navbar */
  .navbar-nav {
    margin-top: var(--spacing-md);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
  }
  
  .navbar-nav.show {
    display: flex;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: var(--spacing-sm);
    width: 100%;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .navbar {
    flex-wrap: wrap;
  }
  
  /* Services */
  .services-item-img {
    height: 200px;
  }
  
  /* Team */
  .team-member-img {
    width: 180px;
    height: 180px;
  }
  
  /* Price Plans */
  .price-plan-item {
    margin-bottom: var(--spacing-lg);
  }
  
  /* Footer */
  .footer-column {
    margin-bottom: var(--spacing-xl);
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  /* Section Spacing */
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero Section */
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  /* Header */
  .header {
    position: relative;
  }
  
  /* About Features */
  .about-feature {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  .about-feature-icon {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Gallery */
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  /* Services */
  .services-item-img {
    height: 180px;
  }
  
  /* Reviews Slider */
  .reviews-item {
    margin: 0;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  /* Container */
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Services */
  .services-item-price {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Team */
  .team-member-img {
    width: 150px;
    height: 150px;
  }
  
  /* Gallery */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact Form */
  .contact-form {
    padding: var(--spacing-lg);
  }
  
  /* Footer */
  .footer-bottom {
    text-align: center;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-slide {
    transition: transform 0.001s !important;
  }
  
  .card:hover,
  .price-plan-item:hover,
  .blog-item:hover {
    transform: none !important;
  }
  
  .gallery-img:hover {
    transform: none !important;
  }
}

/* Disable Slider Autoplay on Mobile */
@media (max-width: 767.98px) {
  .swiper-autoplay {
    display: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --neutral-100: #121212;
    --neutral-200: #1e1e1e;
    --neutral-300: #2c2c2c;
    --neutral-400: #3d3d3d;
    --neutral-500: #5f5f5f;
    --neutral-600: #969696;
    --neutral-700: #c4c4c4;
    --neutral-800: #e0e0e0;
    --neutral-900: #f5f5f5;
    
    --primary-1-light: #7b88d3;
    --primary-1: #5C6BC0;
    --primary-1-dark: #4051b5;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3), 0 5px 10px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .card,
  .price-plan-item,
  .blog-item,
  .reviews-item,
  .contact-form,
  .faq-item,
  .services-item-content {
    background-color: var(--neutral-200);
  }
  
  .card-footer,
  .price-plan-body {
    background-color: var(--neutral-300);
  }
  
  .form-control {
    background-color: var(--neutral-300);
    border-color: var(--neutral-400);
    color: var(--neutral-800);
  }
  
  .header,
  .header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
  }
  
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    background-color: var(--neutral-700);
  }
} 