/* Tablet Styles */
@media (min-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  p {
    font-size: 1rem;
  }

  /* Navigation */
  .mobile-menu-btn {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    display: flex;
    gap: 1.5rem;
  }

  .nav-menu li {
    width: auto;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    text-align: center;
    width: auto;
  }

  .nav-link:hover,
  .nav-link.active {
    background: transparent;
  }

  /* Buttons */
  .btn {
    width: auto;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  /* Hero Section - 50/50 Layout */
  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr; /* 50/50 split on tablet+ */
    gap: 4rem;
  }

  .hero-text {
    text-align: left; /* Left align on larger screens */
    order: 0;
  }

  .hero-btns {
    flex-direction: row;
    width: auto;
  }

  .hero-btns .btn {
    width: auto;
    justify-content: flex-start;
  }

  .hero-image {
    order: 0; /* Reset order */
  }

  .hero-main-image {
    height: 400px; /* Larger height on tablet */
  }

  .floating-element {
    padding: 1.25rem;
    max-width: 180px;
  }

  .delivery-speed {
    left: -10%;
  }

  .global-reach {
    right: -10%;
  }

  /* Hero Stats */
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Services & Features */
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Tracking Form */
  .radio-group {
    flex-direction: row;
  }

  /* CTA */
  .cta-btns {
    flex-direction: row;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Content Sections */
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .content-image {
    order: 0;
  }

  .content-image img {
    height: 350px;
  }

  /* Team Section */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  textarea.form-control {
    min-height: 150px;
  }

  /* Map Section */
  .map-section {
    height: 350px;
  }

  /* Page Header */
  .page-header {
    padding: 10rem 0 5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    padding: 10rem 0 5rem;
  }

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

  .hero-main-image {
    height: 500px; /* Full height on desktop */
  }

  .floating-element {
    padding: 1.5rem;
    max-width: 200px;
  }

  .floating-element i {
    font-size: 2rem;
  }

  .floating-element strong {
    font-size: 0.9rem;
  }

  .floating-element p {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .service-card,
  .feature-card {
    padding: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-image img {
    height: 400px;
  }

  .map-section {
    height: 400px;
  }

  .page-title {
    font-size: 3rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .team-card .team-image img {
    height: 300px;
  }
}
