/* ===== RESPONSIVE STYLES ===== */

/* Extra Small Devices (xs) - 576px and down */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.57rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 1.03rem;
  }
  
  .section-title {
    font-size: 1.56rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .services-item,
  .priceplan-item,
  .contact-form {
    padding: 1rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .process-item::before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Small Devices (sm) - 576px to 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-item,
  .priceplan-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Medium Devices (md) - 768px to 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.53rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Devices (lg) - 992px to 1199.98px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra Large Devices (xl) - 1200px and up */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.51rem;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Container Adjustments */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(31, 28, 57, 0.98);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    text-align: center;
  }
}

/* Services Grid Responsive */
@media (max-width: 767.98px) {
  .services-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Features Grid Responsive */
@media (max-width: 767.98px) {
  .features-grid .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Price Plan Responsive */
@media (max-width: 767.98px) {
  .priceplan-item.featured {
    transform: none;
    margin-bottom: 2rem;
  }
}

/* Team Grid Responsive */
@media (max-width: 767.98px) {
  .team-grid .col-md-2 {
    margin-bottom: 2rem;
  }
}

/* Contact Form Responsive */
@media (max-width: 767.98px) {
  .contact-row .col-md-8 {
    margin-bottom: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.56rem;
  }
}

/* Blog Grid Responsive */
@media (max-width: 767.98px) {
  .blog-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* FAQ Responsive */
@media (max-width: 767.98px) {
  .accordion-button {
    padding: 1rem;
    font-size: 0.91rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer .col-md-4 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
}

/* Hero Image Responsive */
@media (max-width: 767.98px) {
  .hero-image {
    margin-top: 2rem;
  }
}

/* Typography Responsive */
@media (max-width: 576px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.29rem; }
  h3 { font-size: 1.21rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.94rem; }
  h6 { font-size: 0.89rem; }
}

/* Button Responsive */
@media (max-width: 576px) {
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.97rem;
  }
}

/* Card Spacing Responsive */
@media (max-width: 767.98px) {
  .card-deck .card {
    margin-bottom: 1rem;
  }
}

/* Section Padding Responsive */
@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0;
  }
}

/* Image Responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Table Responsive */
@media (max-width: 767.98px) {
  .table-responsive {
    border: none;
  }
}

/* Utility Classes for Responsive */
@media (max-width: 576px) {
  .d-xs-none { display: none; }
  .d-xs-block { display: block; }
  .d-xs-inline { display: inline; }
  .d-xs-inline-block { display: inline-block; }
  .d-xs-flex { display: flex; }
  .d-xs-inline-flex { display: inline-flex; }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  .section {
    page-break-inside: avoid;
  }
} 

.hero-content {
    padding-top: 200px;
}