/* Responsive CSS */

/* ============================================================
   HERO FULL BACKGROUND IMAGE
============================================================ */
.hero-section,
.hero {
  min-height: 100vh;
  background-image: url("hero-bus.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.18) 0%, rgba(5,5,5,0.78) 48%, rgba(5,5,5,0.96) 100%),
    radial-gradient(circle at 18% 50%, rgba(212,175,55,0.18), transparent 42%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-overlay,
.hero-overlay {
  background: transparent !important;
  z-index: 2 !important;
}

.hero-inner,
.hero-section .container {
  position: relative !important;
  z-index: 3 !important;
}

.hero-visual,
.hero-image-frame {
  display: none !important;
}

/* ============================================================
   TABLET
============================================================ */
@media (max-width: 1024px) {
  :root {
    --header: 78px;
  }

  .container {
    width: min(100% - 36px, var(--max));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding-block: 50px 78px;
  }

  .hero-content {
    margin: auto;
  }

  .hero-divider,
  .hero-actions {
    justify-content: center;
  }

  .hero-bg-overlay {
    background: transparent !important;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .features-stat-panel {
    max-width: 720px;
    margin: auto;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-list {
    gap: 18px;
  }

  .btn-phone span {
    display: none;
  }

  .btn-phone {
    width: 48px;
    padding: 0;
  }
}

/* ============================================================
   MOBILE
============================================================ */
/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 768px) {

  .site-header {
    height: 72px;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(5, 5, 5, .98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 998;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
  }

  .header-actions .btn-phone {
    display: none;
  }

  .hero-section,
  .hero {
    min-height: 100vh !important;
    background-image: url("hero-bus.png") !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }

  .hero-section::before,
  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,.25) 0%,
        rgba(5,5,5,.72) 48%,
        rgba(5,5,5,.98) 100%
      ),
      radial-gradient(
        circle at 55% 35%,
        rgba(212,175,55,.16),
        transparent 45%
      );
  }

  .hero-inner {
    padding-block: 38px 70px;
  }

  .title-line-1 {
    font-size: 3.25rem;
  }

  .title-line-2 {
    font-size: 2rem;
  }

  .hero-tagline,
  .hero-body {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: min(100%, 340px);
  }

  .services-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 22px;
  }

  .features-stat-panel {
    padding: 24px;
  }

  .stat-row {
    align-items: flex-start;
  }

  .stat-num {
    font-size: 2rem;
    min-width: 74px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    left: 18px;
    bottom: 18px;
  }

  .wa-tooltip {
    display: none;
  }

  .scroll-top-btn {
    left: 18px;
    bottom: 88px;
  }
}

/* ============================================================
   SMALL MOBILE
============================================================ */
@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  section:not(.hero-section) {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .title-line-1 {
    font-size: 2.72rem;
  }

  .title-line-2 {
    font-size: 1.62rem;
  }

  .hero-eyebrow {
    font-size: .82rem;
  }

  .hero-phone-link {
    font-size: 1.85rem;
  }

  .divider-bar {
    width: 54px;
  }

  .cta-phone-link {
    font-size: 2rem;
  }

  .cta-trust {
    font-size: .88rem;
  }

  .gallery-item {
    aspect-ratio: 1.15/1;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .title-line-1 {
    font-size: 2.36rem;
  }

  .title-line-2 {
    font-size: 1.42rem;
  }

  .hero-body,
  .hero-tagline {
    font-size: .94rem;
  }

  .btn {
    padding: 12px 22px;
  }

  .card-title {
    font-size: 1.35rem;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-icon-box {
    width: 44px;
    height: 44px;
  }

  .stat-row {
    gap: 12px;
  }

  .stat-num {
    font-size: 1.75rem;
    min-width: 62px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .title-line-1 {
    font-size: 2.1rem;
  }

  .title-line-2 {
    font-size: 1.28rem;
  }

  .hero-actions .btn {
    width: 100%;
    font-size: .95rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .logo-img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}