.sub-section {
  scroll-margin-top: 75px;
}/* ============================================
   🌍 GLOBAL STYLES — Mobile-Friendly Framework
============================================ */

/* RESET & BASE */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background-color: #f4f4f4;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 10px;
    padding-top: 60px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  section {
    padding: 60px 5%;
  }
  
  /* ============================================
     ✅ CTA Buttons
  ============================================ */
  .cta-button {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #FF6B00;
    text-align: center;
    border-radius: 8px;
    padding: 4px 8px;
    transition: background 0.3s;
    width: auto;
  }
  
  .cta-button:hover {
    background-color: #FFA64D;
  }
  
  .quote-button {
    padding: 5px 8px;
  }
  
  .email-button {
    padding: 6px 12px;
  }
  
  /* ============================================
     ✅ Device-Specific Display
  ============================================ */
  .phone-mobile {
    display: none;
  }
  
  .phone-desktop {
    display: inline;
  }
  
  /* ============================================
     ✅ Freight Section
  ============================================ */
  .freight-section {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    gap: 5%;
    flex-wrap: wrap;
  }
  
  .freight-left,
  .freight-right {
    width: 45%;
  }
  
  .freight-left h2,
  .freight-right h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .freight-left p,
  .freight-right p,
  .freight-right li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .freight-right ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  /* ============================================
     ✅ Services & Imports Sections
  ============================================ */
  .imports-section,
  .services-section {
    background: #fff;
    padding: 60px 20px;
  }
  
  .imports-section .container,
  .services-section .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .imports-section h1,
  .services-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .sub-section h2 {
    color: #005f73;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .sub-section p,
  .sub-section ul li {
    font-size: 1rem;
    color: #444;
  }
  
  .sub-section ul {
    padding-left: 20px;
    list-style: disc;
  }
  .sub-section {
  scroll-margin-top: 7.5px;
}
  
  /* ============================================
     ✅ Blog & Post Styles
  ============================================ */
  .site-header {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
  }
  
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    color: #ccc;
    transition: 0.2s ease;
  }
  
  .nav-links a:hover,
  .nav-links .active {
    color: #FF6B00;
  }
  
  .blog-hero {
    background: linear-gradient(to right, #f6f6f6, #fff);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
  
  .blog-hero h2 {
    font-size: 2.4rem;
    color: #222;
  }
  
  .blog-hero p {
    font-size: 1.1rem;
    color: #666;
  }
  
  .blog-list .container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .blog-card {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .blog-card img {
    width: 35%;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
    flex: 1;
  }
  
  .blog-content h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .blog-content .meta {
    font-size: 0.9rem;
    color: #999;
  }
  
  .blog-content .excerpt {
    font-size: 1rem;
    color: #444;
    margin: 15px 0;
  }
  
  .read-more {
    font-weight: bold;
    color: #FF6B00;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  .blog-post {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .blog-post h1 {
    font-size: 2.5rem;
    color: #222;
  }
  
  .blog-post h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
    color: #444;
  }
  
  .blog-post h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #333;
  }
  
  .blog-post p,
  .blog-post li {
    margin-bottom: 1rem;
  }
  
  .blog-post ul {
    padding-left: 1.5rem;
    list-style: disc;
  }
  
  .blog-post em {
    color: #666;
  }
  
  hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
  }
  
  .bottom-line {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
  }
  
  .post-hero {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Optional, for vertical centering if there's fixed height */
  text-align: center;
  height: 10%;
}
.import-sections {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.import-box{
  flex: 1 1 30%;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  min-width: 280px;
  max-width: 100%;
}

.import-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.export-sections {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.export-box {
  flex: 1 1 30%;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  min-width: 280px;
  max-width: 100%;
}

.export-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.about-container {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-photo {
  flex: 1 1 300px;
  max-width: 400px;
}

.about-photo img {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 2 1 500px;
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}
