/* ========================================
   INDEX PAGE - RESPONSIVE STYLES
   Figueira Limousines
======================================== */

/* ========== TABLET ========== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .video-hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }

  .title-line {
    letter-spacing: 0.15em;
  }

  .hero-divider {
    width: 60px;
    margin-bottom: 1.25rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
    width: 200px;
    text-align: center;
  }

  .video-control {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .video-control svg {
    width: 14px;
    height: 14px;
  }

  /* Services */
  .services-section {
    padding: 4rem 1.25rem;
  }

  .services-header {
    margin-bottom: 3rem;
  }

  .services-header h2 {
    font-size: 1.5rem;
  }

  .services-header p {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .service-card {
    padding: 1.5rem;
    opacity: 1;
    transform: none;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .btn-gold {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-content {
    padding: 2rem 1.25rem;
  }

  .footer-brand img {
    width: 35px;
  }

  .footer-brand p {
    font-size: 0.8rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding: 1rem;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }
}

/* ========== SMALL MOBILE ========== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 180px;
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
  }

  .services-section {
    padding: 3rem 1rem;
  }

  .services-header h2 {
    font-size: 1.35rem;
  }

  .service-card {
    padding: 1.25rem;
  }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-width: 900px) and (orientation: landscape) {
  .video-hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-divider {
    margin-bottom: 1rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== LARGE SCREENS ========== */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 7rem;
  }

  .hero-tagline {
    font-size: 1.35rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1.15rem 3rem;
    font-size: 0.9rem;
  }

  .services-section {
    padding: 7rem 2rem;
  }

  .services-grid {
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }

  .btn-gold {
    padding: 1.15rem 3rem;
    font-size: 0.9rem;
  }
}
