/* Responsive Styles */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-content h1 {
  padding-top: 50px !important; {
    font-size: 1.81rem;
  }
  
  .hero-image img {
    height: 250px;
    margin-top: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 1.56rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 85vh;
  }
  
  .hero-content h1 {
  padding-top: 50px !important; {
    font-size: 2rem;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .service-card .icon {
    width: 70px;
    height: 70px;
    font-size: 1.84rem;
  }
  
  .team-member img {
    width: 175px;
    height: 175px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 90vh;
  }
  
  .hero-content h1 {
  padding-top: 50px !important; {
    font-size: 2.39rem;
  }
  
  .hero-image img {
    height: 350px;
  }
  
  .service-card {
    height: 100%;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
  
  .testimonial-card {
    height: 100%;
  }
  
  .gallery-item img {
    height: 230px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 95vh;
  }
  
  .hero-content h1 {
  padding-top: 50px !important; {
    font-size: 2.56rem;
  }
  
  .hero-image img {
    height: 380px;
  }
  
  .service-card {
    height: 100%;
  }
  
  .team-member img {
    width: 190px;
    height: 190px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 100vh;
  }
  
  .hero-content h1 {
  padding-top: 50px !important; {
    font-size: 3rem;
  }
  
  .container-fluid.hero-container {
    max-width: 1400px;
  }
  
  .service-card {
    height: 100%;
  }
  
  .team-member img {
    width: 200px;
    height: 200px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Navigation Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    margin-top: 1rem;
    border-radius: 10px;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    color: var(--dark-blue) !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Card Adjustments */
@media (max-width: 767.98px) {
  .card-columns {
    column-count: 1;
  }
  
  .row .col-lg-4,
  .row .col-md-6 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .card-columns {
    column-count: 2;
  }
}

/* Form Responsive */
@media (max-width: 575.98px) {
  .form-row .col-md-6 {
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer .row > div {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer .row > div:last-child {
    margin-bottom: 0;
  }
}

/* Typography Responsive */
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.83rem;
  }
  
  h2 {
    font-size: 1.55rem;
  }
  
  h3 {
    font-size: 1.33rem;
  }
  
  .section-title h2 {
    font-size: 1.80rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.83rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

/* Spacing Adjustments */
@media (max-width: 575.98px) {
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Animation Adjustments for Mobile */
@media (max-width: 767.98px) {
  .fade-in,
  .slide-in-left,
  .slide-in-right {
    transform: none;
    opacity: 1;
  }
}

/* Image Responsive Adjustments */
@media (max-width: 575.98px) {
  .hero-section::before {
    display: none;
  }
  
  .card-img-top {
    height: 150px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .card-img-top {
    height: 175px;
  }
}

/* Price Plan Responsive */
@media (max-width: 767.98px) {
  .price-plan-card {
    margin-bottom: 2rem;
  }
}

/* Blog Responsive */
@media (max-width: 575.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* FAQ Responsive */
@media (max-width: 575.98px) {
  .faq-question {
    padding: 1rem;
    font-size: 1.04rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.94rem;
  }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Contact Info Responsive */
@media (max-width: 575.98px) {
  .contact-info {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/* Breadcrumb Responsive */
@media (max-width: 575.98px) {
  .breadcrumb {
    justify-content: center;
  }
  
  .breadcrumb-item img {
    width: 16px;
    height: 16px;
  }
} 