/* Additional Responsive Styles - Complementing main.css */

/* Mobile Menu Toggle */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  /* Hero section responsive */
  .hero .row {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
    order: 1;
  }
  
  .hero-image-container {
    order: 2;
    margin-top: var(--spacing-md);
  }
  
  .hero-image {
    max-width: 80%;
  }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 500px;
    padding-bottom: var(--spacing-lg);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-image {
    max-width: 90%;
    margin-top: var(--spacing-md);
  }
}

/* Service Section Responsive */
@media (max-width: 576px) {
  .service-item-img {
    height: 150px;
  }
}

/* Team Section Responsive */
@media (max-width: 576px) {
  .team-member-img {
    height: 250px;
  }
}

/* Form Responsive */
@media (max-width: 576px) {
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-control,
  .form-select {
    padding: 10px;
  }
  
  .btn {
    width: 100%;
  }
}

/* Decorative Shapes Responsive */
@media (max-width: 768px) {
  .shape-decoration {
    width: 100px !important;
    height: 100px !important;
  }
  
  .service-shape-1,
  .service-shape-2,
  .about-shape,
  .price-plan-shape {
    display: none;
  }
}

/* Additional Page Sections Responsive */
@media (max-width: 576px) {
  .additional-page-section {
    padding: var(--spacing-md) 0;
  }
}

/* Space Page Responsive */
@media (max-width: 576px) {
  .space-container {
    min-height: calc(100vh - 150px);
  }
}

/* Footer Responsive */
@media (max-width: 576px) {
  .footer-container > div {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-bottom {
    margin-top: var(--spacing-md);
  }
}

/* Animation Control for Mobile */
@media (max-width: 768px) {
  .fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* Fix for Layout Shifts on Mobile */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    overflow: hidden;
  }
} 