/* Responsive Styles - Mobile First */

/* Tablet styles */
@media (max-width: 992px) {
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Spacing adjustments */
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 4rem 0;
    min-height: 80vh;
  }
  
  /* Card adjustments */
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  /* NO ANIMATIONS IN MOBILE RESOLUTION */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography for mobile */
  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Conservative navbar-brand on mobile */
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hide decorative shapes on mobile */
  .hero-shape {
    display: none;
  }
  
  /* Section adjustments */
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  /* Cards mobile optimization */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-card,
  .timeline-card,
  .career-card,
  .coreinfo-card,
  .blog-card,
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Service cards specific */
  .service-image {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .service-image i {
    font-size: 1.5rem;
  }
  
  .service-name {
    font-size: 1.1rem;
  }
  
  .service-features {
    margin-bottom: 1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  /* Price cards mobile */
  .price-card.featured {
    transform: none;
    border: 2px solid var(--primary-purple);
  }
  
  .price-name {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* Team cards mobile */
  .team-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  /* Process cards mobile */
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .process-title {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.75rem;
  }
  
  /* Contact section mobile */
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info-item {
    margin-bottom: 1rem;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  /* Form mobile */
  .form-control {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
  }
  
  /* Icon adjustments */
  .feature-icon,
  .coreinfo-icon {
    font-size: 2rem;
  }
}

/* Small mobile styles */
@media (max-width: 576px) {
  /* Extra small screen adjustments */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero very small screens */
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  /* Sections very small screens */
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .section-desc {
    font-size: 0.9rem;
  }
  
  /* Cards very small screens */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-card,
  .timeline-card,
  .career-card,
  .coreinfo-card,
  .blog-card,
  .faq-card {
    padding: 1.25rem;
  }
  
  /* Contact form very small */
  .contact-form {
    padding: 1.25rem;
  }
  
  .contact-info {
    padding: 1.25rem;
  }
  
  /* Price amount smaller */
  .price-amount {
    font-size: 1.75rem;
  }
  
  /* Team photo smaller */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Navbar mobile menu adjustments */
  .navbar-collapse {
    text-align: center;
  }
  
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp text rendering on high DPI displays */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
}

/* Dark mode preference */

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  /* Ensure no animations even in responsive breakpoints */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}


.hero-content {
    padding-top: 175px;
}