/* ====================================================
   ZEAL INTERNATIONAL - Responsive Stylesheet
   ==================================================== */

/* ====================================================
   1440px and below
   ==================================================== */
@media (max-width: 1440px) {
  :root {
    --section-py-lg: 100px;
    --section-py-md: 80px;
  }
}

/* ====================================================
   1280px and below
   ==================================================== */
@media (max-width: 1280px) {
  .about-content-side {
    padding-right: 20px;
  }
  .hero-headline {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }
}

/* ====================================================
   1024px and below (Large Tablet / Small Laptop)
   ==================================================== */
@media (max-width: 1024px) {
  :root {
    --section-py-lg: 80px;
    --section-py-md: 64px;
  }

  .header-spacer {
    height: 86px;
  }

  /* Trust bar - 2 col */
  .trust-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  /* About 2-col stacked */
  .about-content-side {
    padding-right: 0;
    margin-bottom: 40px;
  }

  /* About values - single col */
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  /* Services 2-col */
  .services-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================================
   992px and below (Tablet)
   ==================================================== */
@media (max-width: 992px) {
  /* Header */
  .header-topbar {
    display: none !important;
  }
  .header-spacer {
    height: 72px;
  }
  .navbar {
    padding: 10px 0;
  }
  .logo-img {
    height: 46px;
  }

  /* Mobile Nav */
  #mainNav {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
  }

  .nav-link {
    padding: 12px 16px !important;
    border-radius: 0;
    font-size: 0.9rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(232, 101, 10, 0.08);
    border-left: 3px solid var(--orange);
    color: var(--orange) !important;
  }

  .btn-nav-cta {
    margin: 10px 16px 0;
    width: calc(100% - 32px);
    justify-content: center;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero-visual {
    display: none;
  }
  .hero-headline {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
  }
  .hero-cta-group {
    margin-bottom: 28px;
  }
  .hero-trust-badges {
    justify-content: flex-start;
  }
  .hero-scroll {
    display: none;
  }
  /* Stack hero content to full width when visual is hidden */
  .col-lg-6.hero-content {
    width: 100%;
    max-width: 600px;
  }

  /* Trust bar - 2x2 grid */
  .trust-bar-inner {
    flex-wrap: wrap;
  }
  .trust-stat-item {
    flex: 0 0 50%;
    padding: 18px 20px;
  }
  .trust-divider {
    display: none;
  }
  .trust-badge-item {
    flex: 0 0 50%;
    padding: 12px 16px;
    font-size: 0.72rem;
  }

  /* About */
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Products */

  /* Contact */
  .contact-info-card {
    margin-bottom: 30px;
  }

  /* VAS */
  .vas-intro-block {
    padding: 36px 28px;
  }
  .vas-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* VAS image panel - increase height for tablet readability */
  .vas-image-panel {
    height: 300px;
  }
  .vas-image-panel .vip-content {
    padding: 30px 36px;
  }

  /* Footer */
  .footer-main {
    padding: 60px 0 40px;
  }
}

/* ====================================================
   768px and below (Small Tablet / Large Mobile)
   ==================================================== */
@media (max-width: 768px) {
  :root {
    --section-py-lg: 64px;
    --section-py-md: 50px;
    --section-py-sm: 40px;
  }

  /* Global overflow prevention on mobile */
  section {
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    max-width: 100%;
  }

  /* Hero adjustments */
  .hero-section {
    padding: 56px 0 44px;
    min-height: auto;
  }
  .hero-label {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .hero-tagline-wrap {
    font-size: 0.9rem;
  }
  /* Hero CTA buttons stack vertically on small tablet */
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-btn-inner {
    justify-content: center;
  }

  /* Trust bar single col → 2-column grid */
  .trust-bar-inner {
    flex-wrap: wrap;
  }
  .trust-stat-item {
    flex: 0 0 50%;
    text-align: center;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust-divider {
    display: none;
  }
  .trust-badge-item {
    flex: 0 0 50%;
    padding: 12px 14px;
    font-size: 0.72rem;
    justify-content: center;
  }

  /* Products page card */

  /* Values */
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  /* Why us comparison */
  .comparison-wrap {
    overflow-x: auto;
  }
  .comparison-table {
    min-width: 500px;
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* Contact form card */
  .contact-form-card {
    padding: 28px 22px;
  }
  .contact-info-card {
    padding: 28px 22px;
  }

  /* VAS image panel - convert to stacked layout */
  .vas-image-panel {
    height: auto;
    min-height: 280px;
    border-radius: 16px;
  }
  .vas-image-panel::before {
    background: linear-gradient(
      to bottom,
      rgba(5, 13, 30, 0.6) 0%,
      rgba(5, 13, 30, 0.92) 100%
    );
  }
  .vas-image-panel .vip-content {
    padding: 24px 22px;
    align-items: flex-end;
  }
  .vas-image-panel .vip-content .vip-text h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .vas-image-panel .vip-content .vip-text p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  /* VAS grid */
  .vas-grid {
    grid-template-columns: 1fr;
  }
  .vas-intro-block {
    padding: 28px 22px;
  }
  .vas-item {
    padding: 16px 18px;
  }

  /* Page hero */
  .page-hero {
    padding: 60px 0 50px;
  }
  .page-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  /* Footer */
  .footer-bottom .row {
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom-links {
    justify-content: flex-start;
  }
  /* Footer columns - stack on mobile */
  .footer-links-col {
    margin-bottom: 24px;
  }

  /* Scroll top button */
  .scroll-top-btn {
    bottom: 96px;
    right: 20px;
  }
  .whatsapp-float {
    bottom: 24px;
    right: 20px;
  }

  /* Mission card */
  .mission-card {
    padding: 36px 24px;
  }

  /* Products inquiry note */
  .products-inquiry-note {
    padding: 36px 24px;
  }

  /* Map */
  .map-wrap iframe {
    height: 280px;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary-zeal,
  .btn-outline-zeal,
  .btn-navy {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Services img banner - reduce height */
  .services-img-banner {
    height: 220px;
    border-radius: 16px;
  }
  .services-img-banner .sib-content {
    padding: 24px 22px;
  }
  .services-img-banner .sib-content h2 {
    font-size: 1.3rem;
  }

  /* Why us cards */
  .why-us-section .row.g-4 {
    gap: 1rem !important;
  }
}

/* ====================================================
   576px and below (Mobile)
   ==================================================== */
@media (max-width: 576px) {
  :root {
    --section-py-lg: 50px;
    --section-py-md: 40px;
  }

  /* Header */
  .header-spacer {
    height: 66px;
  }
  .navbar {
    padding: 8px 0;
  }
  .logo-img {
    height: 40px;
  }

  /* Hero */
  .hero-section {
    padding: 48px 0 36px;
  }
  .hero-label {
    margin-bottom: 14px;
  }
  .hero-headline {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 18px;
  }
  .hero-tagline-wrap {
    margin-bottom: 14px;
  }
  /* Ensure CTA buttons are stacked */
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  .hero-btn-inner {
    justify-content: center;
    width: 100%;
  }
  .hero-trust-badges {
    flex-direction: column;
    gap: 8px;
  }
  .hero-badge {
    flex-direction: row;
  }

  /* Contact card simple */
  .contact-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .contact-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer-logo-img {
    height: 56px;
  }
  .footer-main {
    padding: 40px 0 30px;
  }
  /* Stack footer widget columns full-width on mobile (override Bootstrap col-6) */
  .site-footer .col-6,
  .site-footer .col-md-6,
  .site-footer .col-lg-2,
  .site-footer .col-lg-3,
  .site-footer .col-lg-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-widget {
    margin-bottom: 28px;
  }
  .footer-brand {
    margin-bottom: 28px;
  }

  /* Trust stat */
  .trust-stat {
    padding: 16px;
  }
  .trust-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .trust-stat-content .stat-number {
    font-size: 1.3rem;
  }
  /* Trust bar items */
  .trust-stat-item {
    flex: 0 0 50%;
    padding: 14px 10px;
  }
  .tsi-num {
    font-size: 1.5rem;
  }
  .tsi-label {
    font-size: 0.7rem;
  }

  /* Service page card */
  .service-page-card {
    padding: 28px 22px;
  }

  /* Why card */
  .why-card {
    padding: 26px 22px;
  }
  .why-card .why-num {
    font-size: 2rem;
  }

  /* About stat row */
  .about-stats-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* VAS image panel - mobile optimised */
  .vas-image-panel {
    height: 260px;
    border-radius: 14px;
    margin-bottom: 24px;
  }
  .vas-image-panel .vip-content {
    padding: 18px 20px;
    align-items: flex-end;
  }
  .vas-image-panel .vip-content .vip-text h2 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .vas-image-panel .vip-content .vip-text p {
    font-size: 0.8rem;
    display: none;
  }
  /* Hide the button inside VAS panel on mobile to keep it clean */
  .vas-image-panel .btn-outline-zeal {
    display: none;
  }

  /* VAS checklist items */
  .vas-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .vas-check {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  /* Products home cards - full width */
  .col-lg-4.col-md-6 {
    width: 100%;
  }

  /* Section labels */
  .section-label {
    font-size: 0.68rem;
  }
}

/* ====================================================
   480px and below
   ==================================================== */
@media (max-width: 480px) {
  /* Hero CTA - ensure stacked */
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .hero-btn-inner {
    width: 100%;
    justify-content: center;
  }
  .btn-primary-zeal,
  .btn-outline-zeal {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    font-size: 1.4rem;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }

  .filter-tabs {
    gap: 6px;
  }
  .filter-tab {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  /* Trust bar items - tighter */
  .trust-stat-item {
    padding: 12px 8px;
  }
  .tsi-num {
    font-size: 1.4rem;
  }

  /* Product category card hvc-chips */
  .hvc-chips {
    flex-wrap: wrap;
    gap: 6px;
  }
  .hvc-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  /* About preview stats */
  .about-stat-box {
    padding: 16px 14px;
  }

  /* Services section cards */
  .service-card {
    padding: 22px 18px;
  }
  .service-number {
    font-size: 2.5rem;
  }

  /* Why us section cards */
  .why-card {
    padding: 22px 18px;
  }
  .why-num {
    font-size: 2rem;
  }

  /* Footer links tighter */
  .footer-links-col h5 {
    font-size: 0.8rem;
  }
  .footer-link {
    font-size: 0.82rem;
  }
}

/* ====================================================
   390px and below (Small Phones)
   ==================================================== */
@media (max-width: 390px) {
  .hero-headline {
    font-size: 1.45rem;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 0.83rem;
  }
  .logo-img {
    height: 36px;
  }

  /* Hero buttons full width */
  .hero-btn-primary,
  .hero-btn-secondary {
    max-width: 100%;
  }

  /* VAS panel very compact */
  .vas-image-panel {
    height: 220px;
  }

  /* Trust stat items */
  .trust-stat-item {
    padding: 10px 6px;
  }
  .tsi-num {
    font-size: 1.2rem;
  }
}

/* ====================================================
   Large screens (1920px+)
   ==================================================== */
@media (min-width: 1920px) {
  :root {
    --section-py-lg: 140px;
  }

  body {
    font-size: 17px;
  }
  .hero-headline {
    font-size: 2.6rem;
  }
}

/* ====================================================
   Print Styles
   ==================================================== */
@media print {
  .site-header,
  .whatsapp-float,
  .scroll-top-btn,
  .site-footer {
    display: none !important;
  }
  .header-spacer {
    height: 0 !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero-section {
    background: white !important;
    min-height: auto !important;
    padding: 30px 0 !important;
  }
  .hero-headline {
    color: black !important;
  }
}


/* ====================================================
   ABOUT PAGE - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {
  .about-main-image { height: 360px; }
  .about-image-wrapper { border-radius: 18px; margin-top: 30px; }
  .about-exp-badge { top: 16px; right: 16px; padding: 10px 14px; }
  .about-exp-badge .exp-num { font-size: 1.6rem; }
  .about-exp-badge .exp-label { font-size: 0.6rem; }
  .about-img-floating-card { padding: 14px 16px; gap: 12px; }
  .value-card { padding: 18px 14px; }
  .mission-card { padding: 44px 36px; }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  .about-main-image { height: 300px; }
  .about-image-wrapper { border-radius: 16px; margin-top: 20px; }
  .about-exp-badge { top: 12px; right: 12px; padding: 8px 12px; border-radius: 14px; }
  .about-exp-badge .exp-num { font-size: 1.35rem; }
  .about-img-floating-card { bottom: 16px; left: 16px; right: 16px; padding: 12px 14px; gap: 10px; border-radius: 12px; }
  .about-img-floating-card .afc-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
  .about-img-floating-card .afc-text strong { font-size: 0.8rem; }
  .about-img-floating-card .afc-text span { font-size: 0.68rem; }
  .value-card { padding: 16px 14px; gap: 10px; }
  .value-card-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
  .vc-title { font-size: 0.9rem !important; }
  .vc-desc { font-size: 0.78rem; }
  .mission-section { padding: 50px 0; }
  .mission-card { padding: 36px 24px; border-radius: 20px; }
  .mission-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 16px; }
  .mission-title { font-size: 1.5rem !important; }
  .mission-text { font-size: 0.95rem !important; line-height: 1.7; }
  .about-para { font-size: 0.9rem; line-height: 1.75; }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {
  .about-main-image { height: 240px; border-radius: 14px; }
  .about-image-wrapper { border-radius: 14px; }
  .about-exp-badge { top: 10px; right: 10px; padding: 6px 10px; border-radius: 12px; }
  .about-exp-badge .exp-num { font-size: 1.2rem; }
  .about-exp-badge .exp-label { font-size: 0.55rem; letter-spacing: 0.05em; }
  .about-img-floating-card { bottom: 10px; left: 10px; right: 10px; padding: 10px 12px; gap: 8px; border-radius: 10px; }
  .about-img-floating-card .afc-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .about-img-floating-card .afc-text strong { font-size: 0.75rem; }
  .about-img-floating-card .afc-text span { display: none; }

  /* Value cards - row layout on mobile */
  .value-card { flex-direction: row; align-items: flex-start; gap: 14px; padding: 14px; border-radius: 14px; }
  .value-card-icon { width: 38px; height: 38px; font-size: 0.9rem; flex-shrink: 0; border-radius: 10px; }
  .value-card-content { margin-top: 0 !important; }
  .vc-title { font-size: 0.88rem !important; display: block; margin-bottom: 2px; }
  .vc-desc { font-size: 0.76rem; line-height: 1.5; margin: 0; }

  /* Mission */
  .mission-card { padding: 28px 18px; border-radius: 16px; }
  .mission-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 12px; }
  .mission-title { font-size: 1.3rem !important; }
  .mission-text { font-size: 0.88rem !important; }

  /* Contact card */
  .contact-info-card { padding: 22px 16px; border-radius: 16px; }
  .about-para { font-size: 0.875rem; line-height: 1.7; }

  /* CTA buttons in contact */
  #about-phone-btn, #about-whatsapp-btn { width: 100%; max-width: 100%; justify-content: center; }
  #about-email-link { font-size: 0.8rem; word-break: break-all; }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  .about-main-image { height: 210px; }
  .value-card { padding: 12px; gap: 10px; }
  .mission-card { padding: 24px 14px; }
}


/* ====================================================
   PRODUCTS PAGE - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {
  /* Search bar - stack vertically */
  .products-search-bar .row {
    flex-direction: column;
  }
  .products-search-bar .col-md-5,
  .products-search-bar .col-md-7 {
    width: 100%;
    max-width: 100%;
  }

  /* Filter tabs - allow wrap */
  .filter-tabs {
    justify-content: flex-start;
  }

  /* Product card header padding */
  .ppc-header {
    padding: 22px 20px;
  }
  .ppc-body {
    padding: 18px 20px;
  }
  .ppc-footer {
    padding: 14px 20px 20px;
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  /* Search bar padding */
  .products-search-bar {
    padding: 16px 0;
  }
  .search-input {
    font-size: 0.88rem;
    padding: 12px 16px 12px 44px;
  }
  .search-icon {
    left: 14px;
    font-size: 0.9rem;
  }

  /* Filter tabs - scrollable row on tablet */
  .filter-tabs {
    gap: 8px;
    flex-wrap: wrap;
  }
  .filter-tab {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  /* Product cards - 2 col on tablet */
  .product-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Card header */
  .ppc-header {
    padding: 20px 18px;
  }
  .ppc-cat-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .ppc-cat-title {
    font-size: 1.05rem;
  }
  .ppc-cat-sub {
    font-size: 0.68rem;
  }

  /* Card body */
  .ppc-body {
    padding: 16px 18px;
  }
  .ppc-products-list li {
    font-size: 0.84rem;
    padding: 8px 0;
    gap: 10px;
  }

  /* Footer */
  .ppc-footer {
    padding: 12px 18px 18px;
  }
  .btn-ppc-quote {
    padding: 11px 16px;
    font-size: 0.83rem;
  }

  /* Products inquiry note */
  .products-inquiry-note {
    padding: 36px 28px;
    margin-top: 36px;
  }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {
  /* Search bar */
  .products-search-bar {
    padding: 14px 0;
  }
  .search-input {
    font-size: 0.85rem;
    padding: 11px 14px 11px 40px;
  }

  /* Filter tabs - wrap and scroll */
  .filter-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }
  .filter-tab {
    padding: 7px 12px;
    font-size: 0.74rem;
    flex-shrink: 0;
  }

  /* Product cards - single column on mobile */
  .product-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Card sizing compact */
  .ppc-header {
    padding: 18px 16px;
  }
  .ppc-cat-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 8px;
    border-radius: 9px;
  }
  .ppc-cat-title {
    font-size: 1rem;
  }

  /* Card body list - more compact */
  .ppc-body {
    padding: 14px 16px;
  }
  .ppc-products-list li {
    font-size: 0.82rem;
    padding: 7px 0;
    gap: 8px;
  }

  .ppc-footer {
    padding: 10px 16px 16px;
  }
  .btn-ppc-quote {
    padding: 10px 14px;
    font-size: 0.82rem;
    gap: 8px;
  }

  /* Products inquiry note */
  .products-inquiry-note {
    padding: 28px 20px;
    margin-top: 28px;
    border-radius: 16px;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  /* Filter tabs - make them scroll horizontally on very small screens */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 7px 11px;
    font-size: 0.72rem;
  }

  .ppc-header {
    padding: 16px 14px;
  }
  .ppc-cat-title {
    font-size: 0.95rem;
  }
  .ppc-body {
    padding: 12px 14px;
  }
  .ppc-footer {
    padding: 10px 14px 14px;
  }
}


/* ====================================================
   SERVICES PAGE - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {
  /* Service cards - 2 col on tablet (already col-md-6 but pad reduce) */
  .service-page-card {
    padding: 32px 28px;
  }
  .spc-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 16px;
    margin-bottom: 22px;
  }
  .spc-num {
    font-size: 3rem;
    top: 26px;
    right: 26px;
  }
  .spc-title {
    font-size: 1.08rem;
  }
  .spc-desc {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  /* Services section */
  .services-page-section {
    padding: 60px 0;
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  .services-page-section {
    padding: 50px 0;
  }

  /* Service cards - full width, compact */
  .service-page-card {
    padding: 26px 22px;
  }
  .spc-icon {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .spc-num {
    font-size: 2.5rem;
    top: 20px;
    right: 20px;
  }
  .spc-title {
    font-size: 1.02rem;
    margin-bottom: 12px;
  }
  .spc-desc {
    font-size: 0.86rem;
    line-height: 1.72;
  }

  /* Btn gold full width on mobile */
  .service-page-card .btn-gold {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  /* Process section (if it exists) */
  .process-section {
    padding: 60px 0;
  }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {
  .services-page-section {
    padding: 40px 0;
  }

  /* Full width cards */
  .services-page-section .col-lg-6,
  .services-page-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Compact card */
  .service-page-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .spc-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .spc-num {
    font-size: 2.2rem;
    top: 16px;
    right: 16px;
  }
  .spc-title {
    font-size: 0.98rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .spc-desc {
    font-size: 0.84rem;
    line-height: 1.7;
  }
  .service-page-card .btn-gold {
    font-size: 0.8rem !important;
    padding: 9px 16px !important;
  }

  /* Process section timeline */
  .process-section {
    padding: 44px 0;
  }
  .process-timeline {
    flex-direction: column;
    gap: 0;
  }
  .process-step {
    width: 100%;
    padding: 20px 0;
  }
  .process-connector {
    display: none;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  .service-page-card {
    padding: 18px 14px;
  }
  .spc-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 11px;
    margin-bottom: 12px;
  }
  .spc-num {
    font-size: 2rem;
  }
  .spc-title {
    font-size: 0.95rem;
  }
  .spc-desc {
    font-size: 0.82rem;
  }
}


/* ====================================================
   VALUE-ADDED SERVICES (value.php) - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {

  /* VAS Intro section - stack */
  .about-globe-container {
    padding: 30px 24px;
    border-radius: 18px;
    margin-top: 28px;
  }

  /* PAN Asia body - stack */
  .pan-asia-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* PAN Asia flag grid stays 4 col on tablet */
  .pan-flag-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  /* Stat cards */
  .pan-stat-card {
    padding: 16px 18px;
    gap: 14px;
  }
  .pan-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
  .pan-stat-num {
    font-size: 1.4rem;
  }

  /* PAN Asia section padding */
  .pan-asia-section {
    padding: 80px 0 70px;
  }
  .pan-asia-header {
    margin-bottom: 50px;
  }
  .pan-asia-heading {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {

  /* VAS Intro globe box */
  .about-globe-container {
    padding: 24px 20px;
    margin-top: 20px;
  }
  .about-stats-row {
    gap: 10px;
  }
  .about-stat-box {
    padding: 14px 12px;
    gap: 6px;
    border-radius: 12px;
    flex: 1;
  }
  .about-stat-label {
    font-size: 0.72rem;
  }

  /* VAS service cards compact */
  .vas-service-card,
  .col-sm-6 > .service-page-card {
    padding: 20px 18px !important;
  }

  /* PAN Asia section */
  .pan-asia-section {
    padding: 60px 0 50px;
  }
  .pan-asia-header {
    margin-bottom: 40px;
  }
  .pan-asia-heading {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
  .pan-asia-subheading {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* PAN Asia body */
  .pan-asia-body {
    gap: 32px;
  }

  /* Stat cards - compact */
  .pan-stat-card {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .pan-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .pan-stat-num {
    font-size: 1.3rem;
  }
  .pan-stat-label {
    font-size: 0.72rem;
  }
  .pan-asia-stat-cards {
    gap: 10px;
    margin-bottom: 28px;
  }

  /* Feature items */
  .pan-feature-item {
    font-size: 0.83rem;
    gap: 10px;
  }
  .pan-feature-item i {
    font-size: 0.88rem;
  }
  .pan-asia-features {
    gap: 10px;
  }

  /* Flag grid - 4 col on mobile landscape */
  .pan-flag-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .pan-flag-img-wrap {
    width: 44px;
    height: 32px;
    border-radius: 4px;
    margin-bottom: 6px;
  }
  .pan-flag-country {
    font-size: 0.68rem;
  }
  .pan-flag-role {
    font-size: 0.58rem;
  }
  .pan-flag-card {
    padding: 12px 8px 10px;
    border-radius: 12px;
  }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {

  /* VAS Intro - about-para text */
  .about-para {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  /* Globe box - stack stats vertically */
  .about-globe-container {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .about-stats-row {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }
  .about-stat-box {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
    font-size: 0.8rem;
    border-radius: 10px;
  }
  .about-stat-label {
    font-size: 0.66rem;
  }

  /* VAS Grid cards - 2 column on mobile (col-sm-6 does this) */
  .col-sm-6 > .service-page-card {
    padding: 16px 14px !important;
  }
  .col-sm-6 > .service-page-card .spc-desc {
    font-size: 0.82rem !important;
  }

  /* PAN Asia section */
  .pan-asia-section {
    padding: 50px 0 44px;
  }
  .pan-asia-header {
    margin-bottom: 30px;
  }
  .pan-asia-badge {
    font-size: 0.68rem;
    padding: 6px 16px;
  }
  .pan-asia-heading {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    margin-bottom: 12px;
  }
  .pan-asia-subheading {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  /* Stat cards */
  .pan-stat-card {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 12px;
  }
  .pan-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 9px;
  }
  .pan-stat-num {
    font-size: 1.2rem;
  }
  .pan-stat-label {
    font-size: 0.68rem;
  }
  .pan-asia-stat-cards {
    gap: 8px;
    margin-bottom: 20px;
  }

  /* Flag grid - 2x4 on mobile */
  .pan-flag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pan-flag-card {
    padding: 14px 10px 12px;
    border-radius: 12px;
  }
  .pan-flag-img-wrap {
    width: 48px;
    height: 34px;
    border-radius: 5px;
    margin-bottom: 8px;
  }
  .pan-flag-country {
    font-size: 0.72rem;
  }
  .pan-flag-role {
    font-size: 0.6rem;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  /* VAS cards - full width on tiny screens */
  .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pan-asia-stat-cards { gap: 6px; }
  .pan-stat-card { padding: 10px 12px; }
  .pan-stat-num { font-size: 1.1rem; }

  /* Flag grid stays 2 col */
  .pan-flag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pan-flag-card {
    padding: 12px 8px 10px;
  }
}


/* ====================================================
   WHY-US PAGE - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {
  /* Why cards - compact on tablet */
  .why-us-section .why-card {
    padding: 28px 24px;
  }
  .why-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .why-num {
    font-size: 3.2rem;
    bottom: 16px;
    right: 16px;
  }
  .why-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .why-desc {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  /* Comparison table - reduce padding */
  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  /* Section padding */
  .why-us-section {
    padding: 60px 0;
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  .why-us-section {
    padding: 50px 0;
  }

  /* Why cards */
  .why-us-section .why-card {
    padding: 24px 20px;
  }
  .why-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .why-num {
    font-size: 2.8rem;
    bottom: 14px;
    right: 14px;
  }
  .why-title {
    font-size: 0.96rem;
    margin-bottom: 8px;
  }
  .why-desc {
    font-size: 0.84rem;
    line-height: 1.68;
  }

  /* Comparison table wrap - horizontal scroll */
  .comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .comparison-table {
    min-width: 520px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
  .comparison-table td.check-yes i,
  .comparison-table td.check-no i {
    font-size: 1.1rem;
  }

  /* Mission card */
  .mission-card {
    padding: 40px 30px;
  }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {
  .why-us-section {
    padding: 40px 0;
  }

  /* Why cards - full width, compact */
  .why-us-section .col-sm-6,
  .why-us-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .why-us-section .why-card {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .why-icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 11px;
    margin-bottom: 12px;
  }
  .why-num {
    font-size: 2.4rem;
    bottom: 12px;
    right: 12px;
  }
  .why-title {
    font-size: 0.94rem;
    margin-bottom: 8px;
  }
  .why-desc {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  /* Comparison table - tight mobile */
  .comparison-wrap {
    border-radius: 10px;
  }
  .comparison-table {
    min-width: 440px;
  }
  .comparison-table th {
    padding: 11px 12px;
    font-size: 0.78rem;
  }
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .comparison-table thead tr th.col-zeal,
  .comparison-table thead tr th.col-others {
    font-size: 0.75rem;
  }
  .comparison-table td.check-yes,
  .comparison-table td.check-no {
    text-align: center;
    min-width: 60px;
  }
  .comparison-table td.check-yes i,
  .comparison-table td.check-no i {
    font-size: 1rem;
  }

  /* Mission card */
  .mission-card {
    padding: 28px 18px;
    border-radius: 16px;
  }
  .mission-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .mission-title {
    font-size: 1.25rem !important;
  }
  .mission-text {
    font-size: 0.88rem !important;
    line-height: 1.7;
  }
  #why-us-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  .why-us-section .why-card {
    padding: 18px 14px;
  }
  .why-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .why-num {
    font-size: 2rem;
    bottom: 10px;
    right: 10px;
  }
  .comparison-table {
    min-width: 380px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 9px 10px;
    font-size: 0.75rem;
  }
}


/* ====================================================
   CONTACT PAGE - RESPONSIVE FIXES
   ==================================================== */

/* ---- 992px and below (Tablet) ---- */
@media (max-width: 992px) {
  /* Contact info + form - stack to full width */
  .contact-section .col-lg-5,
  .contact-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Info card first, then form */
  .contact-section .col-lg-5 {
    order: 1;
  }
  .contact-section .col-lg-7 {
    order: 2;
  }

  /* Form card */
  .contact-form-card {
    padding: 36px 32px;
  }

  /* Contact info card */
  .contact-info-card {
    padding: 36px 32px;
  }
  .contact-info-title {
    font-size: 1.6rem;
  }
  .ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 0.95rem;
  }
  .contact-info-item {
    gap: 14px;
    margin-bottom: 20px;
  }

  /* Quick connect section */
  .quick-connect-section {
    padding: 70px 0 80px;
  }
  .qc-header {
    margin-bottom: 40px;
  }

  /* QC cards - 2 per row on tablet (col-md-6 handles this) */
  .qc-card {
    padding: 28px 24px 24px;
    min-height: 200px;
  }
  .qc-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    border-radius: 15px;
    margin-bottom: 18px;
  }

  /* Map */
  .map-wrap {
    margin-top: 44px !important;
  }
  .map-wrap iframe {
    height: 320px;
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  /* Contact section spacing */
  .contact-section {
    padding: 56px 0 50px;
  }

  /* Info card compact */
  .contact-info-card {
    padding: 28px 22px;
    border-radius: 18px;
  }
  .contact-info-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .contact-info-subtitle {
    font-size: 0.84rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .ci-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.88rem;
  }
  .contact-info-item {
    gap: 12px;
    margin-bottom: 16px;
  }
  .ci-label {
    font-size: 0.7rem;
  }
  .ci-value {
    font-size: 0.88rem;
  }
  .ci-value a {
    word-break: break-all;
  }

  /* Form card compact */
  .contact-form-card {
    padding: 28px 22px;
    border-radius: 18px;
  }
  .contact-form-title {
    font-size: 1.4rem;
  }
  .contact-form-subtitle {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }
  .form-control-custom {
    padding: 11px 14px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .form-label-custom {
    font-size: 0.76rem;
    margin-bottom: 6px;
  }
  .btn-submit-form {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Form row gap reduce */
  .contact-form-card .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  /* Stack form fields - col-md-6 becomes full width at 768 */
  .contact-form-card .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Quick connect section */
  .quick-connect-section {
    padding: 56px 0 64px;
  }
  .qc-header {
    margin-bottom: 32px;
  }
  .qc-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .qc-subtitle {
    font-size: 0.9rem;
  }
  .qc-card {
    padding: 24px 20px 20px;
    min-height: 180px;
    border-radius: 16px;
  }
  .qc-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    border-radius: 13px;
    margin-bottom: 14px;
  }
  .qc-card-value {
    font-size: 0.95rem;
    word-break: break-all;
  }

  /* Map */
  .map-wrap {
    margin-top: 36px !important;
    border-radius: 16px;
  }
  .map-wrap iframe {
    height: 260px;
  }
}

/* ---- 576px and below (Mobile) ---- */
@media (max-width: 576px) {
  /* Contact section */
  .contact-section {
    padding: 44px 0 40px;
  }

  /* Info card very compact */
  .contact-info-card {
    padding: 22px 18px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .contact-info-title {
    font-size: 1.25rem;
  }
  .contact-info-subtitle {
    font-size: 0.82rem;
    margin-bottom: 18px;
  }
  .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 0.82rem;
  }
  .contact-info-item {
    gap: 10px;
    margin-bottom: 14px;
  }
  .ci-value {
    font-size: 0.84rem;
  }

  /* WhatsApp CTA button */
  #contact-whatsapp-btn {
    font-size: 0.85rem !important;
    padding: 11px 16px !important;
  }

  /* Form card */
  .contact-form-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .contact-form-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  .contact-form-subtitle {
    font-size: 0.82rem;
    margin-bottom: 18px;
  }
  .form-control-custom {
    padding: 10px 13px;
    font-size: 0.875rem;
    border-radius: 8px;
  }
  .form-label-custom {
    font-size: 0.72rem;
    margin-bottom: 5px;
  }
  textarea.form-control-custom {
    min-height: 100px;
    rows: 4;
  }
  .btn-submit-form {
    padding: 13px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }

  /* Quick connect section */
  .quick-connect-section {
    padding: 44px 0 52px;
  }
  .qc-header {
    margin-bottom: 24px;
  }
  .qc-title {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
    margin-bottom: 8px;
  }
  .qc-subtitle {
    font-size: 0.84rem;
  }

  /* QC cards - single column on mobile */
  .quick-connect-section .col-lg-4,
  .quick-connect-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-card {
    padding: 20px 18px 18px;
    min-height: auto;
    border-radius: 14px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .qc-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .qc-card-content-wrap {
    flex: 1;
    min-width: 0;
  }
  .qc-card-label {
    margin-bottom: 3px;
  }
  .qc-card-value {
    font-size: 0.9rem;
    margin-bottom: 3px;
    word-break: break-all;
  }
  .qc-card-sub {
    font-size: 0.75rem;
  }
  .qc-arrow {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Map */
  .map-wrap {
    margin-top: 28px !important;
    border-radius: 12px;
  }
  .map-wrap iframe {
    height: 220px;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  .contact-info-card {
    padding: 18px 14px;
  }
  .contact-form-card {
    padding: 16px 14px;
  }
  .qc-card {
    padding: 16px 14px;
    gap: 12px;
  }
  .qc-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .map-wrap iframe {
    height: 200px;
  }
}
