/* ========================================
   RESPONSIVE STYLES
   Mobile-First Responsive Design
   ======================================== */

/* Mobile Landscape and Below (768px) */
@media (max-width: 767.98px) {
  /* Typography Adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  /* Remove animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Card Hover Effects Disabled */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .case-card:hover,
  .career-card:hover,
  .info-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  /* Section Padding Reduction */
  .section {
    padding: 2rem 0;
  }
  
  /* Price Cards Stack Better */
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  /* Team Images */
  .team-image {
    height: 200px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem 1rem;
  }
  
  /* Process Numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Timeline Adjustments */
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  /* Gallery Images */
  .gallery-image {
    height: 200px;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem 0;
  }
  
  /* Button Adjustments */
  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Form Controls */
  .form-control {
    padding: 0.5rem;
  }
  
  /* Card Spacing */
  .card {
    margin-bottom: 1.5rem;
  }
  
  /* Remove decorative blobs on mobile */
  .blob-shape {
    display: none;
  }
}

/* Tablet Portrait (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero Section */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  /* Team Images */
  .team-image {
    height: 225px;
  }
  
  /* Gallery Images */
  .gallery-image {
    height: 225px;
  }
  
  /* Section Padding */
  .section {
    padding: 3rem 0;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2.5rem;
  }
  
  /* Price Cards */
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Desktop Small (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Full effects enabled */
  .hero-section {
    min-height: 95vh;
  }
  
  /* Standard typography maintained */
  /* Standard section padding maintained */
  
  /* Decorative elements at reduced size */
  .blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .blob-2 {
    width: 150px;
    height: 150px;
  }
}

/* Desktop Large (1200px and up) */
@media (min-width: 1200px) {
  /* Full hero height */
  .hero-section {
    min-height: 100vh;
  }
  
  /* Enhanced spacing for large screens */
  .section {
    padding: 5rem 0;
  }
  
  /* Larger contact form */
  .contact-form {
    padding: 4rem;
  }
  
  /* Full decorative elements */
  .blob-1 {
    width: 350px;
    height: 350px;
  }
  
  .blob-2 {
    width: 250px;
    height: 250px;
  }
  
  /* Enhanced card effects */
  .price-card.featured {
    transform: scale(1.08);
  }
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
  /* Container max-width adjustments if needed */
  .container {
    max-width: 1320px;
  }
  
  /* Enhanced typography for very large screens */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  /* Enhanced section spacing */
  .section {
    padding: 6rem 0;
  }
}

/* Print Styles */
@media print {
  /* Remove backgrounds and colors for printing */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  /* Remove decorative elements */
  .blob-shape {
    display: none !important;
  }
  
  /* Ensure proper page breaks */
  .section {
    page-break-inside: avoid;
  }
  
  /* Hide navigation and footer */
  .navbar,
  .footer {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-navy: #000000;
    --primary-teal: #006666;
    --primary-coral: #cc0000;
    --medium-gray: #333333;
    --light-gray: #f0f0f0;
  }
}

/* Dark Mode Preference */

/* Focus Indicators for Accessibility */
*:focus {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-navy);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

.hero-section h1 {
    padding-top: 250px;
}