/* ===========================
   GLOBAL STYLE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fc;
    color:#333;
    line-height:1.6;
}

/* ===========================
   HEADER
=========================== */

header{
    width:100%;
    background:#0A4D8C;
    color:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#ffcc00;
}

.quote-btn{
    background:#ff9900;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#ff7700;
}

/* ===========================
   HERO
=========================== */

.hero{
    height:400px;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    width:90%;
    max-width:850px;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff9900;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.hero-btn:hover{
    background:#ff7700;
}

/* ===========================
   SECTION
=========================== */

section{
    padding:20px 8%;
}

section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:45px;
    color:#0A4D8C;
}

/* ===========================
   SERVICES
=========================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:15px;
    color:#0A4D8C;
}

/* ===========================
   TABLE
=========================== */

table{
    width:100%;
    border-collapse:collapse;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

thead{
    background:#0A4D8C;
    color:white;
}

th,
td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid #ddd;
}

tbody tr:hover{
    background:#f2f7ff;
}

/* ===========================
   EXCHANGE
=========================== */

.exchange-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}

.exchange-box div{
    background:white;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    font-size:26px;
    font-weight:bold;
}

.exchange-box span{
    display:block;
    margin-top:15px;
    color:#ff7700;
    font-size:20px;
}

/* ===========================
   ABOUT
=========================== */

.about{
    background:white;
}

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:20px;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    background:#eef5ff;
    text-align:center;
}

.contact p{
    margin:10px 0;
    font-size:20px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#0A4D8C;
    color:white;
    text-align:center;
    padding:25px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

.container{
    flex-direction:column;
}

nav{
    margin:20px 0;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    height:500px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:18px;
}

section h2{
    font-size:30px;
}

}

@media(max-width:600px){

.logo{
    font-size:22px;
}

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:16px;
}

.quote-btn,
.hero-btn{
    padding:12px 25px;
}

table{
    font-size:14px;
}

th,
td{
    padding:10px;
}

}

/* =========================================
   HERO CARGO SLIDER - FIX
========================================= */

.hero-cargo-slider {
    width: 520px;
    max-width: 90%;
    height: 220px;
    margin: 25px auto;
    position: relative;
    overflow: visible;
}

.hero-cargo-track {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.hero-cargo-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 220px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: all 0.5s ease;
}

.hero-cargo-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-cargo-slide img {
    width: 100% !important;
    height: 220px !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block;
    border-radius: 14px;
}


/* Previous / Next */

.hero-cargo-prev,
.hero-cargo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #ff9800;
    color: white;

    font-size: 28px;
    line-height: 38px;

    cursor: pointer;
}

.hero-cargo-prev {
    left: -18px;
}

.hero-cargo-next {
    right: -18px;
}


/* Dots */

.hero-cargo-dots {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-cargo-dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin: 0 4px;

    background: white;
    opacity: 0.5;

    border-radius: 50%;
    cursor: pointer;
}

.hero-cargo-dot.active {
    opacity: 1;
    transform: scale(1.3);
}


/* Mobile */

@media (max-width: 600px) {

    .hero-cargo-slider {
        width: 90%;
        height: 180px;
    }

    .hero-cargo-track {
        height: 180px;
    }

    .hero-cargo-slide {
        height: 180px !important;
    }

    .hero-cargo-slide img {
        height: 180px !important;
    }

}

/* =========================
   HERO BACKGROUND SLIDER
========================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background slider */
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.hero-slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Text above image */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* ================= HOME TRACKING ================= */

.home-tracking {
    padding: 15px 20px;
    background: #f4f8fc;
}

.tracking-box {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tracking-box h2 {
    margin: 0 0 8px;
    color: #0d5596;
    font-size: 28px;
}

.tracking-box p {
    margin-bottom: 22px;
    color: #666;
}

.tracking-form {
    display: flex;
    gap: 10px;
}

.tracking-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.tracking-form input:focus {
    outline: none;
    border-color: #0d5596;
}

.tracking-form button {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    background: #ff9800;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.tracking-form button:hover {
    background: #e68900;
}

#homeTrackingResult {
    margin-top: 18px;
    font-weight: 600;
    color: #0d5596;
}

@media (max-width: 600px) {
    .tracking-form {
        flex-direction: column;
    }

    .tracking-form button {
        width: 100%;
    }
}

/* ================= HOME TRACKING RESULT ================= */

.home-tracking-result {
    margin-top: 25px;
    padding: 22px;
    background: #f4f8fc;
    border-radius: 10px;
    text-align: left;
    border-left: 5px solid #0d5596;
}

.home-tracking-result h3 {
    margin: 0 0 15px;
    color: #0d5596;
}

.tracking-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0d5596;
    font-size: 18px;
    margin-bottom: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #ff9800;
    border-radius: 50%;
    display: inline-block;
}

.home-tracking-result p {
    margin: 8px 0;
}

.tracking-message {
    color: #666;
}

.tracking-error {
    margin-top: 20px;
    padding: 15px;
    background: #fff3f3;
    color: #d33;
    border-radius: 8px;
}

/* ======================================
   TRACKING PROGRESS
====================================== */

.tracking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin: 25px 0;
}

.tracking-step {
    flex: 1;
    text-align: center;
    opacity: 0.4;
}

.tracking-step.completed {
    opacity: 1;
}

.step-circle {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;

    border-radius: 50%;

    background: #d8dde2;
    color: #666;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 17px;
}

.tracking-step.completed .step-circle {
    background: #22a447;
    color: white;
}

.step-content strong {
    display: block;
    color: #0d5596;
    font-size: 14px;
}

.step-content span {
    display: block;
    color: #555;
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.4;
}

.step-arrow {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
}

.step-arrow.completed-arrow {
    color: #22a447;
}


/* ======================================
   CURRENT STATUS
====================================== */

.current-status {
    margin-top: 8px;
    color: #555;
}

.current-status strong {
    color: #22a447;
}


/* ======================================
   INFORMATION
====================================== */

.tracking-information {
    display: flex;
    justify-content: space-around;
    gap: 20px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid #ddd;
}

.tracking-information div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tracking-information strong {
    color: #0d5596;
}

.tracking-information span {
    color: #555;
}


/* ======================================
   MOBILE
====================================== */

@media (max-width: 700px) {

    .tracking-progress {
        flex-direction: column;
        align-items: stretch;
    }

    .tracking-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 12px;
    }

    .step-circle {
        flex-shrink: 0;
        margin: 0;
    }

    .step-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .tracking-information {
        flex-direction: column;
    }

}

 body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  color: #333;
}

/* Center Page */
.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Card Box */
.contact-card {
  background: white;
  width: 100%;
  max-width: 520px;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.contact-card h2 {
  margin-bottom: 20px;
  color: #4f46e5;
}

/* Contact Lines */
.contact-item {
  margin: 12px 0;
  font-size: 0.95rem;
}

.contact-item span {
  font-weight: bold;
  margin-right: 5px;
}

.contact-item a {
  color: #4f46e5;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Social Section */
.contact-card h3 {
  margin: 22px 0 12px;
  color: #111827;
}

.social-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

/* Social Buttons */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.facebook { background: #1877f2; }
.tiktok { background: #000000; }

.social-links a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================
   VIBER
====================================== */

.social-links a.viber {
    background: #7360F2;
    color: #ffffff;
}

.social-links a.viber i {
    color: #ffffff;
}

.social-links a.viber:hover {
    background: #5f4bd8;
    color: #ffffff;
}

.social-links a.viber:hover i {
    color: #ffffff;
}


/* ==============================
   LEARN MORE BUTTON
   ============================== */

.learn-more {
    display: inline-block;

    margin-top: 15px;
    padding: 10px 22px;

    background: #ff9800;
    color: #ffffff;

    border: 2px solid #ff9800;
    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.learn-more:hover {
    background: #ffffff;
    color: #15ff00;

    border-color: #ff9800;

    transform: translateY(-2px);
}

/* ======================================
   SEA FREIGHT NOTICE
====================================== */

.sea-notice {
    width: 100%;
    padding: 25px 20px;
    background: #f4f8fc;
    box-sizing: border-box;
}

.sea-notice-box {
    max-width: 1100px;
    margin: 0 auto;

    background: #fff;

    border-left: 6px solid #ff9800;
    border-radius: 12px;

    padding: 20px 25px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    text-align: center;
}

.sea-notice-box h3 {
    margin: 0 0 10px;

    color: #07569b;

    font-size: 20px;
    font-weight: 700;
}

.sea-notice-box p {
    margin: 0;

    color: #111111;

    font-size: 16px;
    line-height: 1.9;
}


/* ======================================
   MOBILE
====================================== */

@media (max-width: 768px) {

    .sea-notice {
        padding: 18px 12px;
    }

    .sea-notice-box {
        padding: 18px 15px;
    }

    .sea-notice-box h3 {
        font-size: 18px;
    }

    .sea-notice-box p {
        font-size: 14px;
        line-height: 1.8;
    }

}

body.sea-page {
    background: #ffffff;
    margin: 0;
}

/* Remove empty gray area on Sea Freight page */

body.sea-page .hero,
body.sea-page .hero-background,
body.sea-page .hero-track,
body.sea-page .hero-content {
    background: #ffffff !important;
    min-height: 0 !important;
    height: auto !important;
}

/* =========================================
   AIR FREIGHT RATES
========================================= */

.air-rates-section {
    background: #f4f7fc;
    min-height: 100vh;
    padding: 55px 20px 80px;
}


.air-rates-section h1 {
    text-align: center;
    color: #07569b;
    font-size: 34px;
    margin: 0 0 10px;
    font-weight: 700;
}


.air-rates-subtitle {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin: 0 0 40px;
}


.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}


.country-rate-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
    border: 1px solid #e5e5e5;
}


.country-title {
    background: #07569b;
    color: white;
    text-align: center;
    padding: 17px 15px;
    font-size: 22px;
    font-weight: 700;
}


.rate-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #eef4fb;
    color: #07569b;
    font-weight: 700;
    padding: 12px 20px;
}


.rate-header span:last-child {
    text-align: right;
}


.rate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 20px;
    border-top: 1px solid #eeeeee;
    font-size: 16px;
}


.rate-row .weight {
    color: #444;
}


.rate-row .price {
    text-align: right;
    color: #07569b;
    font-weight: 600;
}


.rate-row:hover {
    background: #f8fbff;
}


.loading {
    text-align: center;
    color: #666;
    font-size: 17px;
}


.error {
    background: white;
    border-left: 5px solid #ff9800;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    grid-column: 1 / -1;
}


.error h3 {
    color: #d35400;
    margin-top: 0;
}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .air-rates-section {
        padding: 40px 15px 60px;
    }


    .air-rates-section h1 {
        font-size: 25px;
    }


    .air-rates-subtitle {
        font-size: 15px;
    }


    .rates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .country-title {
        font-size: 20px;
    }

}

/* =========================================
   AIR FREIGHT RATE PAGE
========================================= */

.air-rates-section {
    display: block !important;
    width: 100%;
    padding: 70px 20px;
    background: #f4f7fc;
}

.air-rates-heading {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.air-rates-heading h1 {
    margin: 0 0 12px;
    color: #07569b;
    font-size: 36px;
    font-weight: 700;
}

.air-rates-subtitle {
    margin: 0;
    color: #666;
    font-size: 17px;
}

.rates-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.country-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
}

.country-title {
    background: #075b9f;
    color: #fff;
    text-align: center;
    padding: 18px 15px;
    font-size: 22px;
    font-weight: 700;
}

.country-card table {
    width: 100%;
    border-collapse: collapse;
}

.country-card th {
    background: #eaf2fb;
    color: #07569b;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

/* PRICE COLUMN */
.country-card th:nth-child(2),
.country-card td:nth-child(2) {
    text-align: right !important;
    padding-right: 12px !important;
    padding-left: 0 !important;
}

.country-card td {
    padding: 13px 15px;
    border-top: 1px solid #eee;
    text-align: left;
    font-size: 16px;
}


.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}


/* MOBILE */

@media (max-width: 768px) {

    .air-rates-section {
        padding: 45px 15px;
    }

    .air-rates-heading h1 {
        font-size: 27px;
    }

    .air-rates-subtitle {
        font-size: 15px;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* =========================================
   AIR FREIGHT FINAL LAYOUT
========================================= */

.air-rates-section {
    width: 100%;
    padding: 60px 20px 80px;
    background: #f4f7fc;
}


/* =========================
   HEADING
========================= */

.air-rates-heading {
    width: 100%;
    display: block !important;
    text-align: center;
    margin: 0 auto 45px;
}

.air-rates-heading h1 {
    margin: 0 0 10px;
    color: #075b9f;
    font-size: 36px;
    font-weight: 700;
}

.air-rates-subtitle {
    margin: 0;
    color: #666;
    font-size: 17px;
}


/* =========================
   COUNTRY BOX GRID
========================= */

.rates-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid !important;

    /* 4 ခုဆန့်ရင် 4 ခု */
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* =========================
   COUNTRY CARD
========================= */

.country-card {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
}


/* Country Name */

.country-title {
    background: #075b9f;
    color: white;

    text-align: center;

    padding: 17px 10px;

    font-size: 21px;
    font-weight: 700;
}


/* Table */

.country-card table {
    width: 100%;
    border-collapse: collapse;
}

.country-card th {
    background: #edf4fb;

    color: #075b9f;

    padding: 11px 8px;

    text-align: center;

    font-size: 14px;
}

.country-card td {
    padding: 12px 8px;

    border-top: 1px solid #e5e5e5;

    text-align: center;

    font-size: 15px;
}

.country-card td:last-child {
    font-weight: 600;
}


/* Loading */

.loading {
    grid-column: 1 / -1;

    text-align: center;

    padding: 40px;

    color: #666;
}


/* =========================================
   3 BOXES
   Screen နည်းနည်းကျဉ်းလာရင် 3 ခု
========================================= */

@media (max-width: 1050px) {

    .rates-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================
   2 BOXES
========================================= */

@media (max-width: 800px) {

    .rates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   1 BOX
   Phone
========================================= */

@media (max-width: 550px) {

    .air-rates-section {
        padding: 40px 15px 60px;
    }

    .air-rates-heading h1 {
        font-size: 27px;
    }

    .air-rates-subtitle {
        font-size: 15px;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}


/* =========================================
   AIR FREIGHT RATES - FINAL LAYOUT
   ========================================= */

.air-rates-section {
    width: 100%;
    padding: 60px 20px 80px;
}

/* Heading ကို အပေါ်ဆုံး တစ်ကြောင်းတည်းထား */
.air-rates-section > .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: block !important;
}

/* Title */
.air-rates-heading {
    width: 100%;
    display: block !important;
    text-align: center;

    margin: 0 0 40px;
    padding: 0;
}

/* Main title */
.air-rates-heading h1 {
    width: 100%;
    margin: 0 0 12px;
    text-align: center;

    font-size: 36px;
    line-height: 1.4;
}

/* Subtitle */
.air-rates-heading .air-rates-subtitle {
    width: 100%;
    margin: 0;
    text-align: center;

    font-size: 17px;
}

/* =========================================
   COUNTRY CARDS
   ========================================= */

#ratesContainer.rates-grid {
    width: 100%;

    display: grid !important;

    /*
       Screen ကျယ်ရင် 5 ခု
       နည်းလာရင် 4 / 3 / 2 / 1 ခု
       အလိုအလျောက်ပြောင်းမယ်
    */
    grid-template-columns: repeat(
        auto-fit,
        minmax(190px, 1fr)
    );

    gap: 24px;

    align-items: start;
}

/* Country Card */
#ratesContainer .country-card {
    width: 100%;
    min-width: 0;

    margin: 0;
}

/* Card title */
#ratesContainer .country-card h3 {
    margin: 0;
    text-align: center;
}

/* Card table */
#ratesContainer .country-card table {
    width: 100%;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .air-rates-section {
        padding: 50px 18px 70px;
    }

    .air-rates-heading h1 {
        font-size: 30px;
    }

    #ratesContainer.rates-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(180px, 1fr)
    );
    gap: 20px;
    justify-items: stretch;
}
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .air-rates-section {
        padding: 40px 15px 60px;
    }

    .air-rates-heading {
        margin-bottom: 30px;
    }

    .air-rates-heading h1 {
        font-size: 25px;
    }

    .air-rates-heading .air-rates-subtitle {
        font-size: 14px;
    }

    #ratesContainer.rates-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* PRICE COLUMN */
.country-card th:last-child,
.country-card td:last-child {
    text-align: right !important;
    padding-right: 20px !important;
}

/* ================================
   AIR FREIGHT PRICE ALIGNMENT
================================ */

.rate-header,
.rate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.rate-header {
    background: #eef4fb;
    padding: 10px 15px;
    font-weight: 600;
}

.rate-header span:first-child {
    text-align: left;
}

.rate-header span:last-child {
    text-align: center;
}

/* Price rows */
.rate-row {
    padding: 12px 15px;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

.rate-row span {
    text-align: left;
}

.rate-row strong {
    text-align: center;
}

/* =========================================
   PRODUCT PURCHASING
========================================= */

.purchasing-section {
    padding: 60px 20px;
    background: #f5f8fc;
}

.purchasing-heading {
    text-align: center;
    margin-bottom: 40px;
}

.purchasing-heading h1 {
    color: #075b9f;
    font-size: 30px;
    margin-bottom: 10px;
}

.purchasing-heading p {
    color: #666;
    font-size: 16px;
}


/* BOX GRID */

.purchasing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}


/* BOX */

.purchasing-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    border-top: 5px solid #075b9f;
}


/* BOX TITLE */

.purchasing-box h2 {
    color: #075b9f;
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 20px;
}


/* PARAGRAPH */

.purchasing-box p {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 15px;
    text-align: left;
}


/* MOBILE */

@media (max-width: 768px) {

    .purchasing-section {
        padding: 40px 15px;
    }

    .purchasing-heading h1 {
        font-size: 24px;
    }

    .purchasing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .purchasing-box {
        padding: 22px;
    }

    .purchasing-box h2 {
        font-size: 20px;
    }

    .purchasing-box p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* =========================================
   SERVICES - HORIZONTAL LIST
========================================= */

.services-section {
    width: 100%;
    padding: 60px 8%;
    background: #f5f8fc;
}

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #0A4D8C;
}

.service-list {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-row {
    width: 100%;
    min-height: 95px;

    background: #ffffff;
    border-radius: 12px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-shadow: 0 5px 18px rgba(0,0,0,0.08);

    transition: 0.25s ease;
}

.service-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.service-info {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 18px;

    flex: 1;
}

.service-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
}

.service-info h3 {
    margin: 0 0 5px;
    color: #07569b;
    font-size: 20px;
}

.service-info p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.service-contact {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    background: #ff9800;
    color: #ffffff;

    border: 2px solid #ff9800;
    border-radius: 7px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.service-contact:hover {
    background: #ffffff;
    color: #ff9800;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .services-section {
        padding: 45px 15px 60px;
    }

    .services-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .service-row {
        padding: 16px;
        align-items: flex-start;
    }

    .service-info {
        gap: 12px;
    }

    .service-icon {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .service-info h3 {
        font-size: 17px;
    }

    .service-info p {
        font-size: 14px;
    }

    .service-contact {
        padding: 9px 13px;
        font-size: 13px;
    }
}

/* =========================
   ABOUT PAGE
========================= */

/* =========================
   ABOUT PAGE
========================= */

.about-section {
    padding: 60px 20px;
    background: #f5f8fc;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-content > h1 {
    margin: 0 0 35px;
    text-align: center;
    font-size: 42px;
    color: #07579f;
}

.about-content > h2 {
    margin: 0 0 15px;
    font-size: 28px;
    color: #07579f;
}

.about-content > p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}


/* တစ်ခုချင်းစီရဲ့ အကြောင်းအရာ */

.about-info {
    margin-top: 42px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.about-icon {
    margin-bottom: 8px;
    font-size: 30px;
}

.about-info h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.5;
    color: #07579f;
}

.about-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}


/* =========================
   CONTACT BUTTON
   တစ်ခုတည်း၊ အောက်ဆုံး
========================= */

.about-contact {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.about-contact a {
    display: inline-block;
    padding: 11px 24px;

    background: #ff9800;
    color: #fff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    border-radius: 6px;
}

.about-contact a:hover {
    opacity: 0.9;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about-section {
        padding: 40px 18px;
    }

    .about-content > h1 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .about-content > h2 {
        font-size: 24px;
    }

    .about-content > p,
    .about-info p {
        font-size: 15px;
        line-height: 1.85;
    }

    .about-info {
        margin-top: 32px;
    }

    .about-info h3 {
        font-size: 19px;
    }

    .about-icon {
        font-size: 27px;
    }

    .about-contact {
        margin-top: 40px;
    }
}