/* ============================================================
   AFS Rice India Private Limited — Main Stylesheet v2
   ============================================================ */

:root {
  --gold: #C9A84C; --gold-light: #F0D98A; --gold-dark: #8B6914;
  --green: #2D5016; --green-mid: #4A7C2F; --green-light: #E8F5E1;
  --cream: #FBF8F0; --cream-dark: #F0EAD6;
  --text: #1A1A1A; --text-muted: #5A5A5A; --white: #FFFFFF;
  --border: rgba(201,168,76,0.25);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; }

/* ── Floating WhatsApp ──────────────────────────────────── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:1000;
  background:#25D366; border-radius:50px;
  display:flex; align-items:center; gap:10px;
  padding:12px 20px 12px 14px;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  text-decoration:none;
  animation:waPulse 2.5s ease-in-out infinite;
  transition:transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform:translateY(-3px) scale(1.03); box-shadow:0 8px 28px rgba(37,211,102,0.5); }
.wa-float-label { color:#fff; font-size:14px; font-weight:600; white-space:nowrap; }
@keyframes waPulse {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow:0 4px 32px rgba(37,211,102,0.7); }
}
@media(max-width:480px) { .wa-float-label { display:none; } .wa-float { padding:14px; border-radius:50%; } }

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:999;
  background:rgba(45,80,22,0.97); backdrop-filter:blur(10px);
  padding:0 5%; display:flex; align-items:center; justify-content:space-between;
  height:70px; border-bottom:1px solid rgba(201,168,76,0.3);
  transition:background 0.3s;
}
.nav-logo { display:flex; align-items:center; text-decoration:none; }
.nav-logo img { height:48px; width:auto; }
.nav-links { display:flex; gap:1.6rem; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.85); text-decoration:none; font-size:13.5px; font-weight:400; letter-spacing:0.3px; transition:color 0.2s; }
.nav-links a:hover { color:var(--gold-light); }
.nav-cta { background:var(--gold); color:var(--green); padding:9px 20px; border-radius:6px; font-weight:600; font-size:13px; text-decoration:none; transition:background 0.2s; }
.nav-cta:hover { background:var(--gold-light); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:rgba(255,255,255,0.9); border-radius:2px; transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Nav overlay */
.nav-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:997; }
.nav-overlay.active { display:block; }

/* Mobile menu */
@media(max-width:900px) {
  .hamburger { display:flex; }
  .desktop-only { display:none !important; }
  .nav-links {
    display:flex; flex-direction:column; gap:0;
    position:fixed; top:70px; right:-100%; width:260px; height:calc(100vh - 70px);
    background:rgba(30,60,12,0.98); backdrop-filter:blur(20px);
    padding:20px 0; z-index:998; transition:right 0.35s cubic-bezier(0.22,1,0.36,1);
    border-left:1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open { right:0; }
  .nav-links li { border-bottom:1px solid rgba(201,168,76,0.1); }
  .nav-links a { display:block; padding:16px 28px; font-size:15px; color:rgba(255,255,255,0.9); }
  .nav-links a:hover { background:rgba(201,168,76,0.1); color:var(--gold-light); }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:100px 5% 60px; position:relative; overflow:hidden;
  background:linear-gradient(160deg, #0f2206 0%, #1a3a08 50%, #2D5016 100%);
}
.hero-bg-img {
  position:absolute; inset:0; z-index:0;
  background:url('images/main_banner.png') center/cover no-repeat;
  opacity:0.18;
}
.hero::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
#hero-canvas { position:absolute; inset:0; z-index:1; pointer-events:none; }
.hero-ring { position:absolute; right:4%; top:50%; transform:translateY(-50%); width:420px; height:420px; z-index:1; pointer-events:none; opacity:0; animation:ringFadeIn 1.2s ease 0.5s both; }
.hero-ring svg { width:100%; height:100%; animation:ringRotate 30s linear infinite; }
.hero-content { position:relative; z-index:2; max-width:680px; }
.hero-logo-wrap { margin-bottom:28px; opacity:0; animation:fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-logo-wrap img { height:110px; width:auto; filter:drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.4);
  color:var(--gold-light); padding:6px 16px; border-radius:30px;
  font-size:12px; font-weight:500; letter-spacing:0.8px; text-transform:uppercase; margin-bottom:28px;
  opacity:0; animation:fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero-badge::before { content:'●'; font-size:8px; color:var(--gold); animation:pulseDot 2s ease-in-out 2s infinite; }
.hero h1 { font-family:'Playfair Display',serif; font-size:clamp(36px,5vw,62px); color:var(--white); line-height:1.1; margin-bottom:20px; font-weight:700; opacity:0; animation:fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
.hero h1 em { font-style:normal; background:linear-gradient(90deg,#C9A84C 0%,#F7E98A 40%,#F0D98A 55%,#C9A84C 100%); background-size:200% auto; -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:goldShimmer 3.5s linear 1.5s infinite; }
.hero p { color:rgba(255,255,255,0.75); font-size:17px; line-height:1.7; margin-bottom:40px; max-width:520px; font-weight:300; opacity:0; animation:fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.75s both; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; opacity:0; animation:fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.9s both; }
.hero-stats { position:absolute; right:5%; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:16px; z-index:2; }
.hero-stat { background:rgba(255,255,255,0.07); border:1px solid rgba(201,168,76,0.2); border-radius:12px; padding:20px 24px; text-align:center; min-width:140px; opacity:0; animation:statSlide 0.7s cubic-bezier(0.22,1,0.36,1) both; transition:background 0.2s,transform 0.2s; }
.hero-stat:hover { background:rgba(255,255,255,0.13); transform:translateY(-2px); }
.hero-stats .hero-stat:nth-child(1) { animation-delay:1.0s; } .hero-stats .hero-stat:nth-child(2) { animation-delay:1.15s; } .hero-stats .hero-stat:nth-child(3) { animation-delay:1.3s; }
.hero-stat-num { font-family:'Playfair Display',serif; font-size:36px; font-weight:700; color:var(--gold-light); line-height:1; }
.hero-stat-label { color:rgba(255,255,255,0.6); font-size:12px; margin-top:6px; letter-spacing:0.5px; }
.hero-scroll { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; opacity:0; animation:fadeIn 1s ease 2s both; }
.hero-scroll span { color:rgba(255,255,255,0.4); font-size:11px; letter-spacing:1.5px; text-transform:uppercase; }
.scroll-mouse { width:22px; height:34px; border:1.5px solid rgba(201,168,76,0.4); border-radius:11px; position:relative; }
.scroll-mouse::after { content:''; position:absolute; top:5px; left:50%; transform:translateX(-50%); width:3px; height:6px; background:var(--gold); border-radius:2px; animation:scrollBob 1.8s ease-in-out infinite; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary { background:var(--gold); color:var(--green); padding:14px 32px; border-radius:8px; font-weight:600; font-size:15px; text-decoration:none; transition:background 0.2s,transform 0.1s; animation:btnPulse 2.5s ease-in-out 2s 3; }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-outline { border:1.5px solid rgba(201,168,76,0.5); color:var(--gold-light); padding:14px 32px; border-radius:8px; font-weight:500; font-size:15px; text-decoration:none; transition:border-color 0.2s,background 0.2s; }
.btn-outline:hover { border-color:var(--gold); background:rgba(201,168,76,0.08); }

/* ── Sections ─────────────────────────────────────────────── */
section { padding:90px 5%; }
.section-label { display:inline-block; color:var(--gold-dark); font-size:12px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:12px; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(28px,3.5vw,44px); font-weight:700; color:var(--green); line-height:1.2; margin-bottom:16px; }
.section-sub { color:var(--text-muted); font-size:16px; line-height:1.7; max-width:580px; }

/* ── About ───────────────────────────────────────────────── */
.about { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; margin-top:60px; }
.about-visual { position:relative; border-radius:16px; overflow:hidden; }
.about-img { width:100%; height:480px; object-fit:cover; display:block; }
.about-visual-overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top, rgba(20,50,8,0.97) 0%, rgba(20,50,8,0.85) 60%, transparent 100%); padding:32px 28px 28px; }
.about-visual-overlay h3 { font-family:'Playfair Display',serif; color:var(--white); font-size:20px; margin-bottom:10px; }
.about-visual-overlay p { color:rgba(255,255,255,0.75); font-size:14px; line-height:1.65; }
.about-visual-badge { position:absolute; top:16px; right:16px; background:var(--gold); color:var(--green); padding:7px 16px; border-radius:30px; font-weight:700; font-size:13px; z-index:2; }
.about-timeline { display:flex; flex-direction:column; gap:0; padding-top:10px; }
.timeline-item { display:flex; gap:20px; padding-bottom:32px; position:relative; }
.timeline-item:not(:last-child)::before { content:''; position:absolute; left:19px; top:40px; bottom:0; width:1px; background:var(--border); }
.timeline-dot { width:40px; height:40px; min-width:40px; background:var(--cream-dark); border:2px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; z-index:1; }
.timeline-content h4 { font-weight:600; font-size:15px; margin-bottom:4px; color:var(--green); }
.timeline-content p { font-size:14px; color:var(--text-muted); line-height:1.6; }
.timeline-year { font-size:12px; color:var(--gold-dark); font-weight:600; margin-bottom:2px; }

/* ── Products ────────────────────────────────────────────── */
.products { background:var(--cream); }
.products-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:50px; flex-wrap:wrap; gap:20px; }
.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.product-card { background:var(--white); border-radius:16px; border:1px solid var(--border); overflow:hidden; transition:transform 0.25s,box-shadow 0.25s; }
.product-card:hover { transform:translateY(-5px); box-shadow:0 14px 44px rgba(45,80,22,0.14); }
.product-card-img { height:190px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.product-card-img.basmati { background:linear-gradient(135deg,#f5edd8,#ecdcb0); }
.product-card-img.sella   { background:linear-gradient(135deg,#fdf3d0,#f5e488); }
.product-card-img.steam   { background:linear-gradient(135deg,#e0eff8,#c0dcf0); }
.product-card-img.raw     { background:linear-gradient(135deg,#eaf4e0,#ccebb0); }
.product-icon-wrap { display:flex; flex-direction:column; align-items:center; gap:10px; }
.product-icon-label { font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--green); opacity:0.6; }
.product-card:hover .product-icon-wrap svg { transform:scale(1.08) translateY(-3px); }
.product-card:hover .product-icon-wrap svg { transition:transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.product-card-body { padding:24px; }
.product-card-body h3 { font-family:'Playfair Display',serif; font-size:20px; color:var(--green); margin-bottom:8px; }
.product-card-body p { color:var(--text-muted); font-size:14px; line-height:1.65; margin-bottom:16px; }
.product-tag { display:inline-block; background:var(--green-light); color:var(--green); padding:4px 12px; border-radius:30px; font-size:12px; font-weight:500; margin:3px 3px 3px 0; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-section { background:var(--green); padding-bottom:80px; }
.gallery-section .section-label { color:var(--gold-light); }
.gallery-section .section-title { color:var(--white); }
.gallery-section .section-sub { color:rgba(255,255,255,0.65); margin-bottom:40px; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:220px 220px; gap:12px; margin-top:40px; }
.gallery-item { border-radius:12px; overflow:hidden; position:relative; cursor:pointer; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }

/* ── Why Us ──────────────────────────────────────────────── */
.why { background:var(--green); }
.why .section-title { color:var(--white); } .why .section-sub { color:rgba(255,255,255,0.7); } .why .section-label { color:var(--gold-light); }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; margin-top:50px; }
.why-card { background:rgba(255,255,255,0.07); border:1px solid rgba(201,168,76,0.2); border-radius:14px; padding:28px; transition:background 0.2s,transform 0.2s; }
.why-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-3px); }
.why-icon { font-size:32px; margin-bottom:16px; }
.why-card h3 { color:var(--gold-light); font-size:17px; font-weight:600; margin-bottom:10px; }
.why-card p { color:rgba(255,255,255,0.65); font-size:14px; line-height:1.6; }

/* ── Export ──────────────────────────────────────────────── */
.export { background:var(--cream-dark); }
.export-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:70px; align-items:start; margin-top:50px; }
.export-text p { color:var(--text-muted); font-size:16px; line-height:1.75; margin-bottom:20px; }
.export-markets { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:30px; }
.market-item { display:flex; align-items:center; gap:10px; background:var(--white); border-radius:10px; padding:14px 16px; border:1px solid var(--border); }
.market-flag { font-size:22px; } .market-name { font-size:14px; font-weight:500; color:var(--green); }
.export-certs { display:flex; flex-direction:column; gap:16px; }
.cert-card { background:var(--white); border-radius:12px; padding:20px 24px; border-left:4px solid var(--gold); border-top:1px solid var(--border); border-right:1px solid var(--border); border-bottom:1px solid var(--border); transition:transform 0.2s; }
.cert-card:hover { transform:translateX(4px); }
.cert-card h4 { font-weight:600; color:var(--green); font-size:15px; margin-bottom:4px; }
.cert-card p { color:var(--text-muted); font-size:13px; }

/* ── Testimonials Carousel ───────────────────────────────── */
.testimonials { background:var(--cream); overflow:hidden; }
.testi-carousel-wrap { position:relative; margin-top:50px; }

/* Outer clip */
.testi-track-outer {
  overflow:hidden;
  border-radius:16px;
  padding:8px 0 16px;
}

/* Scrolling track */
.testi-track {
  display:flex;
  gap:24px;
  transition:transform 0.5s cubic-bezier(0.22,1,0.36,1);
  will-change:transform;
  cursor:grab;
  user-select:none;
}
.testi-track.grabbing { cursor:grabbing; transition:none; }

/* Individual card */
.testi-card {
  background:var(--white);
  border-radius:16px;
  padding:32px 28px;
  border:1px solid var(--border);
  position:relative;
  flex:0 0 calc(33.333% - 16px);
  min-width:0;
  transition:box-shadow 0.2s, transform 0.2s;
  box-shadow:0 2px 12px rgba(45,80,22,0.06);
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(45,80,22,0.12); }
.testi-card::before { content:'"'; position:absolute; top:12px; right:20px; font-family:'Playfair Display',serif; font-size:80px; line-height:1; color:rgba(201,168,76,0.1); pointer-events:none; }
.testi-stars { color:var(--gold); font-size:15px; margin-bottom:14px; letter-spacing:3px; }
.testi-text { color:var(--text-muted); font-size:14px; line-height:1.8; margin-bottom:24px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar { width:46px; height:46px; min-width:46px; background:linear-gradient(135deg,var(--green),var(--green-mid)); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:14px; font-weight:700; }
.testi-name { font-weight:600; font-size:14px; color:var(--green); }
.testi-role { font-size:12px; color:var(--text-muted); margin-top:2px; }

/* Prev / Next buttons */
.testi-nav {
  position:absolute; top:50%; transform:translateY(-60%); z-index:10;
  width:44px; height:44px; border-radius:50%;
  background:var(--white); border:1.5px solid var(--border);
  color:var(--green); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(45,80,22,0.12);
  transition:background 0.2s, border-color 0.2s, transform 0.2s;
}
.testi-nav:hover { background:var(--green); color:var(--white); border-color:var(--green); transform:translateY(-60%) scale(1.08); }
.testi-prev { left:-20px; }
.testi-next { right:-20px; }
.testi-nav:disabled { opacity:0.3; pointer-events:none; }

/* Dots */
.testi-dots { display:flex; justify-content:center; gap:8px; margin-top:24px; }
.testi-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(45,80,22,0.2); border:none; cursor:pointer;
  padding:0; transition:background 0.3s, width 0.3s;
}
.testi-dot.active { background:var(--green); width:24px; border-radius:4px; }

/* Responsive */
@media(max-width:900px) {
  .testi-card { flex:0 0 calc(50% - 12px); }
  .testi-prev { left:-14px; } .testi-next { right:-14px; }
}
@media(max-width:560px) {
  .testi-card { flex:0 0 calc(100% - 0px); }
  .testi-prev { left:-10px; } .testi-next { right:-10px; }
}

/* ── Location ────────────────────────────────────────────── */
.location { background:var(--white); }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:50px; align-items:start; }
.location-info { display:flex; flex-direction:column; gap:16px; }
.location-block { display:flex; gap:16px; align-items:flex-start; padding:18px 20px; background:var(--cream); border-radius:12px; border:1px solid var(--border); transition:border-color 0.2s; }
.location-block:hover { border-color:var(--gold); }
.location-block-icon { font-size:22px; min-width:22px; margin-top:2px; }
.location-block h4 { font-weight:600; font-size:15px; color:var(--green); margin-bottom:4px; }
.location-block p { font-size:14px; color:var(--text-muted); line-height:1.6; }
.location-block a { color:var(--green-mid); text-decoration:none; } .location-block a:hover { text-decoration:underline; }
.map-embed { border-radius:16px; overflow:hidden; border:1px solid var(--border); height:400px; }
.map-embed iframe { width:100%; height:100%; border:none; display:block; }

/* ── Contact ─────────────────────────────────────────────── */
.contact { background:linear-gradient(160deg,#1a3a08,#2D5016); }
.contact .section-title { color:var(--white); } .contact .section-label { color:var(--gold-light); } .contact .section-sub { color:rgba(255,255,255,0.7); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:50px; }
.contact-form-wrap { background:rgba(255,255,255,0.05); border:1px solid rgba(201,168,76,0.2); border-radius:16px; padding:32px; }
.contact-form-title { font-family:'Playfair Display',serif; color:var(--gold-light); font-size:20px; margin-bottom:20px; }
.contact-form { display:flex; flex-direction:column; gap:12px; }
.contact-form input, .contact-form select, .contact-form textarea { background:rgba(255,255,255,0.08); border:1px solid rgba(201,168,76,0.25); border-radius:8px; padding:12px 16px; color:var(--white); font-size:14px; font-family:'DM Sans',sans-serif; outline:none; transition:border-color 0.2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color:rgba(255,255,255,0.38); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:var(--gold); background:rgba(255,255,255,0.11); }
.contact-form select option { background:#1a3a08; color:var(--white); }
.contact-form textarea { resize:vertical; min-height:100px; }
.contact-form button { background:var(--gold); color:var(--green); border:none; padding:13px 24px; border-radius:8px; font-weight:700; font-size:15px; cursor:pointer; font-family:'DM Sans',sans-serif; display:flex; align-items:center; justify-content:center; gap:8px; transition:background 0.2s,transform 0.1s; }
.contact-form button:hover { background:var(--gold-light); transform:translateY(-1px); }
.form-note { color:rgba(255,255,255,0.3); font-size:11px; margin-top:4px; text-align:center; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.contact-detail { display:flex; gap:16px; padding:18px 20px; background:rgba(255,255,255,0.06); border:1px solid rgba(201,168,76,0.2); border-radius:12px; }
.contact-detail-icon { font-size:22px; min-width:22px; }
.contact-detail h4 { color:var(--gold-light); font-size:12px; font-weight:500; letter-spacing:0.5px; margin-bottom:4px; }
.contact-detail p { color:rgba(255,255,255,0.8); font-size:15px; font-weight:500; }
.contact-detail a { color:rgba(255,255,255,0.8); text-decoration:none; }
.wa-contact-btn { display:flex; align-items:center; justify-content:center; gap:10px; background:#25D366; color:#fff; padding:14px 24px; border-radius:10px; text-decoration:none; font-weight:700; font-size:15px; transition:background 0.2s,transform 0.1s; margin-top:4px; }
.wa-contact-btn:hover { background:#1db954; transform:translateY(-1px); }

/* ── Footer ──────────────────────────────────────────────── */
footer { background:#0d2006; padding:48px 5%; display:grid; grid-template-columns:1fr auto 1fr; align-items:start; gap:40px; border-top:1px solid rgba(201,168,76,0.2); }
.footer-brand p { color:rgba(255,255,255,0.45); font-size:13px; line-height:1.6; }
.footer-brand strong { color:rgba(255,255,255,0.7); }
.footer-links { display:flex; flex-direction:column; gap:10px; align-items:center; }
.footer-links a { color:rgba(255,255,255,0.5); font-size:13px; text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-contact { display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.footer-contact a { color:rgba(255,255,255,0.5); font-size:13px; text-decoration:none; transition:color 0.2s; }
.footer-contact a:hover { color:var(--gold-light); }

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-stats { display:none; }
  .hero-ring { display:none; }
  .export-grid { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  section { padding:70px 5%; }
  .about-grid, .contact-grid, .location-grid { grid-template-columns:1fr; gap:40px; }
  .about-img { height:320px; }
  .hero-content { max-width:100%; }
  .hero-logo-wrap img { height:85px; }
  .hero h1 { font-size:32px; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gallery-item.tall { grid-row:auto; }
  .gallery-item.wide { grid-column:auto; }
  footer { grid-template-columns:1fr; gap:28px; text-align:center; }
  .footer-contact { align-items:center; }
  .testi-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .hero-btns { flex-direction:column; }
  .btn-primary, .btn-outline { text-align:center; }
  .products-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .export-markets { grid-template-columns:1fr 1fr; }
}
