/* ===== RESPONSIVE STYLES ===== */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .contact-form {
    padding: 4rem;
  }
}

/* Medium devices (tablets, 992px and up) */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .timeline-content {
    width: 50%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 991.98px) {
  .hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .timeline-date {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .career-card {
    margin-bottom: 1.5rem;
  }
}

/* Extra small devices (portrait phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  .testimonial-slide {
    padding: 1rem;
  }
  
  .testimonial-text {
    font-size: 1.125rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-date {
    left: 20px;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .price-card {
    padding: 1.5rem;
  }
  
  .career-card {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .blob {
    display: none;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Ultra small devices (less than 576px) */
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9375rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .team-card {
    margin-bottom: 1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .price-card {
    padding: 1rem;
  }
  
  .career-card {
    padding: 1rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.9375rem;
  }
  
  .accordion-body {
  overflow-x: hidden !important;
    padding: 1rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1.125rem;
  }
}

/* Swiper disabling for mobile */
@media (max-width: 767.98px) {
  .swiper {
    pointer-events: none;
  }
  
  .swiper-slide {
    pointer-events: auto;
  }
  
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  body {
  overflow-x: hidden !important;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .card,
  .service-card,
  .team-card,
  .price-card {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
} 