/* =============================================
   SVAP - SRI VENKATESHWARA AGRO PRODUCTS
   Design: Organic Luxury — Deep Forest Greens,
   Warm Cream, Gold Accents, Playfair + DM Sans
   ============================================= */

:root {
  --green-900: #0d2818;
  --green-800: #1a4a2e;
  --green-700: #256b3e;
  --green-600: #2d8a50;
  --green-500: #38a169;
  --green-400: #68c593;
  --green-100: #eaf5ed;
  --cream: #faf8f2;
  --cream-dark: #f0ece0;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --text-dark: #1a2018;
  --text-mid: #3d4a38;
  --text-light: #6b7c65;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(13,40,24,0.12);
  --shadow-lg: 0 20px 80px rgba(13,40,24,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
em { color: var(--green-600); font-style: italic; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }
.alt-bg { background: var(--cream-dark); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; margin-top: 16px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  background: rgba(201,168,76,0.08);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37,107,62,0.3);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,107,62,0.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; }

.btn-white {
  display: inline-flex; align-items: center;
  background: var(--white);
  color: var(--green-800);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ---- NAVBAR ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 40px;
  padding: 20px 60px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,30,16,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  margin-right: auto;
}
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.1rem;
  color: white;
}
.logo-mark span { color: var(--gold-light); }
.logo-text {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: white; line-height: 1.3;
}
.logo-text small { color: var(--green-400); letter-spacing: 0.2em; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--green-900);
  border: none; cursor: pointer;
  padding: 11px 24px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: none;
  color: white; font-size: 1.5rem; cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-900) 0%, #142b1e 50%, #0a1f12 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1500651230702-0e2d8a49d4e5?w=1600&q=80') center/cover;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(56,161,105,0.15) 0%, transparent 70%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 140px 60px 100px;
}
.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.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  color: white;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em { color: var(--green-400); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem; max-width: 600px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat strong {
  display: block; font-size: 2.2rem; font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: white; line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-scroll {
  position: absolute; right: 60px; bottom: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s infinite;
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--green-800);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 40px; align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- WELCOME ---- */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.welcome-img-wrap {
  position: relative; height: 550px;
}
.welcome-img-card {
  position: absolute;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
}
.img-main {
  width: 80%; height: 480px; left: 0; top: 0;
  box-shadow: var(--shadow-lg);
}
.img-float {
  width: 55%; height: 280px; right: 0; bottom: 0;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
}
.badge-float {
  position: absolute; left: 50%; top: 40%;
  background: var(--green-700);
  color: white; border-radius: 16px;
  padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.badge-num { font-size: 2rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.badge-lbl { font-size: 0.7rem; letter-spacing: 0.1em; opacity: 0.8; }

.welcome-text .section-label { margin-bottom: 16px; }
.welcome-text h2 { margin-bottom: 20px; }
.welcome-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.check-list { margin: 28px 0 36px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem; font-weight: 500;
}
.check-item span {
  width: 24px; height: 24px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}

/* ---- PRODUCTS ---- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.product-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.featured {
  border: 2px solid var(--green-500);
  position: relative;
}
.product-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--green-600); color: white;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px;
}
.product-img {
  height: 220px;
  background: var(--img) center/cover;
}
.product-body { padding: 28px; }
.product-icon { font-size: 2rem; margin-bottom: 12px; }
.product-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.product-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.product-link { color: var(--green-600); font-weight: 600; font-size: 0.9rem; }
.product-link:hover { color: var(--green-800); }

/* ---- MISSION ---- */
.mission { background: var(--green-900); }
.mission h2, .mission .section-label { display: none; }
.mv-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start;
  max-width: 960px; margin: 0 auto;
}
.mv-card {
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.mv-card h3 { color: white; font-size: 1.8rem; margin: 16px 0 16px; }
.mv-card p { color: rgba(255,255,255,0.65); font-size: 1.02rem; line-height: 1.8; }
.mv-icon { font-size: 2.5rem; }
.mission-card { border-color: rgba(56,161,105,0.3); }
.vision-card { border-color: rgba(201,168,76,0.3); }
.mv-divider {
  width: 1px; align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
  margin-top: 48px;
}

/* ---- STATS BAND ---- */
.stats-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  padding: 80px 0;
}
.stats-grid {
  display: flex; gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 160px;
  text-align: center; padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 3.5rem; font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: white; line-height: 1;
}
.stat-unit { color: var(--gold-light); font-size: 1.1rem; font-weight: 600; margin: 4px 0; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; letter-spacing: 0.03em; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-item {
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--green-500);
  transform: scaleY(0); transition: transform 0.3s;
  transform-origin: bottom;
}
.service-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-item:hover::before { transform: scaleY(1); }
.service-num {
  font-size: 3rem; font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: rgba(0,0,0,0.06);
  line-height: 1; margin-bottom: 8px;
}
.service-item h4 { margin-bottom: 12px; color: var(--text-dark); }
.service-item p { color: var(--text-light); font-size: 0.93rem; }
.services-cta { text-align: center; margin-top: 56px; }

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.testi-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-card.featured {
  background: var(--green-800);
  color: white;
}
.testi-card.featured p { color: rgba(255,255,255,0.85); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-style: italic; line-height: 1.8; margin-bottom: 24px; color: var(--text-mid); font-size: 0.97rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--green-600);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.6); }
.testi-card.featured strong { color: white; }
.testi-card.featured .testi-avatar { background: var(--gold); color: var(--green-900); }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative; padding: 120px 0;
  background: url('https://images.unsplash.com/photo-1589923158776-cb4485d99fd6?w=1600&q=80') center/cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.92), rgba(37,107,62,0.85));
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.cta-content h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--green-900); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--green-600); border-color: var(--green-600); color: white; }
.footer-links h5, .footer-contact h5 {
  color: white; font-size: 0.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: 'DM Sans', sans-serif;
  font-weight: 700; margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 0.88rem; padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-400); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem;
}

/* =====================
   WHO WE ARE PAGE
   ===================== */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--green-900), #142b1e);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1530836369250-ef72a3f5cda8?w=1600&q=80') center/cover;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 580px; }

.about-section { padding: 120px 0; }
.about-intro { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.about-intro h2 { margin-bottom: 20px; }
.about-intro p { font-size: 1.15rem; color: var(--text-light); }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px;
}
.pillar-card {
  padding: 40px 32px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  text-align: center; transition: transform 0.3s;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-icon { font-size: 3rem; margin-bottom: 16px; }
.pillar-card h4 { margin-bottom: 12px; color: var(--green-800); }
.pillar-card p { color: var(--text-light); font-size: 0.93rem; }

.numbers-section {
  background: var(--green-800); padding: 100px 0;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.number-card { text-align: center; }
.number-card .big { font-size: 4rem; font-weight: 900; font-family: 'Playfair Display', serif; color: var(--gold-light); }
.number-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 6px; }

.story-section { padding: 120px 0; background: var(--cream-dark); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img {
  height: 500px;
  background: url('https://images.unsplash.com/photo-1535379453347-1ffd615e2e08?w=800&q=80') center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.story-text h2 { margin-bottom: 24px; }
.story-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }

.highlights-list { margin: 32px 0; }
.hl-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hl-item:last-child { border-bottom: none; }
.hl-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-100);
  color: var(--green-700); font-weight: 700; font-size: 0.85rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hl-text h5 { font-size: 1rem; margin-bottom: 4px; }
.hl-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* =====================
   PRODUCTS PAGE
   ===================== */
.products-hero-bg { background: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1600&q=80') center/cover; }
.products-full { padding: 120px 0; }
.product-full-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 100px; padding-bottom: 100px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.product-full-card:last-child { border-bottom: none; }
.product-full-card.reverse { direction: rtl; }
.product-full-card.reverse > * { direction: ltr; }
.product-full-img {
  height: 480px;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.product-full-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.5), transparent);
}
.product-tag {
  display: inline-block;
  background: var(--green-100); color: var(--green-700);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.product-full-text h2 { margin-bottom: 16px; }
.product-full-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.product-features {
  margin: 28px 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pf-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid); font-weight: 500;
}
.pf-item::before { content: '✓'; color: var(--green-600); font-weight: 700; }

/* =====================
   SERVICES PAGE
   ===================== */
.services-full { padding: 120px 0; }
.services-intro { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.services-intro p { color: var(--text-light); margin-top: 16px; font-size: 1.05rem; }

.svc-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 48px; background: var(--white);
  border-radius: var(--radius); margin-bottom: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.svc-card:hover { border-left-color: var(--green-500); transform: translateX(6px); }
.svc-icon-wrap {
  width: 72px; height: 72px;
  background: var(--green-100);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.svc-body h3 { margin-bottom: 12px; color: var(--text-dark); }
.svc-body p { color: var(--text-light); font-size: 0.97rem; line-height: 1.8; }
.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.svc-tag {
  background: var(--green-100); color: var(--green-700);
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px;
  border-radius: 100px;
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px;
}
.why-card {
  padding: 36px; background: var(--cream-dark);
  border-radius: var(--radius);
}
.why-card h4 { margin: 12px 0 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-light); font-size: 1.02rem; margin-bottom: 40px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.cd-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green-100); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.cd-text strong { display: block; font-size: 0.85rem; color: var(--text-mid); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.cd-text span { font-size: 1.02rem; color: var(--text-dark); }

.contact-form-wrap {
  background: var(--white);
  padding: 56px; border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 36px; }
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 16px 20px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(56,161,105,0.1);
  background: white;
}
.form-row textarea { min-height: 140px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  background: var(--green-700); color: white;
  border: none; cursor: pointer;
  width: 100%; padding: 18px;
  border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.form-submit:hover { background: var(--green-800); transform: translateY(-2px); }
.form-success {
  display: none;
  text-align: center; padding: 32px;
  color: var(--green-700);
}
.form-success .check-big { font-size: 4rem; margin-bottom: 16px; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav { padding: 16px 28px; }
  .nav.scrolled { padding: 12px 28px; }
  .welcome-grid,
  .story-grid,
  .product-full-card,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-full-card.reverse { direction: ltr; }
  .products-grid,
  .testi-grid,
  .services-grid,
  .pillars-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-divider { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .welcome-img-wrap { height: 380px; }
  .img-main { height: 340px; }
  .img-float { height: 200px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 120px 28px 80px; }
  .products-grid,
  .testi-grid,
  .services-grid,
  .pillars-grid,
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .contact-form-wrap { padding: 32px 24px; }
}
