/* Responsive Styles */

/* Large screens (lg) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .process-step::after {
    display: none;
  }
}

/* Medium screens (md) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    margin-left: 1rem;
    padding-left: 1.5rem;
  }
}

/* Small screens (sm) */
@media (max-width: 767.98px) {
  .section {
    padding: var(--section-padding-sm);
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero-desc {
    font-size: var(--font-size-base);
  }
  
  .section-title {
    font-size: var(--font-size-lg);
  }
  
  .section-subtitle {
    font-size: var(--font-size-base);
  }
  
  .section-desc {
    font-size: var(--font-size-sm);
  }
  
  .navbar-brand {
    font-size: var(--font-size-base);
  }
  
  .navbar-nav .nav-link {
    font-size: var(--font-size-sm);
    padding: 0.5rem 0.75rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 0.65rem 1.5rem;
    font-size: var(--font-size-sm);
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: var(--font-size-sm);
  }
}

/* Extra small screens (xs) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: var(--font-size-lg);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .section-title {
    font-size: var(--font-size-base);
  }
  
  .section-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .card-header {
    padding: 1rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .faq-question {
    font-size: var(--font-size-base);
  }
  
  .faq-answer {
    font-size: var(--font-size-sm);
  }
  
  .timeline-item {
    margin-left: 0.5rem;
    padding-left: 1rem;
  }
  
  .process-step {
    padding: 1rem 0.5rem;
  }
  
  .process-number {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.75rem;
  }
}

/* Utility classes for responsive visibility */
.d-xs-block { display: block !important; }
.d-xs-none { display: none !important; }

@media (min-width: 576px) {
  .d-xs-block { display: none !important; }
  .d-xs-none { display: block !important; }
}

/* Responsive text alignment */
.text-xs-center { text-align: center !important; }
.text-xs-left { text-align: left !important; }
.text-xs-right { text-align: right !important; }

@media (min-width: 576px) {
  .text-xs-center { text-align: inherit !important; }
  .text-xs-left { text-align: inherit !important; }
  .text-xs-right { text-align: inherit !important; }
}

/* Responsive spacing */
.mb-xs-2 { margin-bottom: 0.5rem !important; }
.mb-xs-3 { margin-bottom: 1rem !important; }
.mb-xs-4 { margin-bottom: 1.5rem !important; }

@media (min-width: 576px) {
  .mb-xs-2 { margin-bottom: inherit !important; }
  .mb-xs-3 { margin-bottom: inherit !important; }
  .mb-xs-4 { margin-bottom: inherit !important; }
}

/* Responsive image sizing */
.img-responsive {
  max-width: 100%;
  height: auto;
}

/* Responsive containers */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Responsive hero section adjustments */
@media (max-width: 767.98px) {
  .hero-section::before {
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
  }
}

/* Responsive card adjustments */
@media (max-width: 767.98px) {
  .card {
    margin-bottom: 1rem;
  }
  
  .service-card:hover,
  .card:hover {
    transform: none;
  }
}

/* Responsive navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
} 

.hero-content {
    padding-top: 200px;
}