/* ============================= */
/* PERFECT MOBILE RESPONSIVE CSS */
/* SERVICES PAGE - BIGGER LOGO + ALL FIXES */
/* ============================= */

/* ========================================
   NAVBAR - BIGGER LOGO + BEAUTIFUL LIST
   ======================================= */
@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 20px;
  }

  /* ✅ BIGGER LOGO - FULL NAVBAR HEIGHT */
  .nav-logo {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-logo img {
    height: 62px !important; /* ✅ INCREASED: 48px → 62px */
    width: auto !important;
    max-height: 100% !important;
  }

  .menu-button {
    font-size: 24px;
    padding: 8px;
    z-index: 1001;
  }

  /* ✅ PERFECT NAV LIST - SAME BEAUTIFUL STYLE */
  .nav-menu {
    right: 20px !important;
    top: 80px !important;
    width: 280px !important;
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    padding: 0 !important;
  }

  .nav-menu.active {
    max-height: 450px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 20px !important;
  }

  .nav-menu ul li a {
    display: block !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #2f4f2f !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    margin: 4px 0 !important;
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(47,79,62,0.1) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    text-decoration: none !important;
  }

  .nav-menu ul li a:hover {
    background: rgba(47,79,62,0.08) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 8px 25px rgba(47,79,62,0.15) !important;
  }
}

/* ========================================
  BANNER - PERFECT NAVBAR GAP + TIGHT BOTTOM
  ======================================= */
@media (max-width: 768px) {
  .about-banner {
    padding-top: 110px !important;
    padding-bottom: 10px !important;
  }

  .about-image {
    position: relative;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
  }

  .about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .about-image h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    z-index: 2;
  }
}

/* ========================================
  SERVICES SECTION - FIXED BUTTONS + TIGHT BOTTOM
  ======================================= */
@media (max-width: 768px) {
  .service-section {
    padding: 20px 20px 30px !important;
  }

  .service-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 40px !important;
  }

  .service-tab {
    font-size: 15px !important;
    padding: 14px 28px !important;
    border-radius: 25px !important;
    white-space: nowrap !important;
    min-width: auto !important;
    flex-shrink: 0 !important;
    font-weight: 500 !important;
  }

  .service-tab.active {
    background: rgba(95, 127, 74, 0.2) !important;
    color: #5f7f4a !important;
    font-weight: 600 !important;
  }

  .service-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .service-image img {
    max-width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }

  .service-text h2 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }
}

/* ========================================
  SHOWCASE SECTION - TIGHT SPACING
  ======================================= */
@media (max-width: 768px) {
  .showcase {
    padding: 20px 20px 40px !important;
  }

  .section-heading {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }
}

/* ========================================
  STATS + CONTACT - TIGHT SPACING
  ======================================= */
@media (max-width: 768px) {
  .stats {
    flex-direction: column !important;
    gap: 30px !important;
    padding: 30px 20px !important;
  }

  .contact-section {
    padding: 20px 25px 40px !important;
  }

  .contact-container {
    flex-direction: column !important;
    gap: 35px !important;
  }

  .contact-left h2 {
    font-size: 32px !important;
    margin-bottom: 18px !important;
  }

  .contact-form-card {
    padding: 40px 30px !important;
    border-radius: 25px !important;
  }
}

/* ========================================
  FOOTER + PERFECT TIGHT COPYRIGHT
  ======================================= */
@media (max-width: 768px) {
  .footer {
    padding: 50px 25px 15px !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .allRights {
    text-align: center !important;
    font-size: 13px !important;
    color: #888 !important;
    padding: 12px 25px 20px !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    background: #111 !important;
    line-height: 1.4 !important;
    border-top: 1px solid #333 !important;
  }
}

/* ========================================
  ULTRA SMALL MOBILE - 480px & BELOW
  ======================================= */
@media (max-width: 480px) {
  .about-banner {
    padding-top: 100px !important;
    padding-bottom: 8px !important;
  }

  .about-image img {
    height: 240px;
  }

  .about-image h1 {
    font-size: 36px !important;
  }

  .service-section {
    padding: 15px 15px 25px !important;
  }

  .service-tab {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }

  .service-tabs {
    gap: 8px !important;
  }

  .contact-section {
    padding: 15px 20px 30px !important;
  }

  .showcase {
    padding: 15px 15px 30px !important;
  }
}
