/* ============================= */
/* PERFECT MOBILE RESPONSIVE CSS */
/* CONTACT US PAGE - BIGGER LOGO + ALL FIXED */
/* ============================= */

/* ========================================
   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 AS OTHER PAGES */
  .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;
  }
}

/* ========================================
  GET IN TOUCH - TIGHT TOP SPACING
  ======================================= */
@media (max-width: 768px) {
  .contact-section {
    padding: 20px 25px 60px !important;
  }

  .contact-container {
    flex-direction: column !important;
    gap: 35px !important;
  }

  .contact-left h2 {
    font-size: 32px !important;
    margin-bottom: 18px !important;
    text-align: center;
  }

  .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 22px !important;
  }

  .contact-form-card {
    padding: 40px 30px !important;
    border-radius: 25px !important;
  }
}

/* ========================================
  CONTACT CARDS - TIGHT TOP SPACING
  ======================================= */
@media (max-width: 768px) {
  .contact-cards {
    padding: 20px 20px 60px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    background: #f5f5f5 !important;
  }

  .contact-card {
    min-height: 200px !important;
    border-radius: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
  }

  .contact-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 1 !important;
  }

  .contact-card-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 30px 25px !important;
    color: white !important;
    text-align: center !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;
    text-align: center !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;
  }

  .contact-section {
    padding-top: 15px !important;
  }

  .contact-cards {
    padding-top: 15px !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}
