/* Responsive Styles */

/* Large Screens (up to 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coreinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Screens (up to 992px) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
  }
  
  .price-slider .swiper-slide {
    width: 350px;
  }
  
  .hero-detail {
    width: 250px;
    height: 180px;
    right: 30px;
    bottom: 20px;
  }
}

/* Small Screens (up to 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--secondary-dark);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  .main-menu.active {
    left: 0;
  }
  
  .main-menu li {
    margin: 0 0 20px;
  }
  
  .main-menu a {
    display: block;
    padding: 10px 0;
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid, 
  .features-grid,
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .hero-detail {
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 260px;
  }
}

/* Extra Small Screens (up to 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .review-item {
    padding: 30px 20px;
  }
  
  .contact-form,
  .contact-info {
    padding: 30px 20px;
  }
}

/* Responsive styles for all screen sizes */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-featured-image {
    max-width: 100%;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    background-color: var(--secondary-color);
    width: 280px;
    height: 100vh;
    padding: 80px 20px 40px;
    flex-direction: column;
    z-index: 1200;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .main-menu.active {
    right: 0;
  }
  
  .main-menu li {
    margin: 0 0 20px;
  }
  
  .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
  }

  .hero-container {
    flex-direction: column;
  }
  
  .hero-content-col {
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-detail {
    margin: 0 auto;
  }
  
  .hero-image-col {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .coreinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    padding-top: 30px;
    font-size: 1.2rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-container {
    padding: 100px 0 60px;
  }
  
  .hero-featured-image {
    max-width: 90%;
  }
} 