/* ===== RESPONSIVE STYLES ===== */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
    padding-top: 250px;
}
  
  section {
    padding: 5rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.90rem;
  }
  
  .hero h1 {
    font-size: 2.36rem;
    padding-top: 250px;
}
  
  /* Section spacing */
  section {
    padding: 3rem 0;
  }
  
  /* Service cards */
  .service-card {
    margin-bottom: 1.66rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Process number */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.28rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  /* Typography */
  h1 {
    font-size: 1.81rem;
  }
  
  h2 {
    font-size: 1.64rem;
  }
  
  h3 {
    font-size: 1.32rem;
  }
  
  .hero h1 {
    font-size: 2rem;
    padding-top: 250px;
}
  
  .navbar-brand {
    font-size: 1.21rem;
  }
  
  /* Section spacing */
  section {
    padding: 2.5rem 0;
  }
  
  /* Hero adjustments */
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* Cards and spacing */
  .service-card,
  .price-card,
  .case-study-card {
    padding: 1.5rem;
    margin-bottom: 1.65rem;
  }
  
  .review-card,
  .career-item {
    padding: 1.25rem;
    margin-bottom: 1.40rem;
  }
  
  .faq-card {
    padding: 1.25rem;
  }
  
  /* Team section */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .team-member {
    margin-bottom: 1.69rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Process steps */
  .process-step {
    padding: 1rem;
    margin-bottom: 1.68rem;
  }
  
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  /* Timeline */
  .timeline-item {
    padding-left: 1.5rem;
    margin-bottom: 1.72rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Feature items */
  .feature-item {
    padding: 1rem;
    margin-bottom: 1.60rem;
  }
  
  .feature-icon {
    font-size: 2.55rem;
  }
  
  /* Core info */
  .coreinfo-item {
    padding: 1rem;
    margin-bottom: 1.48rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Typography */
  h1 {
    font-size: 1.53rem;
  }
  
  h2 {
    font-size: 1.48rem;
  }
  
  h3 {
    font-size: 1.22rem;
  }
  
  .hero h1 {
    font-size: 1.85rem;
    padding-top: 250px;
}
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  p {
    font-size: 1.04rem;
  }
  
  /* Section spacing */
  section {
    padding: 2rem 0;
  }
  
  /* Hero */
  .hero {
    min-height: 70vh;
  }
  
  .hero p {
    font-size: 1.07rem;
  }
  
  /* Cards */
  .service-card,
  .price-card,
  .case-study-card {
    padding: 1.25rem;
  }
  
  .review-card,
  .career-item,
  .faq-card {
    padding: 1rem;
  }
  
  /* Price value */
  .price-value {
    font-size: 2rem;
  }
  
  .service-price {
    font-size: 1.34rem;
  }
  
  /* Team */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.25rem;
  }
  
  .form-control {
    padding: 0.625rem 0.875rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
  }
  
  /* Process */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Timeline */
  .timeline-item {
    padding-left: 1.25rem;
  }
  
  .timeline-item::before {
    width: 12px;
    height: 12px;
    left: -7px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 180px;
  }
  
  /* Feature icon */
  .feature-icon {
    font-size: 2rem;
  }
  
  /* Navbar adjustments */
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: 90vh;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Back to top button responsive */
@media (max-width: 767.98px) {
  .btn-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .btn-back-to-top i {
    font-size: 0.97rem;
  }
}

/* Gallery responsive enhancements */
@media (max-width: 767.98px) {
  .gallery-item a::after {
    width: 50px;
    height: 50px;
    font-size: 1.52rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-item a::after {
    width: 40px;
    height: 40px;
    font-size: 1.27rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  footer,
  .btn,
  .contact-form,
  .btn-back-to-top {
    display: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
} 