/**
 * ============================================
 * FILE: assets/css/style.css
 * KAAM: Poori website ka design/styling
 * COLOR CHANGE: :root mein CSS variables badlo
 * ============================================
 */

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ---- Color Variables (yahan se colors change karo) ---- */
:root {
  --forest:     #1a3d2b;   /* Dark green - headings, buttons */
  --deep:       #0e2318;   /* Darkest green - hero bg, footer */
  --mid:        #2c6e49;   /* Medium green - accents */
  --leaf:       #4a9b6f;   /* Light green - tags, labels */
  --mint:       #7ec8a0;   /* Mint green */
  --gold:       #c9a84c;   /* Gold - CTA buttons, badges */
  --gold-light: #e8c97a;   /* Light gold - hero text */
  --gold-pale:  #f5e9c8;   /* Pale gold - CTA section bg */
  --cream:      #fdf8ef;   /* Page background */
  --warm:       #f7f0e0;   /* Form, products bg */
  --text:       #1a1a1a;   /* Main text color */
  --muted:      #555555;   /* Secondary text */
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ==========================================
   NAVBAR
   ========================================== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10, 28, 18, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--mid), var(--leaf));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--deep) !important;
  padding: 10px 22px !important;
  border-radius: 4px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger button (mobile) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s; display: block;
}
/* Hamburger open state - X shape */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--deep); padding: 20px 5%; gap: 4px;
  position: fixed; top: 72px; width: 100%; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 14px 0; font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-cta {
  background: var(--gold); color: var(--deep) !important;
  padding: 14px 20px !important; border-radius: 6px;
  text-align: center; font-weight: 600 !important; margin-top: 8px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh; background: var(--deep);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(44,110,73,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.1) 0%, transparent 50%),
    linear-gradient(165deg, #0a1c10 0%, #0e2318 50%, #091510 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%; max-width: 700px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 span { color: var(--gold-light); display: block; }
.hero p {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-visual {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(44,110,73,0.2), transparent);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
.leaf-art { position: relative; width: 420px; height: 500px; }
.leaf-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: rotate 30s linear infinite;
}
.lc1 { width:400px; height:400px; top:50px; left:10px; animation-duration:40s; }
.lc2 { width:280px; height:280px; top:110px; left:70px; animation-direction:reverse; animation-duration:25s; }
.lc3 { width:180px; height:180px; top:160px; left:120px; animation-duration:20s; }
@keyframes rotate { to { transform: rotate(360deg); } }
.leaf-icon-big {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  font-size: 120px; opacity: 0.15;
}
.floating-cards {
  position: absolute; display: flex; flex-direction: column;
  gap: 12px; right: 40px; top: 50%; transform: translateY(-50%);
}
.fcard {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.fcard:nth-child(2) { animation-delay: 1s; }
.fcard:nth-child(3) { animation-delay: 2s; }
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fcard-icon { font-size: 22px; }
.fcard-text { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.fcard-sub  { color: var(--gold-light); font-size: 11px; }
.hero-stats {
  position: absolute; bottom: 60px; left: 8%;
  display: flex; gap: 48px; z-index: 2;
  animation: fadeUp 1s 0.4s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--gold-light);
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-section {
  background: var(--forest);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 25s linear infinite; width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot { color: var(--gold); font-size: 16px; }

/* ==========================================
   SECTIONS BASE STYLES
   ========================================== */
section { padding: 100px 8%; }
.section-tag {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--leaf); font-weight: 600; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  line-height: 1.15; color: var(--deep); margin-bottom: 16px;
}
.section-title span { color: var(--mid); }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-visual {
  background: linear-gradient(135deg, var(--forest), var(--mid));
  border-radius: 20px; padding: 50px; text-align: center;
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.about-visual::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: rgba(201,168,76,0.12); border-radius: 50%;
}
.about-big-text {
  font-family: 'Playfair Display', serif; font-size: 80px;
  font-weight: 900; color: rgba(255,255,255,0.08);
  position: absolute; bottom: 20px; right: 20px; line-height: 1;
}
.about-icon { font-size: 80px; margin-bottom: 20px; }
.about-visual h3 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--gold-light); margin-bottom: 12px;
}
.about-visual p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; }
.cert-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.cert-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px; padding: 6px 14px; font-size: 12px;
  color: var(--gold-light); font-weight: 500; letter-spacing: 1px;
}
.about-features { display: flex; flex-direction: column; gap: 28px; }
.about-feat {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px;
  border-radius: 12px; border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
.about-feat:hover { border-color: var(--leaf); background: rgba(74,155,111,0.04); }
.feat-ico {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, rgba(44,110,73,0.15), rgba(74,155,111,0.1));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px;
}
.feat-title { font-weight: 600; font-size: 16px; color: var(--deep); margin-bottom: 6px; }
.feat-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products { background: var(--warm); }
.products-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.prod-cats { display: flex; gap: 10px; flex-wrap: wrap; }
.prod-cat {
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px; padding: 8px 20px; font-size: 13px;
  cursor: pointer; transition: all 0.3s; color: var(--muted); font-weight: 400;
  font-family: 'Jost', sans-serif;
}
.prod-cat.active, .prod-cat:hover {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.prod-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: all 0.3s; border: 1px solid rgba(0,0,0,0.06);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.prod-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 72px;
  position: relative; overflow: hidden;
}
.prod-img-bg { position: absolute; inset: 0; }
.prod-emoji { position: relative; z-index: 1; }
.prod-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--deep);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; letter-spacing: 1px; text-transform: uppercase;
}
.prod-body { padding: 24px; }
.prod-cat-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--leaf); font-weight: 600; margin-bottom: 8px;
}
.prod-name {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--deep); margin-bottom: 10px;
}
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.prod-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.prod-tag {
  background: rgba(44,110,73,0.08); color: var(--mid);
  font-size: 11px; padding: 4px 10px; border-radius: 100px; font-weight: 500;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process { background: var(--deep); }
.process .section-title { color: var(--white); }
.process .section-sub   { color: rgba(255,255,255,0.55); }
.process .section-tag   { color: var(--gold-light); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 60px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 48px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.step-card { text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: all 0.3s;
}
.step-card:hover .step-num {
  background: rgba(201,168,76,0.12); border-color: var(--gold); transform: scale(1.05);
}
.step-icon  { font-size: 30px; }
.step-title { font-weight: 600; font-size: 17px; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ==========================================
   WHY US SECTION
   ========================================== */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.why-card {
  padding: 36px 28px; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.why-icon  { font-size: 36px; margin-bottom: 20px; display: block; }
.why-title {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--deep); margin-bottom: 12px;
}
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials { background: linear-gradient(135deg, var(--forest), var(--mid)); }
.testimonials .section-tag   { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px; transition: all 0.3s; backdrop-filter: blur(8px);
}
.testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testi-author  { display: flex; align-items: center; gap: 14px; }
.testi-avatar  {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold-light); font-size: 16px;
  border: 2px solid rgba(201,168,76,0.4);
}
.testi-name { font-weight: 600; color: var(--white); font-size: 14px; }
.testi-co   { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta { background: var(--gold-pale); text-align: center; padding: 100px 8%; }
.cta .section-title { color: var(--deep); }
.cta-sub { font-size: 17px; color: var(--muted); margin: 16px auto 40px; max-width: 520px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; margin-top: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.cinfo-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border: 1px solid rgba(0,0,0,0.07); border-radius: 12px;
}
.cinfo-ico   { font-size: 24px; }
.cinfo-title { font-weight: 600; color: var(--deep); margin-bottom: 4px; font-size: 15px; }
.cinfo-val   { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-form {
  background: var(--warm); border-radius: 20px;
  padding: 40px; border: 1px solid rgba(0,0,0,0.06);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--deep); margin-bottom: 8px; }
.form-sub   { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--deep); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px;
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mid); box-shadow: 0 0 0 3px rgba(44,110,73,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--forest); color: var(--white);
  padding: 15px; border: none; border-radius: 8px;
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; margin-top: 8px;
}
.form-submit:hover { background: var(--mid); transform: translateY(-1px); }

/* Form alert messages */
.form-alert {
  padding: 14px 18px; border-radius: 8px;
  margin-bottom: 20px; font-size: 14px; font-weight: 500;
}
.form-alert-success { background: #e1f5ee; color: #085041; border: 1px solid #9fe1cb; }
.form-alert-error   { background: #fcebeb; color: #a32d2d; border: 1px solid #f7c1c1; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  background: var(--gold); color: var(--deep); padding: 16px 36px;
  border-radius: 4px; font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.5px; transition: all 0.3s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white); padding: 16px 36px;
  border-radius: 4px; font-size: 15px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-gold {
  background: var(--gold); color: var(--deep); padding: 16px 40px;
  border-radius: 4px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.3s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-dark {
  background: var(--deep); color: var(--white); padding: 16px 40px;
  border-radius: 4px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.3s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--forest); transform: translateY(-2px); }

/* ==========================================
   FOOTER
   ========================================== */
footer { background: var(--deep); padding: 60px 8% 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.social-btn:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.footer-col h4 {
  font-weight: 600; font-size: 14px; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-cert { display: flex; gap: 8px; }
.fcert {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px; border-radius: 4px; font-size: 11px;
  color: var(--gold-light); font-weight: 600; letter-spacing: 1px;
}

/* ==========================================
   SCROLL REVEAL ANIMATION
   ========================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE - MOBILE & TABLET
   ========================================== */
@media (max-width: 900px) {
  /* Nav links hide, hamburger show */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  /* Hero right side hide */
  .hero-right { display: none; }
  /* Single column layouts */
  .about-grid,
  .contact-grid       { grid-template-columns: 1fr; }
  /* 2 column grids */
  .products-grid,
  .why-grid,
  .testi-grid         { grid-template-columns: 1fr 1fr; }
  .process-steps      { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  /* Hide process connector line */
  .process-steps::before { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  section { padding: 70px 6%; }
  /* All single column on mobile */
  .products-grid,
  .why-grid,
  .testi-grid,
  .process-steps      { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .hero-stats         { display: none; }
  .hero h1            { font-size: clamp(36px, 8vw, 52px); }
}
