/* =========================================
   IADF GROUP – INDO AGRO DHEY FOODS
   Modern Website Styles | White Black Green
   ========================================= */

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

:root {
  --green:      #16a34a;
  --green-dark: #15803d;
  --green-light:#22c55e;
  --black:      #0a0a0a;
  --dark:       #111827;
  --dark2:      #1f2937;
  --grey:       #6b7280;
  --light-grey: #f3f4f6;
  --white:      #ffffff;
  --font:       'Outfit', sans-serif;
  --serif:      'Playfair Display', serif;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--green);
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.35); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ---------- SECTION COMMONS ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(22,163,74,0.12);
  color: var(--green);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  color: var(--dark); margin-bottom: 14px;
}
.section-title .green { color: var(--green); }
.section-header p { color: var(--grey); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left span, .topbar-right span { display: flex; align-items: center; gap: 6px; }
.topbar-right i.fab { font-size: 1rem; transition: color 0.2s; }
.topbar-right a:hover i { color: var(--green-light); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.13); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  background: var(--green);
  color: var(--white);
  font-weight: 900; font-size: 1rem;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.35);
}
.logo-badge.small { width: 44px; height: 44px; font-size: 0.85rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 800; font-size: 1rem; color: var(--dark); letter-spacing: 0.5px; line-height: 1.2; }
.logo-tag { font-size: 0.68rem; color: var(--green); font-weight: 600; letter-spacing: 0.5px; }

.main-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.main-about-img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-weight: 500; font-size: 0.9rem; color: var(--dark2);
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--green); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.nav-cta-btn {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  margin-left: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}
.nav-cta-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,163,74,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ===================== HERO ===================== */
.hero-section { position: relative; height: 100vh; min-height: 600px; }
.heroSwiper, .heroSwiper .swiper-wrapper, .hero-slide { height: 100%; }

.hero-slide { position: relative; overflow: hidden; }
.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(22,163,74,0.15) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute; z-index: 2;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center;
  width: 90%; max-width: 800px;
  color: var(--white);
}

.slide-badge {
  display: inline-block;
  background: rgba(22,163,74,0.9);
  color: var(--white);
  padding: 6px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.slide-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-content h1 em {
  font-style: normal;
  color: var(--green-light);
  font-family: var(--serif);
}

.slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px; margin: 0 auto 32px;
  line-height: 1.7;
}

.slide-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Swiper custom arrows */
.hero-next, .hero-prev {
  color: var(--white) !important;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 52px !important; height: 52px !important;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.hero-next:hover, .hero-prev:hover { background: var(--green); border-color: var(--green); }
.hero-next::after, .hero-prev::after { font-size: 1rem !important; font-weight: 900; }

.heroSwiper-pagination { bottom: 28px !important; }
.heroSwiper-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.6); width: 10px; height: 10px; }
.heroSwiper-pagination .swiper-pagination-bullet-active { background: var(--green-light); width: 28px; border-radius: 5px; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; animation: bounce 2s infinite;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 15px; position: relative;
}
.scroll-dot::before {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--white); border-radius: 50%;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot { 0%,100%{top:6px;opacity:1} 80%{top:26px;opacity:0} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ===================== STATS ===================== */
/* ===================== NEW STATS SECTION ===================== */
.stats-strip {
  background: var(--black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(22,163,74,0.15) 0%, transparent 70%);
}
.stats-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; position: relative; z-index: 1;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--green);
  transform: translateY(-5px);
}
.stat-icon {
  width: 50px; height: 50px;
  background: rgba(22,163,74,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--green-light);
  font-size: 1.4rem; transition: var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--green); color: var(--white);
  box-shadow: 0 0 20px rgba(22,163,74,0.4);
}
.stat-nums { display: flex; align-items: baseline; justify-content: center; }
.stat-num {
  font-size: 3.2rem; font-weight: 800;
  color: var(--white); line-height: 1;
  font-family: var(--font); /* Using modern font */
  letter-spacing: -1px;
}
.stat-plus { font-size: 1.8rem; font-weight: 800; color: var(--green-light); margin-left: 2px; }
.stat-label { 
  color: rgba(255,255,255,0.6); 
  font-size: 0.9rem; margin-top: 10px; 
  font-weight: 600; text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* ===================== ABOUT ===================== */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-image-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); height: 520px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--green);
  color: var(--white);
  padding: 20px 24px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px rgba(22,163,74,0.4);
}
.about-badge-card i { font-size: 1.8rem; }
.about-badge-card strong { display: block; font-size: 0.95rem; font-weight: 700; }
.about-badge-card span { font-size: 0.78rem; opacity: 0.85; }

.about-content { padding-right: 16px; }
.about-lead {
  font-size: 0.82rem; color: var(--green); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.about-content p { color: var(--grey); margin-bottom: 16px; font-size: 1rem; }
.about-content strong { color: var(--dark); }

.about-highlights { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.highlight {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--light-grey);
}
.highlight i { color: var(--green); font-size: 1.2rem; margin-top: 2px; }
.highlight strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.highlight span { font-size: 0.85rem; color: var(--grey); }

/* ===================== PRODUCTS ===================== */
.products-section { padding: 100px 0; background: var(--light-grey); }
.productsSwiper { padding: 16px 8px 60px !important; }
.prod-next, .prod-prev {
  color: var(--dark) !important;
  background: var(--white);
  border-radius: 50%;
  width: 44px !important; height: 44px !important;
  box-shadow: var(--shadow);
  top: 44% !important;
}
.prod-next::after, .prod-prev::after { font-size: 0.85rem !important; font-weight: 900; color: var(--green); }
.prod-next:hover, .prod-prev:hover { background: var(--green); }
.prod-next:hover::after, .prod-prev:hover::after { color: var(--white); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-img-wrap { position: relative; overflow: hidden; height: 240px; }
.product-img-wrap img { height: 100%; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--green); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.5px;
}
.product-badge.new { background: var(--black); }

.product-info { padding: 24px; }
.product-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.product-info p { font-size: 0.88rem; color: var(--grey); margin-bottom: 16px; line-height: 1.6; }
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.product-tags span {
  background: rgba(22,163,74,0.1); color: var(--green);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.product-btn {
  display: block; text-align: center;
  background: var(--dark); color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  transition: var(--transition);
}
.product-btn:hover { background: var(--green); }

.productsSwiper-pagination .swiper-pagination-bullet-active { background: var(--green); }

/* ===================== WHY US ===================== */
.whyus-section { 
  padding: 100px 0; 
  background: var(--white); 
  position: relative; 
  overflow: hidden; 
}
.whyus-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/collage_sketch_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Details visible but subtle */
  z-index: 0;
}
.section-header.light { position: relative; z-index: 1; }
.light-tag { background: rgba(22,163,74,0.1) !important; color: var(--green) !important; }
.section-title.white { color: var(--dark); }
.white-p { color: var(--grey); max-width: 620px; margin: 0 auto; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative; z-index: 1;
}
.feature-card {
  background: rgba(240,248,255,0.15); /* More transparent, subtle blue tint */
  backdrop-filter: blur(20px); /* Increased blur */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(53, 51, 51, 0.724);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.feature-card:hover { 
  background: rgba(22,163,74,0.08); /* Green tint on hover */
  border-color: var(--green); 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(22,163,74,0.12);
}
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(22,163,74,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.feature-icon i { font-size: 1.5rem; color: var(--green); }
.feature-card:hover .feature-icon { background: var(--green); }
.feature-card:hover .feature-icon i { color: var(--white); }
.feature-card h3 { color: var(--dark); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; }

/* ===================== QUALITY ===================== */
.quality-section { padding: 100px 0; background: var(--white); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.quality-items { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.quality-item { display: flex; gap: 16px; align-items: flex-start; }
.qicon { width: 36px; height: 36px; flex-shrink: 0; }
.qicon i { font-size: 1.5rem; color: var(--green); }
.quality-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.quality-item p { font-size: 0.88rem; color: var(--grey); }

.quality-image { position: relative; }
.quality-image img { border-radius: var(--radius-lg); height: 480px; object-fit: cover; box-shadow: var(--shadow-lg); }
.quality-overlay-card {
  position: absolute; top: 24px; right: -24px;
  background: var(--black); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green);
}
.quality-overlay-card i { font-size: 1.8rem; color: var(--green-light); }
.quality-overlay-card strong { font-size: 0.9rem; }
.quality-overlay-card span { font-size: 0.75rem; color: var(--green-light); }

/* ===================== CONTACT MAP ===================== */
.contact-map-full {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.map-container-contact {
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-top: none;
}
.map-container-contact iframe { width: 100%; height: 100%; display: block; }


/* ===================== CONTACT ===================== */
.contact-section { padding: 100px 0; background: var(--light-grey); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

.contact-info-card {
  background: var(--dark); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; gap: 28px;
}
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,163,74,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cinfo-icon i { color: var(--green-light); font-size: 1.1rem; }
.cinfo-item h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.cinfo-item p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.cinfo-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.cinfo-item a:hover { color: var(--green-light); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; 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: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--dark2); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 12px 16px; font-family: var(--font); font-size: 0.9rem;
  color: var(--dark); background: var(--white);
  transition: border-color 0.25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-success {
  display: none; text-align: center;
  color: var(--green); font-weight: 600;
  margin-top: 12px; font-size: 0.9rem;
}

/* ===================== FOOTER ===================== */
.footer { background: var(--black); color: var(--white); }

.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
  gap: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin: 18px 0 24px; line-height: 1.8; }

.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tag { color: var(--green-light); }
.footer-logo-name { display: block; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.5px; }
.footer-logo-tag { display: block; font-size: 0.65rem; color: var(--green-light); font-weight: 600; margin-top: 2px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.footer-links h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--green); border-radius: 2px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--green); }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }

.footer-contact h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-contact h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--green); border-radius: 2px; }
.footer-cinfo { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-cinfo i { color: var(--green-light); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.footer-cinfo span { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(22,163,74,0.45);
  opacity: 0; transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ===================== NAVBAR DROPDOWN ===================== */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-arrow { font-size: 0.65rem; transition: transform 0.3s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  min-width: 560px; padding: 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  opacity: 0; visibility: hidden;
  transition: all 0.28s ease;
  z-index: 2000;
  border-top: 3px solid var(--green);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-cat > span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--light-grey);
}
.dropdown-cat > span i { font-size: 0.5rem; }
.dropdown-cat ul { display: flex; flex-direction: column; gap: 4px; }
.dropdown-cat ul li a {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem; color: var(--dark2); padding: 6px 8px;
  border-radius: 7px; transition: var(--transition);
  font-weight: 500;
}
.dropdown-cat ul li a i { color: var(--green); font-size: 0.7rem; }
.dropdown-cat ul li a:hover { background: rgba(22,163,74,0.08); color: var(--green); transform: translateX(3px); }

/* ===================== PRODUCT MODAL ===================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.modal-backdrop.active { opacity: 1; visibility: visible; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%; max-width: 820px;
  max-height: 88vh; overflow-y: auto;
  z-index: 3100;
  opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.product-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark); transition: var(--transition);
}
.modal-close:hover { background: var(--dark); color: var(--white); }

.modal-inner { display: grid; grid-template-columns: 1fr 1.1fr; }
.modal-img-wrap { position: relative; height: 480px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-wrap .product-badge { top: 20px; left: 20px; font-size: 0.8rem; padding: 6px 16px; }

.modal-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.modal-body h2 { font-size: 1.6rem; font-weight: 800; margin: 10px 0 14px; color: var(--dark); }
.modal-body > p { color: var(--grey); font-size: 0.93rem; line-height: 1.75; margin-bottom: 20px; }

.modal-specs { margin-bottom: 20px; }
.modal-specs table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.modal-specs td { padding: 7px 0; border-bottom: 1px solid var(--light-grey); }
.modal-specs td:first-child { font-weight: 700; color: var(--dark2); width: 44%; }
.modal-specs td:last-child { color: var(--grey); }

.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-tags span {
  background: rgba(22,163,74,0.1); color: var(--green);
  font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}

.modal-actions { display: flex; gap: 12px; align-items: center; }
.btn-close-modal {
  padding: 13px 24px; border-radius: 50px;
  background: var(--light-grey); color: var(--dark2);
  border: none; cursor: pointer; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); font-family: var(--font);
}
.btn-close-modal:hover { background: #e5e7eb; }

/* ===================== ABOUT MAP ===================== */
.about-map-wrap { display: flex; flex-direction: column; gap: 0; }
.map-label {
  background: var(--green); color: var(--white);
  padding: 12px 20px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.map-container {
  height: 380px; border-radius: 0;
  overflow: hidden; border: 1px solid #e5e7eb; border-top: none;
}
.map-container iframe { display: block; }
.map-address-card {
  background: var(--dark); color: var(--white);
  padding: 18px 20px; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex; align-items: flex-start; gap: 14px;
}
.map-address-card i { color: var(--green-light); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.map-address-card strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.map-address-card span { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ===================== UPGRADED PROCESS SECTION ===================== */
.process-section { 
  padding: 120px 0; 
  background: var(--white); /* Light Background */
  position: relative; 
  overflow: hidden; 
}
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/collage_sketch_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* Subtle sketch details */
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.process-card {
  background: rgba(240, 248, 255, 0.237); /* High transparency, subtle blue tint */
  backdrop-filter: blur(25px); /* Strong blur for high-end look */
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(52, 50, 50, 0.788);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  /* Classic Animation Setup */
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.process-card.animate-in {
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Staggered Delays for 8 steps */
.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }
.process-card:nth-child(5) { animation-delay: 0.5s; }
.process-card:nth-child(6) { animation-delay: 0.6s; }
.process-card:nth-child(7) { animation-delay: 0.7s; }
.process-card:nth-child(8) { animation-delay: 0.8s; }

.process-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--green); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transition: transform 0.4s ease;
}

.process-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-10px);
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(22,163,74,0.15);
}

.process-card:hover::before { transform: scaleX(1); }

.proc-num {
  position: absolute; top: 20px; right: 25px;
  font-size: 3rem; font-weight: 900;
  color: rgba(22,163,74,0.08);
  line-height: 1; font-family: var(--font);
}

.proc-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 25px;
  color: var(--green);
  font-size: 2.2rem;
  transition: var(--transition);
}

.process-card:hover .proc-icon-wrap {
  background: var(--green);
  color: var(--white);
  transform: rotateY(180deg);
  box-shadow: 0 0 30px rgba(22,163,74,0.3);
}

.process-card h3 {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Connection line for desktop */
@media (min-width: 961px) {
  .process-card:not(:nth-child(4n))::after {
    content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 50%; right: -25px; transform: translateY(-50%);
    color: rgba(22,163,74,0.2); font-size: 1.2rem;
  }
}

/* ===================== ABOUT - product card cursor ===================== */
.product-card { cursor: pointer; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dropdown-menu { min-width: 480px; }
}
@media (max-width: 960px) {
  .about-grid, .quality-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-container { height: 300px; }
  .quality-image img { height: 360px; }
  .quality-overlay-card { position: static; margin-top: 16px; justify-content: flex-start; flex-direction: row; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-wrap { height: 260px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .process-step { grid-template-columns: 44px 56px 1fr; gap: 14px; padding: 18px 20px; }
  .process-connector { margin-left: 130px; }
}
@media (max-width: 768px) {
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    background: var(--white);
    flex-direction: column; padding: 80px 28px 32px;
    width: 300px; height: 100vh; overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transition: right 0.35s ease; z-index: 998;
    align-items: flex-start; gap: 4px;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 999; }
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; min-width: unset; width: 100%;
    border-radius: var(--radius); border-top: 2px solid var(--green);
    grid-template-columns: 1fr; padding: 12px;
    display: none;
  }
  .nav-dropdown.open-mobile .dropdown-menu { display: grid; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { display: none; }
  .slide-btns { flex-direction: column; align-items: center; }
  .process-step { grid-template-columns: 40px 1fr; }
  .process-num { display: none; }
  .process-connector { margin-left: 56px; }
}
@media (max-width: 480px) {
  .hero-section { height: 80vh; }
  .hero-next, .hero-prev { display: none !important; }
  .scroll-indicator { display: none; }
  .stat-item { padding: 12px 16px; }
  .modal-body { padding: 24px 20px; }
}
