*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #1B2E4A; --navy-deep: #0F1D30; --navy-light: #2A4468;
  --green: #7AB51D; --green-light: #8EC63F; --green-dark: #5F9610; --green-glow: #A4D65E;
  --slate: #5A7A9A; --slate-light: #8A9DB5;
  --cloud: #F0F4F8; --white: #FFFFFF; --off-white: #FAFBFD;
  --text-dark: #1A2332; --text-body: #4A5568; --text-muted: #8896A6;
  --shadow-sm: 0 1px 3px rgba(13,33,55,0.08); --shadow-md: 0 4px 16px rgba(13,33,55,0.1); --shadow-lg: 0 12px 40px rgba(13,33,55,0.12);
  --radius: 12px; --radius-lg: 20px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--off-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; color: var(--text-dark); }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* TOP BAR */
.top-bar { background: var(--navy-deep); color: var(--slate-light); font-size: 0.8rem; padding: 8px 0; letter-spacing: 0.5px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--green-light); text-decoration: none; }
.top-bar a:hover { color: var(--green-glow); }

/* HEADER */
header { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(27,46,74,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 52px; width: auto; object-fit: contain; }
nav { display: flex; align-items: center; gap: 6px; }
nav a { text-decoration: none; color: var(--text-dark); font-size: 0.92rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.25s ease; }
nav a:hover { color: var(--green); background: rgba(122,181,29,0.06); }
nav a.active { color: var(--green); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; font-weight: 600 !important; padding: 10px 22px !important; border-radius: 10px !important; margin-left: 8px; transition: all 0.3s ease !important; box-shadow: 0 2px 8px rgba(122,181,29,0.3); }
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(122,181,29,0.4) !important; text-decoration: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-light) 100%); color: var(--white); padding: 60px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(122,181,29,0.12) 0%, transparent 70%); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-glow); }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 span { color: var(--green); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 650px; }
.hero-img { position: absolute; right: 40px; bottom: -10px; width: 340px; height: 240px; object-fit: cover; border-radius: var(--radius-lg); opacity: 0.25; }

/* CONTENT SECTION */
.section { padding: 70px 0; }
.section-white { background: var(--white); }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 700px; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(27,46,74,0.06); padding: 32px 28px; transition: all 0.35s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(122,181,29,0.2); }
.product-card .p-icon { width: 100%; height: 160px; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.product-card .p-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .p-icon img { transform: scale(1.05); }
.product-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 16px; }
.product-card ul { list-style: none; margin-bottom: 18px; }
.product-card ul li { font-size: 0.85rem; color: var(--text-body); padding: 4px 0; padding-left: 20px; position: relative; }
.product-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.8rem; }
.btn-enquire { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--navy); color: var(--white); font-size: 0.85rem; font-weight: 600; border-radius: 10px; text-decoration: none; transition: all 0.3s ease; }
.btn-enquire:hover { background: var(--navy-light); transform: translateY(-1px); text-decoration: none; }

/* WHY SECTION */
.why-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.why-item { text-align: center; padding: 28px 20px; background: var(--off-white); border-radius: var(--radius); border: 1px solid rgba(27,46,74,0.05); }
.why-item .w-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid rgba(27,46,74,0.08); }
.faq-q { padding: 20px 0; font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 300; transition: transform 0.3s ease; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); padding: 70px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,181,29,0.15), transparent 70%); border-radius: 50%; }
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-content h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-contact-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px 28px; display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); transition: all 0.3s ease; min-width: 260px; }
.cta-contact-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(122,181,29,0.4); transform: translateY(-2px); text-decoration: none; }
.cta-contact-card .cc-icon { width: 44px; height: 44px; background: rgba(122,181,29,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cta-contact-card .cc-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.cta-contact-card .cc-value { font-size: 1rem; font-weight: 600; margin-top: 3px; }

/* FOOTER */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 50px 0 30px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; width: 100%; padding-top: 16px; gap: 4px; }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
  .mobile-toggle { display: block; }
  .page-hero { padding: 40px 0 50px; }
  .page-hero h1 { font-size: 2rem; }
  .hero-img { display: none; }
  .section { padding: 50px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}