/* ============================================================
   Indo Global Pulse — Main Stylesheet
   Brand: Deep Green (#1a4a2e) + Gold (#c9a84c)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green:       #1a4a2e;
  --green-mid:   #2d6a4f;
  --green-light: #52b788;
  --green-dark:  #0f2d1a;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #a07c2c;
  --cream:       #f8f5ef;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #888888;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --radius:      10px;
  --radius-lg:   18px;
  --nav-h:       76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(15, 45, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.3s;
}
.navbar.scrolled { background: var(--green-dark); box-shadow: var(--shadow-lg); }
.navbar-brand { display: flex; align-items: center; gap: 14px; }
.navbar-brand img { width: 52px; height: 52px; object-fit: contain; }
.navbar-brand-text .brand-name { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.navbar-brand-text .brand-sub { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-links a.nav-cta { background: var(--gold); color: var(--green-dark) !important; font-weight: 700; padding: 9px 20px; border-radius: 8px; }
.nav-links a.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; width: 100%; background: var(--green-dark); padding: 16px 24px 24px; z-index: 999; border-bottom: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { color: rgba(255,255,255,0.85); padding: 12px 16px; border-radius: 8px; font-weight: 500; }
.mobile-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.mobile-menu a.nav-cta { background: var(--gold); color: var(--green-dark); font-weight: 700; text-align: center; margin-top: 8px; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,30,18,0.88) 0%, rgba(10,30,18,0.6) 60%, rgba(10,30,18,0.4) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; max-width: 640px; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 12px; }
.hero-title span { color: var(--gold); }
.hero-tagline { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 20px; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--green-dark); font-weight: 700; font-size: 0.92rem; padding: 14px 32px; border-radius: 10px; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-weight: 600; font-size: 0.92rem; padding: 12px 30px; border-radius: 10px; transition: all 0.2s; background: transparent; cursor: pointer; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-logo-wrap { flex-shrink: 0; }
.hero-logo-wrap img { width: 280px; height: 280px; object-fit: contain; filter: drop-shadow(0 0 40px rgba(201,168,76,0.3)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---- CERT STRIP ---- */
.cert-strip { background: var(--green-dark); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 16px 40px; }
.cert-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.cert-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.cert-icon { font-size: 1.2rem; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--green-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title.white { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.section-desc.white { color: rgba(255,255,255,0.75); }
.divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 20px auto 0; }
.divider.left { margin-left: 0; }

/* ---- PRODUCT CARDS (Home) ---- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img { background: linear-gradient(135deg, var(--green), var(--green-mid)); font-size: 4rem; text-align: center; padding: 40px 20px; }
.product-card-body { padding: 24px; }
.product-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 10px; }
.product-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.spec-tag { background: var(--cream); color: var(--green-dark); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(26,74,46,0.15); }
.btn-green { display: inline-block; background: var(--green); color: var(--white); font-weight: 600; font-size: 0.85rem; padding: 10px 20px; border-radius: 8px; transition: background 0.2s; }
.btn-green:hover { background: var(--green-mid); }

/* ---- WHY US ---- */
.why-us { background: var(--green); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: calc(var(--nav-h) + 60px) 40px 60px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin: 12px 0; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; }

/* ---- PRODUCT FULL CARDS ---- */
.product-full-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 32px; border: 1px solid rgba(0,0,0,0.06); }
.product-full-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 28px 36px; display: flex; align-items: center; gap: 20px; }
.product-full-icon { font-size: 3rem; width: 90px; height: 90px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.1); }
.product-full-header h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.6rem; margin-bottom: 4px; }
.product-full-header p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.product-full-body { padding: 32px 36px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.spec-item { background: var(--cream); border-radius: var(--radius); padding: 16px; border-left: 3px solid var(--gold); }
.spec-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 6px; }
.spec-value { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.rfq-trigger-btn { background: var(--gold); color: var(--green-dark); font-weight: 700; font-size: 0.95rem; padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer; transition: all 0.2s; }
.rfq-trigger-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---- RFQ MODAL ---- */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 720px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.modal-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 24px 28px; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-header h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.modal-header p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.modal-close { background: rgba(255,255,255,0.15); border: none; color: var(--white); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-body { padding: 28px; }

/* ---- FORMS ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.req { color: #c62828; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 0.9rem; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--green); color: var(--white); font-weight: 700; font-size: 1rem; padding: 14px; border-radius: 10px; border: none; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--green-mid); }
.form-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.form-error-msg { background: #fdecea; border: 1px solid #f5c6cb; color: #c62828; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.alert-error { background: #fdecea; border: 1px solid #f5c6cb; color: #c62828; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.about-img-wrap { position: relative; }
.about-img-main { background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: var(--radius-lg); height: 400px; display: flex; align-items: center; justify-content: center; font-size: 8rem; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--green-dark); border-radius: var(--radius-lg); padding: 20px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; display: block; }
.about-badge .lbl { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.value-item { background: var(--cream); border-radius: var(--radius); padding: 20px; border-left: 3px solid var(--gold); }
.value-item h4 { font-weight: 700; color: var(--green-dark); margin-bottom: 8px; font-size: 0.95rem; }
.value-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ---- QUALITY PAGE ---- */
.cert-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cert-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.cert-card-icon { font-size: 3rem; margin-bottom: 12px; }
.cert-full-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 10px; }
.cert-card h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.3rem; margin-bottom: 16px; }
.cert-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.85; margin-bottom: 18px; }
.cert-download-link { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white) !important; font-weight: 700; font-size: 0.85rem; padding: 10px 22px; border-radius: 8px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.cert-download-link:hover { background: var(--green-mid); transform: translateY(-1px); }
.cert-coming-soon { display: inline-block; background: var(--cream); color: var(--text-light); font-size: 0.82rem; font-style: italic; padding: 8px 16px; border-radius: 8px; border: 1px dashed var(--gold); }
.quality-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 28px 20px; background: var(--cream); border-radius: var(--radius-lg); }
.step-num { width: 48px; height: 48px; background: var(--green); color: var(--white); border-radius: 50%; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step h4 { font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

/* ---- PACKAGING PAGE ---- */
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pack-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow); border-bottom: 3px solid var(--gold); }
.pack-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.pack-card h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.1rem; margin-bottom: 10px; }
.pack-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.pack-features { padding-left: 0; }
.pack-features li { font-size: 0.82rem; color: var(--text-mid); padding: 4px 0; padding-left: 18px; position: relative; }
.pack-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.shipping-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.shipping-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.shipping-card-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
.ship-icon { font-size: 2.4rem; }
.shipping-card-header h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.6rem; margin-bottom: 4px; }
.shipping-card-header p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.ship-tag { background: var(--gold); color: var(--green-dark); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.shipping-card-body { padding: 28px; }
.ship-resp { background: var(--cream); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 16px; }
.ship-resp h4 { font-weight: 700; color: var(--green-dark); margin-bottom: 10px; font-size: 0.88rem; }
.ship-resp ul { padding-left: 0; }
.ship-resp li { font-size: 0.82rem; color: var(--text-mid); padding: 3px 0 3px 18px; position: relative; }
.ship-resp li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.ship-best { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; padding: 12px 16px; font-size: 0.82rem; color: var(--gold-dark); font-weight: 500; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; box-shadow: var(--shadow); }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-card h4 { font-weight: 700; color: var(--green-dark); font-size: 0.88rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.88rem; color: var(--text-mid); }
.contact-info-card a:hover { color: var(--green); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }

/* ---- FOOTER ---- */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.8); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 64px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 14px; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item .ico { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); max-width: 1200px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-cert-tag { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; }
.footer-policy-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-policy-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-policy-links a:hover { color: var(--gold); }
.footer-policy-links span { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

/* ---- POLICY PAGES ---- */
.policy-section { padding: 60px 20px 80px; background: var(--cream); }
.policy-container { max-width: 860px; margin: 0 auto; }
.policy-meta { background: var(--white); border: 1px solid #e0d8c8; border-radius: var(--radius); padding: 16px 24px; margin-bottom: 36px; display: flex; gap: 24px; flex-wrap: wrap; }
.policy-meta p { font-size: 0.88rem; color: var(--text-mid); }
.policy-block { background: var(--white); border: 1px solid #e8e0d0; border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 24px; }
.policy-block h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.policy-block h3 { font-size: 1rem; font-weight: 600; color: var(--green-mid); margin: 18px 0 8px; }
.policy-block p { color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.policy-block ul { padding-left: 20px; margin: 10px 0; }
.policy-block ul li { color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.policy-block a { color: var(--green-mid); text-decoration: underline; }
.policy-block a:hover { color: var(--gold-dark); }
.policy-term-box { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 16px 0; }
.policy-term-box h3 { margin-top: 0; font-size: 1.05rem; color: var(--green); }
.policy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.policy-table th { background: var(--green); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.policy-table td { padding: 10px 14px; border-bottom: 1px solid #e8e0d0; color: var(--text-mid); }
.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:nth-child(even) td { background: var(--cream); }

/* ---- FOOTER SOCIAL ICONS ---- */
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.social-icon-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ---- WHATSAPP BUTTON ---- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ---- ADMIN STYLES ---- */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cream); padding: 20px; }
.admin-login-box { background: var(--white); border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.admin-login-box .logo-wrap { text-align: center; margin-bottom: 32px; }
.admin-login-box .logo-wrap img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 12px; }
.admin-login-box .logo-wrap h2 { font-family: 'Playfair Display', serif; color: var(--green-dark); font-size: 1.5rem; margin-bottom: 4px; }
.admin-login-box .logo-wrap p { font-size: 0.82rem; color: var(--text-light); }

.admin-wrap { display: flex; min-height: 100vh; background: #f4f6f8; }
.admin-sidebar { width: 260px; background: var(--green-dark); flex-shrink: 0; display: flex; flex-direction: column; min-height: 100vh; position: sticky; top: 0; }
.admin-sidebar-brand { padding: 24px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar-brand img { width: 44px; height: 44px; object-fit: contain; }
.admin-sidebar-brand .name { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.95rem; font-weight: 700; }
.admin-sidebar-brand .sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
.admin-nav { display: flex; flex-direction: column; padding: 16px 12px; gap: 4px; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: 8px; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.admin-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.admin-nav a.active { background: rgba(201,168,76,0.15); color: var(--gold); }
.nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.admin-main { flex: 1; display: flex; flex-direction: column; overflow-x: hidden; }
.admin-topbar { background: var(--white); border-bottom: 1px solid #e0e0e0; padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; }
.admin-topbar h1 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-dark); }
.user-info { font-size: 0.85rem; color: var(--text-mid); }
.admin-content { padding: 28px; flex: 1; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; }

.admin-table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 24px; }
.admin-table-header { padding: 18px 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-table-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); }
.filter-bar { padding: 14px 24px; background: #fafafa; border-bottom: 1px solid #f0f0f0; }
.filter-bar input, .filter-bar select { padding: 8px 12px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 0.85rem; background: var(--white); }
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--green-mid); outline: none; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table thead th { background: #f8f9fa; padding: 12px 16px; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); border-bottom: 1px solid #e0e0e0; }
.admin-table tbody td { padding: 14px 16px; border-bottom: 1px solid #f5f5f5; vertical-align: middle; }
.admin-table tbody tr:hover { background: #fafafa; }
.action-btn { display: inline-block; background: var(--green); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; }
.action-btn:hover { background: var(--green-mid); }
.action-btn.danger { background: #c62828; }
.action-btn.danger:hover { background: #b71c1c; }

.status-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: capitalize; }
.status-new { background: #e3f2fd; color: #1565c0; }
.status-in_progress { background: #fff3e0; color: #e65100; }
.status-responded { background: #e8f5e9; color: #2e7d32; }
.status-closed { background: #f5f5f5; color: #757575; }
.status-quoted { background: #e8eaf6; color: #3949ab; }
.status-negotiating { background: #fff8e1; color: #f57f17; }
.status-confirmed { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #fce4ec; color: #880e4f; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cert-cards { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .hero-logo-wrap img { width: 200px; height: 200px; }
  .navbar { padding: 0 24px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 0 16px; height: 64px; overflow: visible; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar-brand img { width: 40px; height: 40px; }
  .navbar-brand-text .brand-name { font-size: 0.95rem; }
  .navbar-brand-text .brand-sub { display: none; }
  .mobile-menu { top: 64px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 0; padding-top: 64px; }
  .hero-content { flex-direction: column-reverse; padding: 80px 20px 48px; gap: 24px; text-align: center; }
  .hero-logo-wrap { display: flex; justify-content: center; }
  .hero-logo-wrap img { width: 140px; height: 140px; }
  .hero-title { font-size: 2.2rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-badge { font-size: 0.72rem; }

  /* Cert strip */
  .cert-strip { padding: 12px 16px; }
  .cert-strip-inner { justify-content: flex-start; gap: 12px; overflow-x: auto; flex-wrap: nowrap; }
  .cert-item { white-space: nowrap; font-size: 0.78rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-inner { padding: 0 16px; max-width: 100%; overflow-x: hidden; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card-img { padding: 28px 16px; }
  .product-card-img img { width: 100%; height: 180px; object-fit: cover; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 16px; }
  .why-icon { font-size: 2rem; }

  /* Page Hero */
  .page-hero { padding: 92px 16px 36px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.88rem; }

  /* Products full page */
  .product-full-header { padding: 20px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .product-full-header h2 { font-size: 1.3rem; }
  .product-full-body { padding: 20px; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec-item { padding: 12px; }
  .rfq-trigger-btn { width: 100%; text-align: center; }

  /* Quality */
  .cert-cards { grid-template-columns: 1fr; gap: 20px; }
  .cert-card { padding: 24px; }
  .quality-process { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Packaging */
  .pack-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pack-card { padding: 20px 16px; }
  .shipping-cards { grid-template-columns: 1fr; gap: 20px; }
  .shipping-card-header { padding: 18px 20px; }
  .shipping-card-body { padding: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 24px; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .modal-box { margin: 10px; max-height: 95vh; }
  .modal-body { padding: 18px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px 24px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { padding: 16px; flex-direction: column; text-align: center; gap: 10px; }
  .footer-certs { justify-content: center; flex-wrap: wrap; }

  /* Admin */
  .admin-sidebar { width: 220px; }
  .admin-content { padding: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .admin-topbar { padding: 12px 16px; }
  .admin-topbar h1 { font-size: 1.1rem; }

  /* Table horizontal scroll */
  .admin-table-wrap { overflow-x: auto; }
  table { min-width: 600px; }
}

@media (max-width: 480px) {
  /* Navbar */
  .navbar { padding: 0 12px; overflow: visible; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar-brand-text .brand-name { font-size: 0.85rem; }

  /* Hero */
  .hero-content { padding: 72px 14px 40px; }
  .hero-title { font-size: 1.9rem; }
  .hero-logo-wrap img { width: 110px; height: 110px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 1.4rem; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-inner { padding: 0 14px; }
  .section-title { font-size: 1.4rem; }

  /* Why Us — single column on very small screens */
  .why-grid { grid-template-columns: 1fr; }

  /* Quality */
  .quality-process { grid-template-columns: 1fr; }
  .cert-card { padding: 20px; }

  /* Packaging */
  .pack-grid { grid-template-columns: 1fr; }
  .shipping-card-header { flex-direction: column; gap: 10px; }

  /* Specs */
  .specs-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; }

  /* Admin — stack sidebar on top */
  .admin-wrap { flex-direction: column; }
  .admin-sidebar { width: 100%; min-height: auto; position: static; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; padding: 8px; gap: 4px; }
  .admin-nav a { padding: 8px 12px; font-size: 0.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-content { padding: 12px; }

  /* WhatsApp button smaller on mobile */
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
