/* ── SUN POLYMERS · GLOBAL STYLESHEET ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --blue:       #1a6dc8;
  --blue-dark:  #1254a0;
  --blue-light: #e8f2fc;
  --blue-mid:   #3a82d4;
  --accent:     #e8a020;
  --accent-lt:  #fff7e6;
  --green:      #1e9e52;
  --green-lt:   #e8f7ee;
  --red:        #c0392b;
  --red-lt:     #fdf0ee;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --border:     #e2e8f0;
  --text:       #1a2030;
  --text-mid:   #4a5568;
  --text-light: #8896a8;
  --shadow-sm:  0 1px 4px rgba(26,109,200,0.07);
  --shadow-md:  0 4px 20px rgba(26,109,200,0.10);
  --shadow-lg:  0 12px 40px rgba(26,109,200,0.13);
  --radius:     12px;
  --radius-lg:  20px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Barlow',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; line-height:1.6; }
img { max-width:100%; display:block; }
a { text-decoration:none; }

/* ── TYPOGRAPHY ── */
.condensed { font-family:'Barlow Condensed',sans-serif; }
.section-eyebrow { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--blue); margin-bottom:10px; }
.section-title { font-family:'Barlow Condensed',sans-serif; font-size:40px; font-weight:800; color:var(--text); line-height:1.05; margin-bottom:14px; }
.section-sub { font-size:15px; color:var(--text-mid); max-width:540px; line-height:1.7; margin-bottom:48px; }

/* ── NAV ── */
.navbar {
  position:sticky; top:0; z-index:200;
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:0 5%;
  display:flex; align-items:center; justify-content:space-between;
  height:66px;
  box-shadow:var(--shadow-sm);
}
.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo-icon {
  width:40px; height:40px; background:var(--blue); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
}
.nav-logo-icon svg { width:22px; height:22px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }
.nav-logo-name { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:800; color:var(--text); letter-spacing:0.5px; line-height:1; }
.nav-logo-sub  { font-size:10px; color:var(--text-light); letter-spacing:1.5px; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:8px; list-style:none; }
.nav-links a {
  color:var(--text-mid); font-size:13px; font-weight:600; letter-spacing:0.3px;
  padding:6px 12px; border-radius:8px; transition:background 0.18s, color 0.18s;
}
.nav-links a:hover { background:var(--blue-light); color:var(--blue); }
.nav-links a.active { color:var(--blue); background:var(--blue-light); }
.nav-cta-btn {
  background:var(--blue); color:white !important; padding:8px 18px !important;
  border-radius:8px; font-weight:700 !important; transition:background 0.18s !important;
}
.nav-cta-btn:hover { background:var(--blue-dark) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:22px; height:2px; background:var(--text); border-radius:2px; transition:0.3s; }
.mobile-nav { display:none; position:fixed; top:66px; left:0; right:0; background:white; z-index:199; padding:16px 5% 20px; border-bottom:1px solid var(--border); box-shadow:var(--shadow-md); }
.mobile-nav.open { display:block; }
.mobile-nav a { display:block; color:var(--text-mid); font-size:15px; font-weight:600; padding:12px 0; border-bottom:1px solid var(--border); }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:10px; font-size:14px; font-weight:700; font-family:'Barlow',sans-serif; cursor:pointer; border:none; transition:all 0.18s; letter-spacing:0.2px; }
.btn-blue { background:var(--blue); color:white; }
.btn-blue:hover { background:var(--blue-dark); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-outline { background:white; color:var(--blue); border:1.5px solid var(--blue); }
.btn-outline:hover { background:var(--blue-light); }
.btn-green { background:var(--green); color:white; }
.btn-green:hover { background:#178044; }
.btn-red { background:var(--red); color:white; }
.btn-red:hover { background:#a93226; }
.btn-wa { background:#25d366; color:white; }
.btn-wa:hover { background:#1da851; }
.btn-accent { background:var(--accent); color:#1a1a1a; }
.btn-accent:hover { background:#d4911a; }
.btn-sm { padding:9px 18px; font-size:13px; }
.btn-lg { padding:15px 32px; font-size:15px; }

/* ── CARDS ── */
.card { background:white; border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow-sm); transition:transform 0.2s, box-shadow 0.2s; }
.card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }

/* ── PRODUCT IMAGE PLACEHOLDER ── */
.prod-img { height:190px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; border-radius:var(--radius) var(--radius) 0 0; position:relative; overflow:hidden; }
.prod-img img { width:100%; height:100%; object-fit:cover; border-radius:var(--radius) var(--radius) 0 0; }
.prod-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; }
.prod-img-icon { width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; }
.prod-img-icon svg { width:28px; height:28px; stroke:rgba(255,255,255,0.55); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.prod-img-label { font-size:10px; color:rgba(255,255,255,0.4); letter-spacing:1.5px; text-transform:uppercase; }
.photo-badge { position:absolute; bottom:8px; right:8px; background:rgba(0,0,0,0.35); color:rgba(255,255,255,0.75); font-size:10px; padding:3px 8px; border-radius:4px; }

/* product card body */
.prod-body { padding:20px 22px; }
.prod-eyebrow { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:4px; }
.prod-name { font-family:'Barlow Condensed',sans-serif; font-size:24px; font-weight:800; color:var(--text); line-height:1; margin-bottom:10px; }
.prod-desc { font-size:13px; color:var(--text-mid); line-height:1.6; margin-bottom:14px; }
.spec-table { width:100%; border-collapse:collapse; margin-bottom:16px; }
.spec-table tr { border-bottom:1px solid var(--border); }
.spec-table tr:last-child { border-bottom:none; }
.spec-table td { padding:7px 0; font-size:12px; }
.spec-table td:first-child { color:var(--text-light); }
.spec-table td:last-child { font-weight:600; color:var(--text); text-align:right; }
.enquire-btn { display:block; width:100%; text-align:center; padding:11px; border-radius:9px; font-size:13px; font-weight:700; font-family:'Barlow',sans-serif; cursor:pointer; border:none; color:white; background:var(--blue); transition:background 0.18s; }
.enquire-btn:hover { background:var(--blue-dark); }
.enquire-btn.green { background:var(--green); }
.enquire-btn.green:hover { background:#178044; }
.enquire-btn.red { background:var(--red); }
.enquire-btn.red:hover { background:#a93226; }

/* ── CHIP / BADGE ── */
.chip { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:20px; font-size:11px; font-weight:700; letter-spacing:0.5px; }
.chip-blue { background:var(--blue-light); color:var(--blue); }
.chip-green { background:var(--green-lt); color:var(--green); }
.chip-red { background:var(--red-lt); color:var(--red); }
.chip-accent { background:var(--accent-lt); color:#b87a10; }

/* ── STATS BAR ── */
.stats-bar { background:var(--blue); padding:24px 5%; }
.stats-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { text-align:center; padding:0 16px; border-right:1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:800; color:white; line-height:1; }
.stat-lbl { font-size:12px; color:rgba(255,255,255,0.65); margin-top:3px; font-weight:500; }

/* ── SECTION WRAPPERS ── */
.section { padding:72px 5%; }
.section-white { background:var(--white); }
.section-grey  { background:var(--off-white); }
.section-blue  { background:var(--blue); }
.inner { max-width:1100px; margin:0 auto; }

/* ── HERO ── */
.hero { background:var(--off-white); border-bottom:1px solid var(--border); padding:64px 5%; }
.hero-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 420px; gap:56px; align-items:center; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:var(--blue-light); border:1px solid rgba(26,109,200,0.2); border-radius:6px; padding:5px 12px; margin-bottom:20px; }
.hero-eyebrow span { font-size:11px; color:var(--blue); font-weight:700; letter-spacing:2px; text-transform:uppercase; }
.hero-dot { width:6px; height:6px; background:var(--blue); border-radius:50%; animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero h1 { font-family:'Barlow Condensed',sans-serif; font-size:60px; font-weight:800; color:var(--text); line-height:1; letter-spacing:-0.5px; margin-bottom:6px; }
.hero h1 em { color:var(--blue); font-style:normal; }
.hero-tagline { font-size:18px; color:var(--text-light); margin-bottom:24px; }
.hero-desc { font-size:15px; color:var(--text-mid); line-height:1.75; margin-bottom:32px; max-width:480px; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.hero-right { display:flex; flex-direction:column; gap:12px; }

/* category nav cards on homepage */
.cat-card { display:flex; align-items:center; gap:14px; background:white; border:1.5px solid var(--border); border-radius:var(--radius); padding:14px 18px; transition:border-color 0.18s, box-shadow 0.18s; }
.cat-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); }
.cat-card-icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cat-card-icon svg { width:22px; height:22px; fill:none; stroke:white; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cat-card-name { font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:700; color:var(--text); line-height:1; }
.cat-card-sub  { font-size:11px; color:var(--text-light); margin-top:2px; }
.cat-card-arrow { margin-left:auto; color:var(--blue); font-size:16px; font-weight:700; }

/* contact side card */
.contact-card { background:white; border:1.5px solid var(--border); border-radius:var(--radius); padding:20px; }
.contact-card-title { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--text-light); margin-bottom:12px; }
.contact-row { display:flex; align-items:center; gap:10px; background:var(--off-white); border-radius:9px; padding:11px 14px; margin-bottom:8px; }
.contact-row:last-of-type { margin-bottom:0; }
.contact-row svg { width:17px; height:17px; stroke:var(--blue); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.contact-row-label { font-size:10px; color:var(--text-light); text-transform:uppercase; letter-spacing:1px; }
.contact-row-val { font-size:13px; font-weight:700; color:var(--text); }
.contact-row a { color:var(--text); }
.contact-row a:hover { color:var(--blue); }

/* ── ENQUIRY FORM ── */
.form-wrap { max-width:680px; margin:0 auto; background:white; border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-md); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fg { display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.fg label { font-size:11px; font-weight:700; color:var(--text); letter-spacing:0.5px; text-transform:uppercase; }
.fg input, .fg select, .fg textarea { border:1.5px solid var(--border); border-radius:9px; padding:10px 13px; font-size:14px; font-family:'Barlow',sans-serif; color:var(--text); background:white; outline:none; transition:border-color 0.18s; width:100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,109,200,0.08); }
.fg textarea { resize:vertical; min-height:90px; }
.form-submit { width:100%; background:var(--blue); color:white; border:none; cursor:pointer; padding:14px; border-radius:10px; font-size:15px; font-weight:700; font-family:'Barlow',sans-serif; transition:background 0.18s; margin-top:6px; }
.form-submit:hover { background:var(--blue-dark); }
.form-success { display:none; background:#eaf7ee; border:1px solid #a8dbb8; border-radius:9px; padding:16px; text-align:center; color:#166534; font-weight:600; font-size:14px; margin-top:14px; }
.form-note { font-size:11px; color:var(--text-light); text-align:center; margin-top:10px; }
.wa-strip { display:flex; align-items:center; gap:14px; background:#f0fdf5; border:1px solid #b2e0c0; border-radius:10px; padding:14px 18px; margin-top:14px; }
.wa-strip-text { font-size:13px; color:#166534; }
.wa-strip-text strong { display:block; font-size:14px; margin-bottom:1px; }

/* ── USP GRID ── */
.usp-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:18px; }
.usp-card { background:white; border:1px solid var(--border); border-radius:var(--radius); padding:24px 20px; box-shadow:var(--shadow-sm); transition:transform 0.2s, box-shadow 0.2s; }
.usp-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.usp-icon { width:46px; height:46px; background:var(--blue-light); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.usp-icon svg { width:22px; height:22px; stroke:var(--blue); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.usp-card h3 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:6px; }
.usp-card p  { font-size:13px; color:var(--text-mid); line-height:1.6; }

/* ── CONTACT SECTION ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-items { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.ci { display:flex; align-items:flex-start; gap:14px; background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius); padding:16px 18px; }
.ci-icon { width:40px; height:40px; background:var(--blue); border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-icon svg { width:18px; height:18px; stroke:white; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.ci-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--text-light); margin-bottom:3px; }
.ci-val   { font-size:14px; font-weight:700; color:var(--text); }
.ci-sub   { font-size:12px; color:var(--text-light); }
.ci-val a { color:var(--text); }
.ci-val a:hover { color:var(--blue); }
.map-frame { border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); height:260px; }
.map-frame iframe { width:100%; height:100%; border:none; }
.quick-box { background:var(--blue); border-radius:var(--radius); padding:24px; margin-top:14px; }
.quick-box-label { font-size:10px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:10px; }
.quick-phone { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.quick-phone svg { width:16px; height:16px; stroke:var(--accent); fill:none; stroke-width:1.8; stroke-linecap:round; flex-shrink:0; }
.quick-phone a { font-size:16px; font-weight:700; color:white; }
.quick-phone a:hover { color:var(--accent); }
.quick-email { font-size:13px; color:rgba(255,255,255,0.5); margin:10px 0 16px; }
.quick-btns { display:flex; gap:10px; flex-wrap:wrap; }

/* ── FOOTER ── */
.footer { background:var(--text); padding:36px 5%; }
.footer-inner { max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-brand { color:rgba(255,255,255,0.45); font-size:12px; line-height:1.8; }
.footer-brand strong { color:rgba(255,255,255,0.85); display:block; font-size:14px; margin-bottom:3px; }
.footer-links { display:flex; gap:20px; list-style:none; flex-wrap:wrap; }
.footer-links a { font-size:12px; color:rgba(255,255,255,0.35); transition:color 0.18s; }
.footer-links a:hover { color:var(--accent); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background:var(--blue); padding:48px 5%; }
.page-hero-inner { max-width:1100px; margin:0 auto; }
.page-hero-breadcrumb { display:flex; align-items:center; gap:8px; font-size:12px; color:rgba(255,255,255,0.5); margin-bottom:14px; }
.page-hero-breadcrumb a { color:rgba(255,255,255,0.5); }
.page-hero-breadcrumb a:hover { color:white; }
.page-hero h1 { font-family:'Barlow Condensed',sans-serif; font-size:52px; font-weight:800; color:white; line-height:1; margin-bottom:10px; }
.page-hero p { font-size:15px; color:rgba(255,255,255,0.7); max-width:560px; line-height:1.7; }
.page-hero-chips { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.page-chip { background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2); color:white; padding:5px 14px; border-radius:20px; font-size:12px; font-weight:600; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position:fixed; bottom:26px; right:26px; z-index:300; background:#25d366; width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 18px rgba(37,211,102,0.4); transition:transform 0.2s, background 0.2s; }
.wa-float:hover { transform:scale(1.1); background:#1da851; }
.wa-float svg { width:28px; height:28px; fill:white; }
.wa-tooltip { position:absolute; right:66px; background:#1a1a1a; color:white; padding:6px 12px; border-radius:7px; font-size:12px; white-space:nowrap; font-weight:600; opacity:0; pointer-events:none; transition:opacity 0.2s; }
.wa-float:hover .wa-tooltip { opacity:1; }

/* ── PRODUCT GRID ── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:22px; }

/* ── ABOUT SECTION ── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-points { list-style:none; display:flex; flex-direction:column; gap:12px; margin-top:24px; }
.about-pt { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--text-mid); line-height:1.55; }
.about-check { width:20px; height:20px; background:var(--blue-light); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.about-check svg { width:10px; height:10px; stroke:var(--blue); stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; fill:none; }
.about-cards { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.about-card { background:var(--blue-light); border:1px solid rgba(26,109,200,0.15); border-radius:var(--radius); padding:20px; }
.about-card-num { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:800; color:var(--blue); line-height:1; margin-bottom:4px; }
.about-card-lbl { font-size:12px; color:var(--text-mid); line-height:1.4; }
.about-card.span2 { grid-column:span 2; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-inner { grid-template-columns:1fr; gap:36px; }
  .hero h1 { font-size:44px; }
  .about-grid { grid-template-columns:1fr; gap:36px; }
  .contact-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .footer-inner { flex-direction:column; text-align:center; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.15); padding:12px 0; }
  .stat-item:last-child { border-bottom:none; }
  .about-cards { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px){
  .hero h1 { font-size:36px; }
  .section-title { font-size:32px; }
  .page-hero h1 { font-size:38px; }
}
