/* ============================= */
/* PERFECT MOBILE RESPONSIVE CSS */
/* ABOUT US PAGE - BIGGER LOGO + ALL FIXED */
/* ============================= */

/* ========================================
   BANNER SPACING - NAVBAR TO IMAGE & IMAGE TO CONTENT
   ======================================= */
@media (max-width: 768px) {
  .about-banner {
    padding-top: 90px !important;
    padding-bottom: 20px !important;
  }

  .about-image {
    position: relative;
    margin: 0 20px;
    overflow: hidden;
    border-radius: 20px;
  }

  .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;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
  }
}

/* ========================================
  YOUR NAVBAR - BIGGER LOGO + PERFECT 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;
  }

  /* ✅ FIXED NAVIGATION LIST - BEAUTIFUL & CLEAN */
  .nav-menu {
    right: 20px !important;
    top: 80px !important;
    width: 280px !important;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    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 {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-menu ul li {
    margin: 4px 0;
  }

  .nav-menu ul li a {
    display: block;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #2f4f2f !important;
    text-decoration: none !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;
  }

  .nav-menu ul li a:hover {
    background: rgba(47,79,62,0.08) !important;
    color: #2f4f2f !important;
    transform: translateX(6px) !important;
    box-shadow: 0 8px 25px rgba(47,79,62,0.15) !important;
    border-color: rgba(47,79,62,0.2) !important;
  }
}

/* ========================================
  ABOUT SECTION - CLEAN MOBILE LAYOUT
  ======================================= */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 25px 60px !important;
  }

  .about-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .about-wrapper {
    grid-template-columns: 1fr !important;
    gap: 35px;
    padding: 0 5px;
  }

  .about-left h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2f4f2f;
  }

  .about-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
  }

  .about-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .about-tab-btn {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .about-tab-btn.active {
    background: #2f4f2f;
    color: white;
  }
}

/* ========================================
  WHY CHOOSE - MOBILE CARDS
  ======================================= */
@media (max-width: 768px) {
  .why-choose {
    padding: 50px 25px !important;
  }

  .why-choose h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    color: #2f4f2f;
  }

  .choose-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .choose-card {
    padding: 30px 25px !important;
    border-radius: 20px !important;
  }
}

/* ========================================
  STATS - MOBILE STACK
  ======================================= */
@media (max-width: 768px) {
  .stats {
    flex-direction: column !important;
    gap: 30px;
    padding: 45px 25px !important;
  }

  .stat h3 {
    font-size: 44px !important;
  }
}

/* ========================================
  CONTACT SECTION - PERFECT MOBILE FORM
  ======================================= */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 25px !important;
  }

  .contact-container {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .contact-left h2 {
    font-size: 32px !important;
    margin-bottom: 18px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 22px;
  }

  .contact-form-card {
    padding: 40px 30px !important;
    border-radius: 25px !important;
  }

  .field input,
  .field textarea {
    padding: 16px 18px !important;
    border-radius: 10px !important;
  }

  .contact-btn {
    padding: 18px !important;
    font-size: 17px !important;
    margin-top: 15px;
  }
}

/* ========================================
  FOOTER + PERFECT COPYRIGHT SPACING
  ======================================= */
@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;
  }
}

/* ========================================
  ULTRA SMALL MOBILE - 480px 
  ======================================= */
@media (max-width: 480px) {
  .about-banner {
    padding-top: 80px !important;
    padding-bottom: 15px !important;
  }

  .about-image img {
    height: 240px;
  }

  .about-image h1 {
    font-size: 36px !important;
  }

  .about-left h2 {
    font-size: 28px !important;
  }
}
