/* Shree Maruti Green Energy - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --green-900: #0d3b1f;
  --green-800: #145a2a;
  --green-700: #1a7a38;
  --green-600: #22a04a;
  --green-500: #2ecc71;
  --green-100: #e8f8ee;
  --green-50: #f4fbf6;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --dark: #1a1f1c;
  --gray-700: #4a554e;
  --gray-500: #7a857e;
  --gray-200: #e5ebe7;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(13, 59, 31, 0.1);
  --shadow-lg: 0 12px 48px rgba(13, 59, 31, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
}

.nav { display: flex; align-items: center; gap: 36px; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-700);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-700);
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-900);
  transition: var(--transition);
}

/* Hero */
.hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,59,31,0.92) 0%, rgba(13,59,31,0.65) 50%, rgba(13,59,31,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--green-100);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span { color: var(--gold-light); }

.hero-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active { background: var(--gold-light); transform: scale(1.2); }

/* Stats bar */
.stats-bar {
  background: var(--green-700);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.stat-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-700);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Vision Mission Values */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vmv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.vmv-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.vmv-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.vmv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-900);
  margin-bottom: 12px;
}

.vmv-card p { color: var(--gray-700); font-size: 0.95rem; }

/* Products */
.products-section { background: var(--green-50); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 220px;
  overflow: hidden;
  background: var(--green-100);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img { transform: scale(1.06); }

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}

.product-body p {
  color: var(--gray-700);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
}

.product-link {
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link:hover { gap: 10px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-100);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-100);
}

.testimonial-author h4 {
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.95rem;
}

.testimonial-author p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* Partners */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.partners-grid img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: var(--transition);
}

.partners-grid img:hover {
  filter: none;
  opacity: 1;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.news-thumb {
  height: 200px;
  background: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.news-body { padding: 24px; }

.news-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}

/* Gallery page */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.gallery-filter {
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-50);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.45s ease;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(13,59,31,0.92), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* News page */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.news-page-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-page-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.news-page-img {
  position: relative;
  min-height: 220px;
  background: var(--green-50);
  overflow: hidden;
}

.news-page-card.featured .news-page-img { min-height: 320px; }

.news-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-page-card:hover .news-page-img img { transform: scale(1.05); }

.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,59,31,0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.news-page-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.news-page-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-page-body p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Page header */
.page-header {
  margin-top: var(--header-h);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 70px 0;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.breadcrumb a:hover { color: var(--gold-light); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.contact-item a:hover { color: var(--green-700); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(34,160,74,0.15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-container {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-detail-img img { width: 100%; }

.product-specs {
  margin-top: 28px;
}

.product-specs h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 16px;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.95rem;
}

.spec-list li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
}

/* Footer */
.footer {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(34,160,74,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 20%, rgba(201,162,39,0.1) 0%, transparent 40%),
    linear-gradient(180deg, #0a2e18 0%, #071f10 100%);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--green-600), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.55fr 1.25fr;
  gap: 36px 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1f1c;
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-products {
  display: block;
  columns: 2;
  column-gap: 20px;
}

.footer-products li {
  margin-bottom: 9px;
  break-inside: avoid;
}

.footer-products a {
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.footer-contact a {
  color: rgba(255,255,255,0.85);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* Privacy / Company Policy */
.policy-page {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(34, 98, 54, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(34, 98, 54, 0.05), transparent 50%),
    var(--white);
}

.policy-wrap {
  max-width: 900px;
}

.policy-intro {
  margin-bottom: 40px;
}

.policy-blocks {
  display: grid;
  gap: 22px;
}

.policy-block {
  padding: 28px 30px 26px;
  border-left: 3px solid var(--green-700);
  background: linear-gradient(90deg, var(--green-50), transparent 85%);
}

.policy-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: 14px;
}

.policy-block ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.policy-block li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 0.98rem;
}

.policy-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
}

.policy-closing {
  margin-top: 40px;
  padding: 24px 28px;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.02rem;
  border-top: 1px solid rgba(34, 98, 54, 0.15);
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-page-card.featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .vmv-grid, .testimonials-grid, .news-grid,
  .gallery-grid, .news-page-grid { grid-template-columns: 1fr; }
  .news-page-card.featured { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-products { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-image-badge { right: 10px; bottom: -10px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
