/* =====================================================
   DRONE SURVEY TEMPLATE - RESPONSIVE STYLES
   Mobile-First Approach
   ===================================================== */

/* Base mobile styles are defined in main.css */

/* =====================================================
   SMALL DEVICES (≥576px)
   ===================================================== */

@media (min-width: 576px) {
  .hero-title {
    font-size: 2.62rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.44rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .price-card-price {
    font-size: 2.89rem;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .element-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   MEDIUM DEVICES (≥768px)
   ===================================================== */

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.33rem;
  }
  
  .navbar-brand {
    font-size: 1.54rem;
  }
  
  .hero-section {
    text-align: left;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .price-card-price {
    font-size: 3rem;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .element-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-item {
    margin-bottom: 0;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 0;
  }
  
  .review-card {
    margin-bottom: 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer {
    padding: 1.25rem 1.5rem;
  }
}

/* =====================================================
   LARGE DEVICES (≥992px)
   ===================================================== */

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.61rem;
  }
  
  .section-title {
    font-size: 2.55rem;
  }
  
  .navbar-brand {
    font-size: 1.59rem;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .element-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 275px;
}
  
  .hero-decorative {
    width: 300px;
    height: 300px;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .price-card.featured {
    transform: scale(1.05);
  }
  
  .price-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
  }
  
  .contact-form {
    margin-right: 1rem;
  }
  
  .contact-info {
    margin-left: 1rem;
  }
}

/* =====================================================
   EXTRA LARGE DEVICES (≥1200px)
   ===================================================== */

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.84rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .element-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .hero-decorative {
    width: 350px;
    height: 350px;
  }
  
  .contact-form {
    margin-right: 2rem;
  }
  
  .contact-info {
    margin-left: 2rem;
  }
}

/* =====================================================
   ACCESSIBILITY & RESPONSIVE ENHANCEMENTS
   ===================================================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.60rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .gallery-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .navbar-brand {
    font-size: 1.27rem;
  }
  
  .price-card-price {
    font-size: 2.55rem;
  }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  
  .hero-decorative {
    animation: none;
  }
  
  .feature-item:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
  * {
    color: #000;
    background: #fff;
    box-shadow: none;
  }
  
  .navbar,
  .contact-form,
  .hero-decorative {
    display: none;
  }
  
  .hero-section {
    background: #fff;
    color: #000;
    min-height: auto;
  }
  
  .section {
    padding: 2rem 0;
  }
} 