/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* No animations on mobile for better performance */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Hero section mobile adjustments */
  #hero {
    padding-top: 60px;
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  /* Section padding adjustments */
  #about,
  #services,
  #features,
  #priceplan,
  #team,
  #reviews,
  #casestudy,
  #process,
  #timeline,
  #career,
  #coreinfo,
  #contact,
  #blog,
  #faq,
  #gallery {
    padding: 40px 0;
  }
  
  /* Card adjustments */
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .contact-form,
  .blog-card,
  .faq-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  /* Team photo size adjustment */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process number size adjustment */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Feature icon adjustment */
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery image height adjustment */
  .gallery-image {
    height: 200px;
  }
  
  /* Blog image height adjustment */
  .blog-image {
    height: 150px;
  }
  
  /* Footer adjustments */
  #footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.375rem;
  }
  
  #hero {
    padding-top: 70px;
  }
  
  .hero-shape {
    opacity: 0.05;
  }
  
  .hero-shape-1 {
    width: 150px;
    height: 150px;
  }
  
  .hero-shape-2 {
    width: 120px;
    height: 120px;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .blog-image {
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    margin-bottom: 2.75rem;
  }
  
  .gallery-image {
    height: 230px;
  }
  
  .blog-image {
    height: 190px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .gallery-image {
    height: 280px;
  }
  
  .blog-image {
    height: 220px;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 180px;
    height: 180px;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .hero-shape {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    overflow-x: hidden;
}
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  
  .section-title {
    page-break-after: avoid;
  }
  
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    break-inside: avoid;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
  }
} 