/* ===========================================
   ROOT VARIABLES
=========================================== */
:root {
    --bg: #f6f8fb;
    --primary: #1f49d9;
    --accent: #0ea572;
    --muted: #6b7280;
    --dark: #091427;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(18,35,80,0.06);
}

/* GLOBAL DEFAULTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--dark);
}

/* ===========================================
   HEADER
=========================================== */
.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: -20px !important
}

.nav {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40px;
    height: 60px;
}

.logo-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.brand h1 {
    font-size: 16px;
    color: var(--primary);
}

.brand p {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.highlight {
    color: #488444; /* same green as your theme */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-links a {
    color: var(--muted);
    font-size: 15px;
}

.login-btn {
    color: var(--muted);
    font-size: 15px;
}

.btn-primary {
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline {
    padding: 10px 16px;
    border: 2px solid rgba(31,73,217,0.2);
    border-radius: 10px;
    color:#488548;
    font-weight: 600;
}

/* ===========================================
   HERO SECTION
=========================================== */
.hero {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    background: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 15px;
}

.hero-left h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
}

.blue {
    color: #488444;
}

.lead {
    margin: 20px 0;
    color: var(--muted);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.big-btn {
    padding: 14px 26px;
    border-radius: 12px;
}

.trust-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.dot {
    background: rgba(14, 165, 114, 0.12);
    color: var(--accent);
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 50%;
}

/* ===========================================
   RIGHT VISUAL CARDS
=========================================== */
.visual {
    position: relative;
    height: 500px;
}

.hub {
    position: absolute;
    top: 40%;
    left: 40%;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.hub small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
}

.growth-visual {
    width: 430px;
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.growth-visual h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card {
    width: 48%;
    background: #f4f7ff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
}

.card .label {
    font-size: 14px;
    color: #6b7280;
}

.card .value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #1f49d9;
    margin-top: 6px;
}

.growth-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    margin-top: 10px;
}

.bar {
    width: 16%;
    border-radius: 12px;
    background: linear-gradient(180deg, #4f7bff, #1f49d9);
    animation: grow 2s infinite ease-in-out;
}

.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.2s; }
.bar3 { animation-delay: 0.4s; }
.bar4 { animation-delay: 0.6s; }
.bar5 { animation-delay: 0.8s; }

@keyframes grow {
    0% { height: 20px; }
    50% { height: 110px; }
    100% { height: 20px; }
}

.status {
    top: 30px;
    right: 30px;
    border-left: 4px solid #1fd0a0;
}

.savings {
    bottom: 50px;
    right: 40px;
    border-left: 4px solid #ff8a3d;
}

.active {
    bottom: 140px;
    right: 140px;
    background: var(--primary);
    color: white;
}

.meta {
    font-size: 12px;
    color: var(--muted);
}

.big {
    font-size: 22px;
    margin-top: 5px;
}

/* Mobile */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .search {
        display: none;
    }
    .visual {
        height: auto;
        margin-top: 10px;
    }
}
html {
  scroll-behavior: smooth;
}

/* =======================================
   WHY CHOOSE iCARRY SECTION
=========================================== */
.why-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 60px;
    text-align: center;
}

.why-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.why-subtitle {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;
    text-align :center;
}

.why-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display:flex;
    flex-direction:column;
    text-align: center;
    justify-items: center;
    align-items:center;
    transition: 0.2s ease-in-out;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(31,73,217,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:45px;
    color: var(--primary);
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    align-items: center;

}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* --- HOW IT WORKS --- */
.how-it-works-section {
    text-align: center;
    padding: 20px 10px;
}

.how-it-works-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-box {
    width: 200px;
    text-align: center;
}

.step-box img {
    height: 50px;
    margin-bottom: 15px;
}

/* --- SHIPPING CALCULATOR --- */
.shipping-calculator-section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 80px 10%;
    flex-wrap: wrap;
}
.calculator-left {
    flex: 1;
}

.calculator-left h2 {
    font-size: 34px;
    font-weight: 700;
}

.feature-point {
    display: flex;
    gap: 15px;
    margin: 18px 0;
}
.feature-point img {
    height: 50px;
    margin-bottom: 15px;
}

.calculator-right {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
}
/* ------- PARTNERS SECTION -------- */
.partners-section {
    padding: 80px 10%;
    text-align: center;
}

.partners-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top:-80px;
}

.partners-section .subtitle {
    font-size: 18px;
    color: #2E27F5;
    margin-bottom: 40px;
}

.mini-title {
    font-size: 15px;
    font-weight: 600;
    color: #777;
    margin-bottom: 20px;
    letter-spacing:1px;
}

.courier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-box {
    background: #fff;
    padding: 18px 0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.integration-box {
    margin-top: 25px;
    background: #fff;
    padding: 22px 0;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.integration-logos {
    display: flex;
    flex-wrap: nowrap;      /* force one straight line */
    justify-content: center;
    align-items: center;
    gap: 25px;              /* spacing between logos */
    overflow-x: auto;       /* allows scrolling if screen is small */
    padding: 10px 0;
}

.integration-logos img {
    height: 90px;            /* ↓ adjust size here */
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media(max-width: 900px) {
    .courier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .courier-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* --------- PRICING SECTION ---------- */
.pricing-section {
    margin-top:-55px;
    text-align: center;
    padding: 30px 3%;
}

.pricing-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom:0px;
}

.pricing-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 55px;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pricing-card {
    background: #fff;
    padding: 30px 30px;
    border-radius: 18px;
    width: 310px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    font-weight: 500;
}
.price-note{
  color : #500;
 }
.custom-price {
    font-size: 46px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-card ul li {
    margin: 6px 0;
    font-size: 15px;
    color: #333;
}

.popular {
    border: 3px solid #1747FF;
    transform: scale(1.05);
}

.popular-badge {
    background: #FF7A00;
    color: #fff;
    padding: 6px 20px;
    font-size: 13px;
    border-radius: 18px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

.btn-outline,
.btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #1747FF;
}
.btn-outline {
    background: #00C853;
    color: #fff;
    border :none;
}
.btn-outline:hover {
    background: #488548;
    color: #fff;
}

.btn-primary {
    background: #1747FF;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #0f33be;
}

/* Responsive */
@media (max-width: 950px) {
    .popular {
        transform: scale(1);
    }
}
/* FOOTER MAIN */
.footer {
  background: #031633;
  color: #fff;
  padding: 60px 0 30px;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #d4d6d9;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

/* TOP SECTIONS – COLUMNS */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-col {
  width: 230px;
}

.footer-col h4 {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social img {
  width: 35px;
  height: 35px;
  transition: 0.3s;
}

.footer-social img:hover {
  transform: scale(1.15);
}

/* PAYMENT ICONS */
.footer-payments {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  align-items: center;
}

.footer-payments img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #1b355b;
  margin-top: 45px;
  padding-top: 25px;
  text-align: center;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer-contact {
  margin-top: 10px;
  font-size: 25px;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  z-index: 9999;
}

.floating-wa img {
  width: 50px;
  height: 50px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    justify-content: center;
    text-align: center;
  }
  .footer-col {
    width: 100%;
  }
  .footer-social, .footer-payments {
    justify-content: center;
  }
}
.simple-calc {
    text-align: center;
    padding: 40px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 0 35px rgba(0,0,0,0.08);
}

.calc-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.calc-buttons {
    display: flex;
    justify-content: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.calc-btn {
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.25s;
}

.calc-btn:hover {
    transform: translateY(-4px);
    opacity: 0.92;
}

/* Button Colors (fresh & colorful) */
.calc-btn.domestic {
    background: linear-gradient(135deg, #FF8A00, #FF5E00);
}
.calc-btn.international {
    background: linear-gradient(135deg, #1FB6FF, #0095D9);
}
.calc-btn.b2b {
    background: linear-gradient(135deg, #9B4DFF, #6B1FFF);
}
.calc-btn.Same {
    background: linear-gradient(135deg, #FF8A00, #FF5E00);
}
.courier-partners {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.courier-partners img {
    background: #fff;
    padding: 18px 26px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height:150px;
    width: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.courier-partners img:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
a {
    text-decoration: none;
}
footer {
    overflow-x: hidden;
}
.section-heading {
    font-size: 38px; /* adjust size per your design */
    font-weight: 700;
    text-align: center;

    /* Gradient color */
    background: linear-gradient(135deg, #FF8A00, #FF5E00, #1FB6FF, #9B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 30px;
}
/* Bronze Title - Darker */
.pricing-card:nth-child(1) h3 {
    color: #8B4513 !important; /* Dark Bronze/Brown */
        text-align: center;
}

/* Silver Title - Dark Metallic */
.pricing-card:nth-child(2) h3 {
    color: #707070 !important; /* Dark Silver/Grey */
        text-align: center;
}

/* Gold Title - Deep Gold */
.pricing-card:nth-child(3) h3 {
    color: #B8860B !important; /* Dark Goldenrod */
        text-align: center;
}

/* Platinum Title - Dark Platinum */
.pricing-card:nth-child(4) h3 {
    color: #6E6E6E !important; /* Dark Platinum Grey */
        text-align: center;
}
/* Keep -20% off green and centered */
.pricing-card p:nth-of-type(2) {
    color: #0EA572; /* Green */
    font-weight: 600;
}

/* Rates starting at - same color and bold for all cards */
.pricing-card .price-note {
    color: #FF6B6B; /* Choose your desired color */
    font-weight: bold; /* Make text bold */
}
 /*--------------------------------For new pages (about us)  ---------------------------*/
/* ========================= ABOUT US PAGE ========================= */

.about-us-section {
    padding: 70px 0;
    background: #f9fbff; /* light blueish background */
    font-family: 'Poppins', sans-serif;
}

.about-us-section .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-title span {
    background: linear-gradient(90deg, #007bff, #488548);
    -webkit-background-clip: text;
    color: transparent;
}

.about-us-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}

/* Sub Headings */
.sub-heading {
    margin-top: 35px;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 8px;
    width: fit-content;
}

/* Borders using your brand colors */
.green-border {
    border-bottom: 3px solid #488548;
    color: #488548;
}

.blue-border {
    border-bottom: 3px solid #007bff;
    color: #007bff;
}

/* Bullet Lists */
.about-list,
.about-highlights,
.colored-list {
    margin: 15px 0 20px 20px;
    font-size: 17px;
    line-height: 1.9;
}

.colored-list li::marker {
    color: #488548; /* green icon color */
}

/* Info note box */
.about-note {
    background: #e7f5e9;
    border-left: 5px solid #488548;
    padding: 15px 18px;
    margin-top: 28px;
    border-radius: 6px;
    font-size: 16px;
}

/* Contact Button */
.about-cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.about-cta-btn:hover {
    background: #488548;
    transform: scale(1.05);
}

/* =================== Responsive =================== */

@media (max-width: 768px){
    .section-title { font-size: 28px; }
    .sub-heading { font-size: 22px; }
    .about-us-section p, .colored-list { font-size: 15.5px; }
    .about-cta-btn { font-size: 15px; padding: 12px 24px; }
}
.brand-big {
    font-size: 38px;        /* Increase font size */
    font-weight: 800;
    color: #488444;         /* Your green */
}
/* ================= Terms & Conditions Page ================= */

.terms-container {
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.terms-container h1 {
    font-size: 34px;
    font-weight: 800;
    color: #0a1a2f;
    margin-bottom: 25px;
    position: relative;
}

.terms-container h1::after {
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#488548;  /* Green brand color */
    margin-top:8px;
    border-radius:4px;
}

.terms-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 12px;
    color:#007bff;   /* Blue theme */
    font-weight:700;
}

.terms-container h3 {
    font-size: 18px;
    margin-top: 18px;
    color:#488444; /* Brand green text */
}

.terms-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.terms-container ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.toc {
    background:#f7faff;
    padding: 18px;
    border-radius:10px;
    margin-bottom:30px;
    border-left:5px solid #007bff;
}

.toc b {
    display:block;
    margin-bottom:10px;
    font-size:18px;
}

.toc a {
    display:block;
    color:#007bff;
    padding:6px 0;
    transition:0.3s;
}

.toc a:hover {
    color:#488548;
    margin-left:4px;
}

/* Mobile Responsive */
@media(max-width:768px){
    .terms-container {
        padding: 25px;
        margin: 30px auto;
    }

    .terms-container h1{ font-size:28px; }
    .terms-container h2{ font-size:20px; }
}


/* ================= MOBILE MENU ================= */
/* Hide mobile menu by default */
.mobile-dropdown {
  display: none;
  position: absolute;
  top: 80px; /* Adjust to your header height */
  right: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 9999;
  width: 200px;
}

/* Mobile menu links */
.mobile-dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.mobile-dropdown a:last-child {
  border-bottom: none;
}

/* Hover effect only on mobile */
@media (max-width: 600px) {
  .mobile-dropdown a:hover {
    background: #f1f1f1;
  }
}

/* Show mobile dropdown when toggled open */
.mobile-dropdown.open {
  display: flex;
  flex-direction: column;
}

/* Mobile menu icon (hamburger) */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  margin-left: auto;
}

/* Make "Sign Up Free" blue and bold in mobile menu */
@media (max-width: 768px) {
  .mobile-dropdown a:last-child {
    color: #007bff;
    font-weight: 600;
  }

  /* Make "Login" green and bold in mobile menu */
  .mobile-dropdown a:nth-child(4) {
    color: #06b353;
    font-weight: 600;
  }
}

/* ================= RESPONSIVE NAV & MENU ================= */
@media (max-width: 768px) {
  .mobile-menu-icon {
    display: block;
  }

  /* Hide desktop nav links and buttons */
  .nav-right {
    display: none;
  }

  /* Ensure nav container is relative for absolute dropdown */
  .nav {
    position: relative;
  }
}

/* ================= MOBILE (<=600px) ================= */
@media (max-width: 600px) {
  /* Navbar adjustments */
  nav {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .nav-links, .login-btn, .btn-primary {
    display: none !important;
  }

  .nav-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .menu-icon {
     display: flex;
     align-items: center;
     justify-content: center;
  }

  /* Hero section */
  .hero {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding: 7px 8px !important;
    gap: 10px !important;
  }

  .hero-left {
    width: 100%;
    padding: 0 20px !important;
    align-items: center !important;
  }

  .hero-left h1 {
    font-size: 24px !important;
    line-height: 32px !important;
    margin-bottom: 6px !important;
  }

  .hero-left p {
    font-size: 13.5px !important;
    margin-bottom: 10px !important;
    max-width: 330px;
  }

  /* Hero buttons stacked */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 12px;
    align-items: center;
  }

  .hero-buttons a {
    width: 80% !important;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    display: block !important;
  }

  /* Trust row stacked */
  .trust-row {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px !important;
  }

  .trust-row .trust-item {
    width: 100%;
  }

  /* Pricing cards stacked */
  .pricing-cards {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    grid-template-columns: 1fr !important;
  }

  .pricing-card, .plan-card {
    width: 100% !important;
    margin: 0 auto;
  }

  /* Ready section */
  .ready {
    text-align: center;
    padding: 60px 20px;
  }

  .ready h2 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 800;
  }

  .ready p {
    font-size: 15px;
    max-width: 500px;
    margin: 10px auto 30px;
  }

  .ready .btn-row {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .ready .btn-row a {
    width: 100%;
    padding: 15px;
    font-size: 17px;
  }

  /* Logo smaller and shifted right */
  .site-header .brand {
    width: auto;
    margin-left: 25px;
    display: flex;
    align-items: center;
  }

  .site-header .brand .logo-box img {
    height: 25px;
    width: auto;
  }

  /* Dashboard scale and spacing */
  .growth-visual {
    width: 100%;
    margin-top: 15px;
    transform: scale(0.9);
    text-align: center;
  }

  .growth-visual .card {
    padding: 18px !important;
  }

  /* Reduce top margin/padding after header */
  .site-header {
    margin-bottom: -50px !important;
    padding-bottom: 5px !important;
  }

  /* Reduce gap inside hero */
  .hero {
    padding-top: 1px !important;
    padding-bottom: 10px !important;
    gap: 8px !important;
  }

  /* Title and paragraph spacing */
  .hero-left h1, .hero-title {
    margin-bottom: 4px !important;
  }

  .hero-left p {
    margin-bottom: 6px !important;
  }
}

/* ================= EXTRA SMALL (<=480px) ================= */
@media (max-width: 480px) {
  h1, .hero-title {
    font-size: 20px !important;
    line-height: 1.15;
  }

  .hero-left h1, .hero-title {
    font-size: 17px !important;
    line-height: 22px !important;
    font-weight: 800;
    margin-bottom: 4px !important;
  }

  p {
    font-size: 13px !important;
    line-height: 19px !important;
    margin-bottom: 8px !important;
  }

  .trust-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  /* Hero eyebrow smaller & centered */
  .hero-left .eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  /* Hero heading centered */
  .hero-left h2 {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  /* Lead paragraph smaller and centered */
  .hero-left .lead {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }

  /* Hero buttons stacked narrower */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 12px;
  }

  .hero-buttons a {
    width: 80% !important;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    display: block !important;
  }
}

/* ================= TABLET (601px - 1024px) ================= */
@media (min-width: 601px) and (max-width: 1024px) {
  /* Pricing cards stacked in one column */
  .pricing-cards, .plan-wrapper, .plans-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .pricing-card, .plan-card {
    width: 90% !important;
    margin: 0 auto !important;
  }

  /* Show hero buttons side by side */
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
  }

  .hero-buttons a {
    width: auto !important;
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
  }

  /* Restore logo size */
  .site-header .brand .logo-box img {
    height: 45px !important;
  }

  /* Growth visual width & size */
  .growth-visual {
    width: 90% !important;
    margin: 20px auto !important;
    transform: scale(1);
    text-align: center;
  }

  .growth-visual .stats {
    gap: 20px !important;
  }

  .growth-visual .card {
    padding: 22px !important;
    font-size: 18px;
  }

  .hero-right, .growth-visual {
    max-width: 720px;
  }
}
  @media (min-width: 601px) and (max-width: 1024px) {

  /* Make footer exactly 2 equal columns */
  .footer-top {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      text-align: center; /* Center everything on tablets */
  }

  /* Inside each footer column */
  .footer-col {
      text-align: center !important;
  }

  /* Make social icons also center aligned */
  .footer-social,
  .footer-social a {
      justify-content: center !important;
      display: flex !important;
  }
}
/* ================= LOGOS GRID RESPONSIVENESS ================= */
/* Mobile: 2 logos per row */
@media (max-width: 600px) {
  .courier-partners, .integration-logos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .courier-partners img, .integration-logos img {
    width: 100%;
    max-width: 140px;
    height: auto;
  }
}

/* Tablet: 3 logos per row */
@media (min-width: 769px) and (max-width: 1024px) {
  .courier-partners, .integration-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .courier-partners img, .integration-logos img {
    width: 100%;
    max-width: 140px;
    height: auto;
  }
}

/* ================= STACK BUTTONS IN READY TO SHIP ================= */
@media (max-width: 600px) {
  section div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }

  section div[style*="display:flex"] a {
    width: 80% !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
  }
}

/* ================= HERO BUTTONS ================= */
/* Mobile stacked buttons */
@media (max-width: 600px) {
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 12px;
    align-items: center;
  }

  .hero-buttons a {
    width: 80% !important;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    display: block !important;
  }
}

/* Tablet buttons side by side */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 12px;
    width: 100%;
  }

  .hero-buttons a {
    width: 100% !important;
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
  }
}
/* ===========================
   TABLET LANDSCAPE ONLY
=========================== */
@media (min-width: 900px) and (max-width: 1200px) and (orientation: landscape) {

    /* 1) FIX HEADER WIDTH */
    header, nav {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* OPTIONAL: Fix logo + menu spacing */
    .nav-container {
        justify-content: space-between;
    }

    /* 2) PRICING PLANS — 2 PER ROW */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* =====================================
Alerts for form messages
===================================== */

.alert {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px; /* was 14px */
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid transparent;
}

/* Success */
.alert-success {
  background-color: #ecfdf3;
  border-color: #cde9cf;
  color: #166534;
}

/* Error */
.alert-error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

/* Icon inside alert */
.alert-icon {
  font-size: 16px;
  margin-top: 2px;
}

.alert-text {
  flex: 1 1 auto;
}