/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 575.98px) {
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-decorative {
    display: none; /* Hide decorative elements on mobile */
  }
  
  /* Services Cards */
  .services-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .services-price {
    font-size: 1.5rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery Grid */
  .gallery-item img {
    height: 200px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Section Padding */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .services-card {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .services-card {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 240px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* ===== NAVIGATION RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

/* ===== GRID RESPONSIVE ===== */
@media (max-width: 767.98px) {
  /* Services grid - stack on mobile */
  .services-grid .col-md-4 {
    margin-bottom: 1rem;
  }
  
  /* Team grid - 2 columns on mobile */
  .team-grid .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /* FAQ - full width on mobile */
  .faq-card {
    margin-bottom: 1rem;
  }
}

/* ===== TYPOGRAPHY RESPONSIVE ===== */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 14px;
  }
  
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ===== SPACING RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col,
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===== UTILITIES RESPONSIVE ===== */
.d-mobile-none {
  display: none;
}

@media (min-width: 768px) {
  .d-mobile-none {
    display: block;
  }
}

.d-desktop-none {
  display: block;
}

@media (min-width: 768px) {
  .d-desktop-none {
    display: none;
  }
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 100px;
}