/* ================================
   HAMBURGER — hidden on desktop
================================ */
.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ================================
   TABLET + MOBILE (max 1024px)
   Handles iPad 11" and 13"
================================ */
@media (max-width: 1024px) {

  /* Hide desktop nav, show hamburger */
  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #1a1a2e;
    padding: 8px;
    z-index: 200;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px 24px 28px;
    border-bottom: 2px solid #e8e8e8;
    gap: 4px;
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
  }

  .mobile-menu a:hover {
    color: #2b6cb0;
  }

  .mobile-book-btn {
    margin-top: 8px;
    background: #2b6cb0;
    color: #ffffff !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 10px;
    border-bottom: none !important;
  }

  /* Header */
  .header {
    padding: 0 32px;
    height: 80px;
  }

  .primecore-logo {
    height: 60px;
    width: auto;
  }

  /* Hero */
  .hero {
    padding: 140px 40px 60px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

/* ================================
   MOBILE ONLY (max 768px)
   Handles phones
================================ */
@media (max-width: 768px) {

  /* Header */
  .header {
    padding: 0 24px;
    height: 70px;
  }

  .primecore-logo {
    height: 50px;
    width: auto;
  }

  /* Hero */
  .hero {
    padding: 120px 24px 60px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    text-align: center;
    width: 100%;
  }

  .hero-specialties {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Services */
  .services {
    padding: 60px 24px;
  }

  .service-card {
    width: 100%;
  }

  /* Pricing */
  .pricing {
    padding: 60px 24px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 420px;
  }

  /* About */
  .about {
    padding: 60px 24px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    max-width: 340px;
    height: 380px;
  }

  .about-text {
    text-align: center;
  }

  .about-credentials {
    text-align: left;
  }

  /* Contact */
  .contact {
    padding: 60px 16px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  /* Footer */
  .footer {
    padding: 48px 24px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 36px;
  }

  .footer-logo {
    height: 44px;
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }

}