/* === MARHABA RICE — style.css v3 === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --green:      #1a6b3c;
  --green-d:    #0f4d28;
  --green-bg:   #0d3d20;
  --gold:       #c9a227;
  --gold-l:     #e5c85a;
  --cream:      #f7f2e8;
  --cream2:     #ede5cf;
  --white:      #fdf9f2;
  --text:       #1c1c1c;
  --muted:      #5a5a5a;
  --ff-h: 'Playfair Display', Georgia, serif;
  --ff-b: 'Lato', sans-serif;
  --r: 14px;
  --sh: 0 6px 24px rgba(0,0,0,.09);
  --sh2: 0 18px 52px rgba(0,0,0,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--gold);
  color: var(--green-d);
  text-align: center;
  padding: 9px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3px;
  position: relative;
  z-index: 1001;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  height: 125px;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgb(240, 235, 224);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
  transition: top .35s;
}
.navbar.scrolled { top: 0; }

.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-logo { width: 185px; height: 125px;}
.nav-title { font-family: var(--ff-h); font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: .5px; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgb(13, 65, 34); font-size: .86rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; transition: color .2s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform .25s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: var(--gold) !important; color: var(--green-d) !important;
  padding: 7px 20px; border-radius: 22px; font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--gold-l) !important; transform: translateY(-1px); }

.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; flex-direction:column; gap:5px; }
.hamburger span { width:24px; height:2px; background:var(--gold); border-radius:2px; display:block; transition:all .3s; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-d) 50%, #1d5c35 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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/g%3E%3C/svg%3E");
}

.hero-bg-circle {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  right: -100px; top: -100px;
  pointer-events: none;
}

.hero-bg-circle2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  left: -50px; bottom: -50px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-text .tagline {
  display: inline-block;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--ff-h);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-text h1 .brand-name {
  color: var(--gold);
  display: block;
}

.hero-text .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge .badge-icon {
  font-size: 1.8rem;
}

.hero-badge .badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 700;
}

.hero-badge .badge-text span {
  font-size: 0.75rem;
  color: var(--text-mid);
}
/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; width: 100%; }

/* ── SECTION HEADERS ── */
.sec-head { text-align: center; margin-bottom: 54px; }
.sec-label { display: block; font-size: .73rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sec-title { font-family: var(--ff-h); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 700; color: var(--green-d); line-height: 1.2; margin-bottom: 14px; }
.sec-title.left { text-align: left; }
.gold-bar { width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-l)); border-radius: 3px; margin: 0 auto 18px; }
.gold-bar.left { margin: 0 0 18px; }
.sec-desc { color: var(--muted); font-size: .97rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── PRODUCTS ── */
.products-section { padding: 90px 5%; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.prod-card {
  background: #fff; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh); border: 1px solid rgba(201,162,39,.1);
  transition: transform .3s, box-shadow .3s;
}
.prod-card:hover { transform: translateY(-7px); box-shadow: var(--sh2); }

.prod-img-wrap { position: relative; height: 280px; overflow: hidden; background: #f0ebe0; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .45s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--green-d);
  font-size: .7rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.prod-body { padding: 20px 22px; }
.prod-body h3 { font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700; color: var(--green-d); margin-bottom: 8px; }
.prod-body p { font-size: .86rem; color: var(--muted); line-height: 1.65; }

/* ── ABOUT ── */
.about-section { padding: 90px 5%; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-stack { position: relative; }
.about-main-img { width: 100%; border-radius: 18px; box-shadow: var(--sh2); object-fit: cover; height: 460px; }
.about-overlay-card {
  position: absolute; bottom: -22px; right: -22px;
  background: #fff; padding: 14px 18px; border-radius: 12px;
  box-shadow: var(--sh2); border: 2px solid var(--gold);
  display: flex; align-items: center; gap: 12px;
}
.about-overlay-card img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.about-overlay-card strong { display: block; font-size: .88rem; color: var(--green-d); font-weight: 700; }
.about-overlay-card span { font-size: .75rem; color: var(--muted); }

.about-p { color: var(--muted); font-size: .96rem; line-height: 1.8; margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  padding-left: 20px; position: relative;
  font-size: .93rem; color: var(--text); font-weight: 500;
}
.about-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

/* ── GALLERY ── */
.gallery-section { padding: 90px 5%; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gal-item { border-radius: var(--r); overflow: hidden; position: relative; background: #f0ebe0; }
.gal-item.gal-tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .45s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,45,22,.8));
  padding: 24px 16px 14px;
  transform: translateY(100%); transition: transform .3s;
}
.gal-item:hover .gal-cap { transform: translateY(0); }
.gal-cap span { color: #fff; font-weight: 600; font-size: .88rem; }

/* ── CONTACT ── */
.contact-section { padding: 90px 5%; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-intro { color: var(--muted); font-size: .96rem; line-height: 1.75; margin-bottom: 30px; }

.c-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.c-dot {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.c-dot.green { background: var(--green); }
.c-dot.wa    { background: #25d366; }
.c-dot.gold  { background: var(--green-d); }
.c-dot.fb    { background: #1877f2; }
.c-dot.red   { background: #c0392b; }
.c-dot::after {
  content: ''; display: block;
  width: 14px; height: 14px;
  border: 2px solid white; border-radius: 50%;
}
.c-dot.green::after { border-radius: 2px; }
.c-text strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.c-text a, .c-text span { font-size: .92rem; color: var(--text); display: block; line-height: 1.6; }
.c-text a:hover { color: var(--green); }

.social-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.soc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 24px;
  font-size: .85rem; font-weight: 700;
  transition: all .25s;
}
.fb-btn { background: #1877f2; color: #fff; }
.fb-btn:hover { background: #1464d2; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(24,119,242,.35); }
.wa-btn { background: #25d366; color: #fff; }
.wa-btn:hover { background: #1aad55; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(37,211,102,.35); }

.contact-form-box {
  background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--sh2);
}
.contact-form-box h3 { font-family: var(--ff-h); font-size: 1.45rem; font-weight: 700; color: var(--green-d); margin-bottom: 26px; }
.f-group { margin-bottom: 18px; }
.f-group label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 7px; }
.f-group input, .f-group textarea, .f-group select {
  width: 100%; padding: 11px 14px;
  border: 2px solid #e5dece; border-radius: 9px;
  font-family: var(--ff-b); font-size: .93rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color .25s;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus { border-color: var(--green); }
.f-group textarea { min-height: 100px; resize: vertical; }
.f-submit {
  width: 100%; padding: 13px; background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff; border: none; border-radius: 10px;
  font-family: var(--ff-b); font-size: .95rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
}
.f-submit:hover { background: linear-gradient(135deg, var(--green-d), #081c0d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(10,45,22,.28); }

/* ── MAP ── */
.map-wrap { height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
footer { background: var(--green-bg); padding: 64px 5% 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 10px; }
.footer-name { font-family: var(--ff-h); font-size: 1.45rem; font-weight: 700; color: var(--gold); margin-bottom: 5px; }
.footer-tag { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 8px; font-style: italic; }
.footer-addr { font-size: .84rem; color: rgba(255,255,255,.42); line-height: 1.65; margin-bottom: 4px; }
.footer-email { font-size: .8rem; color: rgba(255,255,255,.38); }

footer h4 { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-l); margin-bottom: 18px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: .86rem; color: rgba(255,255,255,.55); }
footer a { color: rgba(255,255,255,.55); transition: color .2s; }
footer a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: all .3s; animation: wap 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wap { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.5)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.8)} }

/* ── FADE ── */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-d1 { transition-delay: .12s; }
.fade-in-d2 { transition-delay: .24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-main-img { height: 320px; }
  .about-overlay-card { right: -10px; bottom: -16px; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(8,38,18,.98); padding: 22px 5%; gap: 18px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.gal-tall { grid-row: span 1; }
}
@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 26px 18px; }
  section, .products-section, .about-section, .gallery-section, .contact-section { padding: 68px 4%; }
}
