/* =============================================
   GLOBAL RESET & TYPOGRAPHY
   ============================================= */

/* GLOBAL IMAGE SAFETY */
img {
  max-width: 100%;
  height: auto;
}

/* BOX SIZING FIX */
*,
*::before,
*::after {
  box-sizing: border-box;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fffaf0;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* =============================================
   LAYOUT CONTAINER
   ============================================= */
header, nav, main, .footer-global {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* =============================================
   TOP CONTACT BAR
   ============================================= */
.top-contact-bar {
  background: #1e4484;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  font-weight: 500;
}

.top-contact-bar-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.top-contact-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-contact-bar a:hover {
  text-decoration: underline;
}

.top-contact-bar a[href*="wa.me"] {
  background: rgba(37, 211, 102, 0.2); /* Soft green glow */
  padding: 2px 8px;
  border-radius: 4px;
}

/* =============================================
   HEADER
   ============================================= */
header {
  text-align: center;
  padding: 18px 0;
  background: linear-gradient(90deg, #fff8e1, #f0f8ff);
}

header img {
  max-height: 80px;
  width: auto;
}

/* =============================================
   MAIN NAVIGATION
   ============================================= */
nav[aria-label="Primary navigation"] ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav[aria-label="Primary navigation"] a {
  color: #1e4484;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

nav[aria-label="Primary navigation"] a:hover,
nav[aria-label="Primary navigation"] a.active {
  background: #ffcc5c;
  color: #1e2d49;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: #f8f1e3;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb a {
  color: #1e4484;
  text-decoration: none;
}

.breadcrumb li[aria-current="page"] {
  color: #d97706;
  font-weight: 600;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #999;
}

/* =============================================
   PRODUCT HERO - Balanced on Desktop (No Widening) + Clean Mobile
   ============================================= */
.product-hero {
  background: linear-gradient(135deg, #fff8e1, #f0f8ff);
  padding: 40px 15px 30px;
  margin: 25px 0;
  border-radius: 16px;
}

.product-hero-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.product-hero-image {
  flex: 1 1 480px;
  min-width: 280px;
  text-align: center;
}

.product-hero-image img {
  width: 100%;
  max-width: 520px;           /* ← This prevents widening on large computers */
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: block;
}

.product-hero-content {
  flex: 1 1 480px;
  min-width: 280px;
  text-align: center;
}

.product-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #1e4484;
}

.product-header-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

.product-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.product-hero-buttons a {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  min-width: 150px;
  text-align: center;
  transition: all 0.2s;
}

.product-hero-buttons a:nth-child(1) { background:#44ba64; color:#fff; }
.product-hero-buttons a:nth-child(2) { background:#25D366; color:#fff; }
.product-hero-buttons a:nth-child(3) { background:#ffc107; color:#222; }

/* Force nice side-by-side on desktop without stretching */
@media (min-width: 992px) {
  .product-hero-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .product-hero-content {
    text-align: left;
  }
  .product-hero-image img {
    max-width: 500px;     /* Slightly tighter on very wide screens */
  }
}

/* =============================================
   TABLE STYLES
   ============================================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 2px solid #ffe5b4;
}

th, td {
  padding: 16px 14px;
  border: 1px solid #ffe5b4;
  text-align: left;
  vertical-align: top;
}

th {
  background: #fff3d9;
  color: #1e4484;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
}

td {
  background: #fff;
  color: #333;
}

tr:nth-child(even) td {
  background: #fffaf0;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =============================================
   FOOTER
   ============================================= */
/* =============================================
   FOOTER - FIXED CONTRAST (Perfect readability)
   ============================================= */
.footer-global {
  background: linear-gradient(to right, #1e4484, #e89c00);   /* slightly darker yellow */
  color: #ffffff;                                            /* white text */
  margin-top: 60px;
}

/* Make links bright and readable */
.footer-global a {
  color: #fff;
  text-decoration: none;
}
.footer-global a:hover {
  text-decoration: underline;
  color: #ffeb99;   /* light gold on hover */
}

/* Extra readability on yellow side */
.footer-global .footer-box h4,
.footer-global p,
.footer-global li {
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.footer-inner{
  display:grid;

  grid-template-columns:
    1.35fr
    0.8fr
    1fr
    1fr;

  gap:40px;

  padding:40px 15px;
}
@media (max-width:900px){

  .footer-inner{
    grid-template-columns:1fr 1fr;
  }

}

@media (max-width:600px){

  .footer-inner{
    grid-template-columns:1fr;
  }

}
.footer-box i{
  width:20px;
  text-align:center;
  flex-shrink:0;
}
.footer-box p{
  display:flex;
  align-items:flex-start;
  gap:8px;
}

.footer-box p i{
  margin-top:5px;
  flex-shrink:0;
}
.footer-box .fa-phone-alt{
  color:#7CFF8A;
}

.footer-box .fa-envelope{
  color:#FFD76A;
}

.footer-box .fa-whatsapp{
  color:#25D366;
}

.footer-box .fa-map-marker-alt{
  color:#FF8A8A;
}
.footer-box h4 {
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.2);
  font-size: 0.9rem;
}
.footer-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-box li{
  margin-bottom:10px;
  line-height:1.5;
}

.footer-box li::before{
  content:"›";
  color:#ffeb99;
  margin-right:8px;
  font-weight:bold;
}
/* =============================================
   HOME PAGE SPECIFIC STYLES
   ============================================= */
.hero-home {
  background: linear-gradient(135deg, #f5f9ff 0%, #e9f4ea 100%);
  padding: 40px 15px;
  margin: 20px 0 30px 0;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.hero-home-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.hero-home-text h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  color: #16376a;
  margin-bottom: 14px;
}

.hero-home-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* =============================================
   HOME HERO 3 IMAGE GRID
   ============================================= */

.hero-home-image-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:25px 0;
}

.hero-home-image-grid img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  display:block;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  transition:transform 0.25s ease;
}

.hero-home-image-grid img:hover{
  transform:scale(1.02);
}

/* MOBILE */
@media (max-width:768px){

  .hero-home-image-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-home-image-grid img{
    aspect-ratio:16/10;
  }

}

.cta-row a {
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-block;
}

.btn-call { background: #44ba64; color: #fff; }
.btn-wa   { background: #25D366; color: #fff; }
.btn-mail { background: #ffc107; color: #222; }

.section-home h2 { 
  color: #16376a; 
  margin-bottom: 12px; 
}

.home-grid, .category-grid, .market-grid, .industry-grid, .trust-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.home-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}

.home-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.simple-card {
  background: #f9fbff;
  border: 1px solid #dbe6f4;
  border-radius: 15px;
  padding: 20px;
}

.cta-strip {
  background: linear-gradient(135deg, #1e4484, #16376a);
  color: #fff;
  text-align: center;
  padding: 48px 18px;
  border-radius: 18px;
  margin-top: 30px;
}

.cta-strip h2 { 
  color: #fff; 
  margin-bottom: 10px; 
}

.faq-box {
  background: #f8fafc;
  border: 1px solid #e3e9f3;
  border-radius: 14px;
  padding: 20px;
  margin-top: 18px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .product-hero {
    padding: 35px 15px 25px;
  }
  .product-hero-image img {
    height: 220px;        /* Further reduced for mobile */
  }
  header img {
    max-height: 65px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .product-hero-content h1 {
    font-size: 1.75rem;
  }
}

/* STICKY CTA (GLOBAL SAFE) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e4484;
  display: flex;
  justify-content: space-around;
  z-index: 9999;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.sticky-cta a:last-child {
  border-right: none;
}

.sticky-cta a:hover {
  background: #16356b;
}

/* OPTIONAL: HIDE ON DESKTOP IF YOU WANT */
@media (min-width: 768px) {
  .sticky-cta {
    max-width: 420px;
    left: auto;
    right: 20px;
    bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
  }
}

body {
  padding-bottom: 60px;
}

.related-products {
  margin-top: 55px;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 28px;
}

.related-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.related-product-card {
  display: block;
  width: 260px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.related-product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.related-product-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 14px 14px 8px;
  color: #1e4484;
}

.related-product-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0 14px 16px;
}

.hero-trust-line{
  margin-top:18px;
  font-size:15px;
  color:#666;
  font-weight:600;
}


/* SOCIAL LINKS */
/* SOCIAL LINKS */
.social-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin:22px 0 10px;
  flex-wrap:wrap;
}

.social-links a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid #d6d6d6;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.3s ease;
  font-size:22px;
}

/* YOUTUBE */
.social-links a:nth-child(1){
  color:#ff0000;
}

/* INSTAGRAM */
.social-links a:nth-child(2){
  color:#e1306c;
}

/* X TWITTER */
.social-links a:nth-child(3){
  color:#111111;
}

.social-links a:hover{
  transform:translateY(-3px);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  background:#f7f7f7;
}

.social-links a:hover i{
  transform:scale(1.08);
  transition:0.3s ease;
}

/* FACEBOOK */
.social-links a:nth-child(4){
  color:#1877f2;
}

/* PINTEREST */
.social-links a:nth-child(5){
  color:#e60023;
}

/* LINKEDIN */
.social-links a:nth-child(6){
  color:#0a66c2;
}

.top-contact-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  align-items:center;
}

.top-contact-links a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
}

.top-contact-links a:hover{
  opacity:0.9;
}

.top-contact-links i{
  font-size:14px;
}

.top-wa{
  color:#25D366 !important;
}

/* MOBILE MENU BUTTON */

.menu-toggle{

  display:none;

}

.footer-social{
  text-align:center;
  margin-top:5px;
}

.footer-social h4{
   color:#ffeb99;
  margin-bottom:10px;
}

.social-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-box img{
  display:block;
  margin:0 auto 12px;
}


#header-placeholder{
  min-height:220px;
}

#footer-placeholder{
  min-height:650px;
}

body{
    -webkit-user-select:none;
    user-select:none;
}

/* Allow contact links */
a[href^="mailto:"],
a[href^="tel:"],
a[href*="wa.me"]{
    -webkit-user-select:text;
    user-select:text;
}
