/* MOBILE MENU OVERLAY */
@media (max-width: 700px) {
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 57, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu-overlay.open {
    display: flex;
    opacity: 1;
    animation: fadeInMenu 0.3s ease;
  }
  
  @keyframes fadeInMenu {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* MOBILE MENU CONTAINER */
  .mobile-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
  }

  /* MOBILE MENU ITEMS */
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 3rem;
  }
  
  .mobile-menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    width: 100%;
  }
  
  .mobile-menu-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(230, 239, 235, 0.2);
    padding: 1.5rem 0;
  }
  
  .mobile-menu-nav li:last-child {
    border-bottom: none;
  }
  
  .mobile-menu-nav li a {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
  }
  
  .mobile-menu-nav li a:hover,
  .mobile-menu-nav li a:focus {
    color: #39a28d;
  }

  /* MOBILE CONTACT BUTTONS */
  .mobile-contact-buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin-top: auto;
  }
  
  .mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #39a28d;
    min-height: 56px;
  }
  
  /* CALL BUTTON (FILLED) */
  .mobile-contact-btn.call {
    background: #39a28d;
    color: #fff;
    border-color: #39a28d;
  }
  
  .mobile-contact-btn.call:hover,
  .mobile-contact-btn.call:focus {
    background: #1e3932;
    border-color: #1e3932;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(57, 162, 141, 0.3);
  }
  
  /* EMAIL BUTTON (OUTLINE) */
  .mobile-contact-btn.email {
    background: transparent;
    color: #39a28d;
    border-color: #39a28d;
  }
  
  .mobile-contact-btn.email:hover,
  .mobile-contact-btn.email:focus {
    background: rgba(57, 162, 141, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  }
  
  /* CONTACT BUTTON ICONS */
  .mobile-contact-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  .mobile-contact-btn.call svg {
    stroke: #fff;
  }
  
  .mobile-contact-btn.email svg {
    stroke: #39a28d;
  }
  
  .mobile-contact-btn.email:hover svg,
  .mobile-contact-btn.email:focus svg {
    stroke: #fff;
  }

  /* PREVENT BODY SCROLL WHEN MENU OPEN */
  body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
  }

  /* CLOSE BUTTON (X) */
  .mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* HIDE MOBILE MENU ON DESKTOP */
@media (min-width: 701px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}