/* Responsive CSS */

/* Virtual Assistant Services - Responsive CSS */

/* Mobile First Approach */
@media (max-width: 576px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 1.86rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.58rem;
  }
  
  .service-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .testimonial-card {
    margin: 0.5rem;
    padding: 1rem;
  }
}

/* Tablet Styles */
@media (min-width: 577px) and (max-width: 768px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
  
  .col-md-6 .service-item {
    height: auto;
    min-height: 200px;
  }
}

/* Desktop Styles */
@media (min-width: 769px) and (max-width: 992px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2.34rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Large Desktop */
@media (min-width: 993px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: 2.60rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Navigation Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* FAQ Responsive */
@media (max-width: 576px) {
  .faq-question {
    padding: 1rem;
    font-size: 0.93rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.87rem;
  }
}

/* Price Card Responsive */
@media (max-width: 768px) {
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .price {
    font-size: 1.76rem;
  }
}

/* Form Responsive */
@media (max-width: 576px) {
  .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.94rem;
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.96rem;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  footer .col-md-4 {
    margin-bottom: 2rem;
  }
  
  footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  footer li {
    list-style: none;
  }
}

/* Breadcrumb Responsive */
@media (max-width: 576px) {
  .breadcrumb {
    font-size: 0.95rem;
  }
  
  .breadcrumb img {
    width: 16px;
    height: 16px;
  }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero .col-lg-6:last-child {
    margin-top: 2rem;
  }
}

/* Container Responsive */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Card Hover Effects - Disable on Touch Devices */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  }
  
  .service-item:hover {
    transform: none;
    background: linear-gradient(135deg, var(--light-violet), var(--light-blue));
    color: inherit;
  }
  
  .gallery-item:hover {
    transform: none;
  }
}
