:root{
  --accent: #7fb069;
  --dark: #2d5016;
  --light: rgba(255,255,255,0.95);
  --shadow: 0 2px 20px rgba(0,0,0,0.1);

  --green-light: #f0f8f0;
  --green-mid: #7fb069;
  --green-dark: #2d5016;
  --white: #ffffff;
}

/* Body */
* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin:0; padding:0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #00ccff;
  -webkit-font-smoothing:antialiased;
}

/* Navbar Section */
nav, .navbar, #navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;               
  background: transparent; 
  padding: 0 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;       
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;          
  cursor: pointer;
}

.logo img {
  height: 100px;   
  width: auto;
  display: block;
  margin-top: 0; 
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;     
  list-style: none;      
}

.nav-links li {
  list-style: none; 
}

.nav-link {
  color: white;                 
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.4rem 0.2rem;
  transition: color 0.25s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before { 
  width: 100%; 
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);   
  border-radius: 2px;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: var(--white, #fff); 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
    gap: 2rem;
    transition: right 0.32s ease;
    z-index: 999;
  }
  .nav-links .nav-link {
    color: var(--dark, #2d5016);   
  }
  .nav-links.active { right: 0; }
  .mobile-menu-toggle { display: flex; }
}


/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.12;
  font-weight: 800;
}

.subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  opacity: .95;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 90%;
  margin-bottom: 1.6rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #2d5016, #4a6741);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #2d5016;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;         
  }
  .hero-bg-video {
    object-fit: cover;      
    width: 100%;
    height: 100%;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1rem;
  }
}

.section { 
  padding:5rem 0; 
}

.container { 
  max-width:1200px; 
  margin:0 auto; 
  padding:0 1.25rem; 
  position:relative; 
  z-index:2; 
}

.section-header { 
  text-align:center; 
  margin-bottom:3.5rem; 
}

.section-header h2 { 
  font-size:2.6rem; 
  color:#2d5016; 
  margin-bottom:.6rem; 
}
.section-header p { 
  color:#666; 
  font-size:1.1rem; 
}

.animate-fade-in, .reveal { 
  opacity:0; 
  transform: translateY(24px); 
  transition: all .6s ease; 
}

.animate-fade-in.in-view, .reveal.in-view { 
  opacity:1; 
  transform:translateY(0); 
}

@keyframes fadeInUp { 
  to { 
    opacity:1; 
    transform: translateY(0); 
  } 
}

/* Why Section */
#why-tallow {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: #2d5016;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #4d5f60;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.benefit-card {
    perspective: 1000px;
    height: 400px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.benefit-card:hover .card-inner {
    transform: rotateY(180deg);
}

.benefit-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-front {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    color: #2d5016;
}

.card-back {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  color: #2d5016;
  transform: rotateY(180deg);
  overflow-y: auto;
}

.benefit-icon {
    font-size: 70px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.card-front h3,
.card-back h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-front p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.card-back p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-back ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
    text-align: left;
    width: 100%;
}

.card-back ul li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-back ul li:last-child {
    border-bottom: none;
}

.card-back ul li strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 10px;
    }
    
    .benefit-card {
      height: 380px;
    }
    
    .section-header h2 {
      font-size: 32px;
    }
    
    .card-front,
    .card-back {
      padding: 30px 20px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Products Section */
.products {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
  color: #2d5016;
}

.products .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.products .section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.products .section-header p {
  font-size: 1.1rem;
  color: rgba(45,80,22,0.85);
}

.coming-soon {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg,#7fb069,#a8d5ba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 2.5s linear infinite;
  text-align: center;
}

@keyframes shimmerText {
  0% { background-position: -500px 0; }
  100% { background-position: 500px 0; }
}

.notification-section {
  margin-top: 2rem;
  text-align: center;
}

.notification-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.notification-form input {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(45,80,22,0.2);
  outline: none;
  min-width: 250px;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.notification-form input:focus {
  box-shadow: 0 6px 18px rgba(127,176,105,0.25);
  border-color: var(--accent);
}

.notify-btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all .3s ease;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.success-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: #2d5016;
  opacity: 0;
  transition: opacity .6s ease;
}

.success-message.active {
  opacity: 1;
}

.products .floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.85);
  padding: .5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: floatSmall 6s ease-in-out infinite alternate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.floating-element:hover {
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.product-preview {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.product-card {
  width: 280px;
  height: 350px;
  perspective: 1200px;
  position: relative;
  transition: transform .3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card .card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  border-radius: 16px;
}

.product-card:hover .card-inner {
  transform: rotateY(180deg);
}

.product-card .card-front,
.product-card .card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
  text-align: center;
}

.product-card .card-front {
  background: linear-gradient(145deg,#fff,#f0f8f0);
  color: #2d5016;
  transition: background .3s ease;
}

.product-card .card-front:hover {
  background: linear-gradient(145deg,#f0fff0,#e0f5e8);
}

.product-card .card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg,#eaf2e3,#d4f2e3);
  color: #2d5016;
}

@keyframes floatSmall {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* Mission Section */
.mission{ 
  padding:6rem 0; 
  background: linear-gradient(135deg,#a8d5ba 0%,#7fb069 100%); 
  color: var(--dark); 
  position:relative; 
  overflow:hidden; 
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
  animation: float 12s infinite ease-in-out;
}

.shape-1 { 
  width: 220px; 
  height: 220px; 
  top: -60px; 
  left: -40px; 
  animation-delay: 0s; 
}
.shape-2 { 
  width: 160px; 
  height: 160px; 
  bottom: 10%; 
  right: 15%; 
  animation-delay: -5s; 
}

.shape-3 { 
  width: 120px; 
  height: 120px; 
  top: 30%; 
  right: -40px; 
  animation-delay: -8s; 
}

.mission-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mission-title {
  font-size: 2.6rem;
  font-weight: 800;
  display: inline-block;
  position: relative;
  letter-spacing: 1px;
}

.mission-title::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -12px;
  width: 80%;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: shimmer 3s linear infinite;
}

.mission-steps {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.mission-step {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}

.mission-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.12);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  transition: transform .4s ease;
}

.mission-step:hover .step-icon {
  transform: scale(1.2) rotate(-5deg);
}

.step-content h3 {
  margin-bottom: .5rem;
  font-weight: 700;
}

.mission-quote {
  background: rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 16px;
  max-width: 820px;
  margin: 0 auto;
  color: var(--dark);
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.mission-quote::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: glowBorder 5s linear infinite;
}

.mission-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}

.mission-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: .95rem;
  opacity: 0.85;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes glowBorder {
  0% { opacity: .6; }
  50% { opacity: 1; }
  100% { opacity: .6; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sustainability Section */
.sustainability { 
  padding:6rem 0; 
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
  position:relative; 
  overflow: hidden;
}

.sustainability-grid{ 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); 
  gap:26px; 
}

.sustainability-item{ 
  perspective:1000px; 
  min-height:360px; 
  position:relative; 
  transition: transform .35s ease, box-shadow .35s ease; 
}

.sustainability-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sustainability-item .card-inner {
  width: 100%;
  height: 100%;
  transition: transform .35s ease;
  border-radius: 16px;
  overflow: hidden;
}

.sustainability-item .card-front,
.sustainability-item .card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  backface-visibility: hidden;
  border-radius: 16px;
  text-align: center;
}

.sustainability-item .card-front {
  background: #fff;
  color: var(--dark);
  transition: background .3s ease;
}

.sustainability-item .card-front:hover {
  background: linear-gradient(135deg, #ffffff, #f4fdf6);
}

.sustainability-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
  transition: transform .4s ease;
}

.sustainability-item:hover .sustainability-icon {
  transform: scale(1.2) rotate(-5deg);
}

.impact-metric {
  background: rgba(127,176,105,0.08);
  padding: 12px;
  border-radius: 14px;
  text-align: center;
  transition: transform .3s ease, background .3s ease;
}

.sustainability-item:hover .impact-metric {
  transform: scale(1.05);
  background: rgba(127,176,105,0.12);
}

.metric-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
}

.metric-label {
  font-size: .85rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Testimonials — focused CSS
   ========================= */

:root {
  --t-accent: var(--accent, #7fb069);
  --t-dark: var(--dark, #2d5016);
  --t-muted: #6b7b66;
  --t-card-radius: 20px;
  --t-max-w: 840px;
  --t-dot-size: 12px;
  --t-shadow-soft: 0 10px 24px rgba(19,25,18,0.06);
}

.testimonials-section {
  
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9f3ec 100%);
  text-align: center;
}

.testimonials-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2d5016;
}

.testimonials-subtitle {
  margin-top: .5rem;
  color: #6b8f71;
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #f0f8f0);
  border: 1px solid rgba(127,176,105,0.35);
  border-radius: 18px;
  padding: 26px;
  text-align: left;
  transition: all .3s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(127,176,105,0.28);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #7fb069;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: #2d5016;
}

.testimonial-role {
  font-size: .85rem;
  color: #6b8f71;
}

.testimonial-text {
  font-size: .95rem;
  color: #3d3d3d;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: #eaf2ea;
  color: #1a1a1a;
  padding: 5rem 0;
  text-align: center;
}

.contact h2 {
  color: #2e4b2e;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: #4a4a4a;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.input-group {
  position: relative;
}

.form-input,
select.form-input,
textarea.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #1a1a1a;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus,
select.form-input:focus,
textarea.form-input:focus {
  border-color: #5c946e;
  background: #f9fff9;
  outline: none;
}

label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #fff;
  padding: 0 4px;
}

.form-input:focus + label,
.form-input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  color: #5c946e;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.contact .btn-primary {
  background: #fff;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact .btn-primary:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.form-status {
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #1e4620;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #842029;
}

.error-message {
  color: #842029;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.loading {
  display: none;
}

.loading.active {
  display: inline-block;
}


/* Feedback Form */
.feedback-card {
  background: linear-gradient(180deg, #fffdf9 0%, #fff9f3 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px #2d5016;
  max-width: 480px;
  margin: 50px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #2d5016;
}

.feedback-title {
  text-align: center;
  font-size: 1.5rem;
  color: #2d5016;
  margin-bottom: 25px;
  font-weight: 700;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form .input-group {
  position: relative;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #d6c7b0;
  background-color: #fffdfb;
  font-size: 1rem;
  color: #2d5016;
  transition: all 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #2d5016;
  box-shadow: 0 0 8px #2d5016;
  outline: none;
}

.feedback-form textarea {
  resize: none;
  min-height: 100px;
}

.btn-submit {
  background-color: #2d5016;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-submit:hover {
  background-color: #2d5016;
  transform: scale(1.03);
}

.feedback-message {
  margin-top: 20px;
  background: #e8f8ec;
  border: 1px solid #b8e1c9;
  border-radius: 12px;
  padding: 15px;
  color: #2d5016;
  text-align: center;
  font-weight: 600;
  transition: opacity 0.4s ease;
}

.hidden {
  display: none;
}

/* Footer Section */
footer {
  background: linear-gradient(180deg, #1a2e0d 0%, #132208 100%);
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #9FE870;
  margin-bottom: .5rem;
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 36px;
  height: 2px;
  background: #9FE870;
  border-radius: 2px;
}

.footer-section a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-section a:hover {
  color: #fff;
  transform: translateX(4px);
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-icons a img.social-img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.95);
}

.social-icons a:hover {
  background: #6fbf8e; 
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(111, 191, 142, 0.25);
}

.social-icons a:hover img.social-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.social-icons a:nth-child(1) { 
  background: rgba(250, 160, 180, 0.15); 
}

.social-icons a:nth-child(2) { 
  background: rgba(85, 220, 100, 0.15); 
}

.social-icons a:nth-child(3) { 
  background: rgba(120, 180, 255, 0.15); 
} 

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 3rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px; 
  height: 44px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  background: #9FE870;
  color: #132208;
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

