/* ===== OCTAGON Q EXIM — GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-900: #0d2b1a;
  --green-800: #1a4228;
  --green-700: #1f5c32;
  --green-600: #2a7a42;
  --green-500: #38a057;
  --green-400: #4ebd6d;
  --green-300: #80d49a;
  --accent:    #f4c430;
  --accent-dark:#c99a10;
  --cream:     #faf8f3;
  --cream-dark:#f0ede4;
  --text-dark: #111813;
  --text-mid:  #3a4a3e;
  --text-light:#6b7c70;
  --white:     #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius:    16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
height: 100px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo img { height: 88px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 18px; font-weight: 500; color: var(--text-mid);
  position: relative; padding-bottom: 8px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green-500);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: #aa8534; color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background:#aa8534!important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all var(--transition);
}
.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-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: white; padding: 1.5rem 5%;
  box-shadow: var(--shadow-md); z-index: 999;
  flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text-mid); padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.mobile-menu .nav-cta { border: none; text-align: center; margin-top: 0.5rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 100px 5% 60px;
  gap: 3rem;
  background: linear-gradient(135deg, #f0f7f2 0%, #e8f5ec 50%, #fff9e8 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,160,87,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(56,160,87,0.12); color: var(--green-700);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--green-500); border-radius: 50%; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-title em { color: var(--green-600); font-style: normal; }

.hero-desc {
  font-size: 1.05rem; color: var(--text-mid); margin-bottom: 2rem;
  max-width: 480px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-600); color: white;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(42,122,66,0.3);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,122,66,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--green-700);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--green-400);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--green-600); color: white; border-color: var(--green-600); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green-600); }
.hero-stat .lbl { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-image {
  position: relative; border-radius: 24px; overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: white; border-radius: 12px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-image-badge .icon { font-size: 1.5rem; }
.hero-image-badge strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.hero-image-badge span { font-size: 0.75rem; color: var(--text-light); }

/* ===== SECTION BASICS ===== */
section { padding: 90px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--green-600); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--green-500); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--text-dark); margin-bottom: 1rem;
}
.section-subtitle {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* ===== PRODUCT TICKER ===== */
.ticker-wrap {
  background: #aa8534; color: white;
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 3rem;
  animation: ticker 25s linear infinite;
}
.ticker-inner span {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.5rem;
}
.ticker-inner span::before { content: '✦'; color: var(--accent); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== PRODUCT CAROUSEL ===== */

/* Section wrapper */
.products-section {
  position: relative;
  overflow: hidden;
}

/* Header row: label + title on left, arrows on right */
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.carousel-header-text { flex: 1; }

/* Arrow controls */
.carousel-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: white;
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  user-select: none;
}
.carousel-btn:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(42,122,66,0.3);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Progress dots */
.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 0.5rem;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--green-500);
  width: 22px;
  border-radius: 4px;
}

/* The track wrapper — clips overflow */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0 -4px; /* slight bleed so shadows show */
  padding: 4px;
}

/* Sliding track */
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual card — fixed width, never shrinks */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  flex: 0 0 calc(25% - 1rem);   /* 4 cards visible desktop */
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

/* Gradient overlay on image */
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.product-card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--green-600); color: white;
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Hover quick-view overlay */
.product-card-overlay {
  position: absolute;
  inset: 0; z-index: 3;
  background: rgba(26,66,40,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay a {
  background: white; color: var(--green-700);
  padding: 0.55rem 1.3rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.product-card-overlay a:hover { background: var(--green-500); color: white; }

.product-card-body {
  padding: 1.1rem 1.2rem 0.6rem;
}
.product-card-body h3 {
  font-size: 1rem; margin-bottom: 0.3rem;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-card-body p {
  font-size: 0.8rem; color: var(--text-light); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  padding: 0.75rem 1.2rem;
  border-top: 1px solid var(--cream-dark);
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.5rem;
}
.product-card-footer a {
  font-size: 0.8rem; font-weight: 700;
  color: var(--green-600);
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.product-card-footer a:hover { gap: 0.6rem; }
.product-card-footer .grade-badge {
  font-size: 0.68rem; font-weight: 600;
  background: rgba(56,160,87,0.1);
  color: var(--green-700);
  padding: 2px 8px; border-radius: 50px;
  white-space: nowrap;
}

/* ── Responsive card widths ── */
@media (max-width: 1200px) {
  .product-card { flex: 0 0 calc(33.333% - 1rem); }
}
@media (max-width: 860px) {
  .product-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 520px) {
  .product-card { flex: 0 0 calc(80%); }
  .product-card-img { height: 180px; }
  .carousel-controls { display: flex; }
}

/* Legacy fallback — grid used on services page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: white; border-radius: var(--radius);
  padding: 2rem 1.5rem; border: 1px solid var(--cream-dark);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
	width: 100%;
	border-radius: 12px;
	background: rgba(56,160,87,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1rem; font-weight: 600; font-family: 'DM Sans',sans-serif; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-images {
  position: relative; height: 500px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 80%;
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge {
  position: absolute; top: 30%; left: 55%;
  background: var(--green-700); color: white;
  border-radius: 16px; padding: 1rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-md);
}
.experience-badge .num { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display',serif; }
.experience-badge .txt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }

.about-content .section-subtitle { margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; background: var(--cream); border-radius: 12px;
}
.about-feature-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--green-500); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.about-feature h4 { font-size: 0.9rem; font-weight: 600; font-family: 'DM Sans',sans-serif; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: white; text-align: center;
  padding: 90px 5%;
  position: relative; overflow: hidden;
}
.cta-banner::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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p { font-size: 1rem; opacity: 0.8; margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--green-800);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--accent); }
.btn-outline-white {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== FAQ ===== */
.faq-list {margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: 12px; margin-bottom: 0.75rem;
  overflow: hidden; background: white;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
  user-select: none;
}
.faq-question .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: all var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question .icon { background: var(--green-500); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.7;
}
.faq-answer.open { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: var(--green-800); color: white;
  border-radius: 20px; padding: 2.5rem;
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-info-card p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;   margin-bottom: 0.2rem; }
.contact-item span { font-size: 0.9rem; }
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--green-500); }

.contact-form {
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  background: var(--cream); color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(56,160,87,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; color: white; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.85rem;  
}
.breadcrumb a { color: white; }
.breadcrumb span {  }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 2rem; margin-top: 3rem; }
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-meta { padding: 1.25rem 1.5rem; }
.blog-tag {
  display: inline-block; background: rgba(56,160,87,0.1); color: var(--green-700);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'DM Sans',sans-serif; font-weight: 700; line-height: 1.4; }
.blog-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-light); padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.blog-footer a { color: var(--green-600); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--green-200); flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.author-info span { font-size: 0.75rem; color: var(--text-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--green-900); color: white; padding: 70px 5% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand img { height: 65px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem;   line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'DM Sans',sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.85rem;   transition: opacity var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--green-300); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem;   }
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.8rem;  flex-wrap: wrap; gap: 0.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; opacity: 1;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--green-600); }
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

/* ===== SERVICES PAGE ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; margin-top: 3rem; }
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'DM Sans',sans-serif; }
.service-card-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.service-card-body a { color: var(--green-600); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(220px,1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-img {overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-info { padding: 1.25rem; }
.team-card-info h3 { font-size: 1rem; font-weight: 700; font-family: 'DM Sans',sans-serif; }
.team-card-info span { font-size: 0.8rem; color: var(--green-600); font-weight: 500; }

/* ===== COUNTERS ===== */
.counters-section {
  background: #aa8534; color: white; padding: 70px 5%;
}
.counters-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2rem; text-align: center;
}
.counter-item .num {
  font-family: 'Playfair Display',serif; font-size: 3rem; font-weight: 700;
  line-height: 1; margin-bottom: 0.5rem;
}
.counter-item .lbl { font-size: 0.85rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { height: 380px; max-width: 600px; margin: 0 auto; }
  .about-split { grid-template-columns: 1fr; }
  .about-images { height: 360px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 90px 5% 50px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-card-img { height: 160px; }
}
