@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green: #25a14d;
  --green-dark: #12632b;
  --green-deep: #062b14;
  --leaf: #e8f5ec;
  --ink: #0f1714;
  --graphite: #38423d;
  --muted: #6b7a72;
  --line: #d1dfd6;
  --paper: #f4f8f5;
  --white: #ffffff;
  --gold: #d4a042;
  --shadow-sm: 0 4px 12px rgba(6, 43, 20, 0.05);
  --shadow-md: 0 12px 32px rgba(6, 43, 20, 0.08);
  --shadow-lg: 0 24px 64px rgba(6, 43, 20, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  color: var(--ink); 
  background: var(--white); 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { display: block; max-width: 100%; border-radius: var(--radius-sm); }
p, h1, h2, h3 { overflow-wrap: anywhere; }

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 90px;
  padding: 12px clamp(24px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.brand img { 
  width: 160px; 
  height: auto;
  object-fit: contain;
  border-radius: 8px; 
  transition: transform 0.3s ease; 
}
.brand:hover img { transform: scale(1.05); }

.nav { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: clamp(20px, 2.5vw, 40px); 
  font-size: 15px; 
  font-weight: 600; 
  color: var(--graphite); 
}
.nav a { position: relative; padding: 10px 0; }
.nav a::after { 
  content: ""; 
  position: absolute; 
  left: 0; right: 0; bottom: 0px; 
  height: 2px; 
  background: var(--green); 
  transform: scaleX(0); 
  transform-origin: center; 
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav a:hover, .nav a.active { color: var(--green-dark); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: transparent; border: none; font-family: inherit;
  font-size: 15px; font-weight: 600; color: var(--graphite);
  cursor: pointer; padding: 10px 0; display: flex; align-items: center; gap: 6px;
  position: relative; transition: color 0.3s ease;
}
.nav-dropdown > button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown:hover > button { color: var(--green-dark); }
.nav-dropdown:hover > button::after { transform: scaleX(1); }
.nav-dropdown > button svg { transition: transform 0.3s ease; }
.nav-dropdown:hover > button svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: -20px; background: var(--white);
  min-width: 220px; border-radius: 20px; box-shadow: 0 20px 40px rgba(6,43,20,0.1);
  padding: 16px; display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.05); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { padding: 10px 16px !important; border-radius: 12px; color: var(--graphite) !important; font-weight: 500 !important; }
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--paper); color: var(--green-dark) !important; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { 
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark); 
  font-weight: 700; 
  font-size: 15px;
  background: var(--leaf);
  padding: 10px 20px;
  border-radius: 100px;
}
.header-phone:hover {
  background: var(--green-dark);
  color: var(--white);
}

.language-switch { 
  display: inline-flex; 
  padding: 4px; 
  border-radius: 100px; 
  background: var(--paper); 
}
.language-switch button { 
  width: 44px; height: 32px; 
  border: 0; border-radius: 100px; 
  background: transparent; 
  color: var(--muted); 
  cursor: pointer; 
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
}
.language-switch button.active { 
  color: var(--white); 
  background: var(--green-dark); 
  box-shadow: var(--shadow-sm);
}

.menu-toggle { 
  display: none; 
  width: 48px; height: 48px; 
  border: none; 
  border-radius: 12px; 
  background: var(--paper); 
  cursor: pointer;
}
.menu-toggle span { 
  display: block; width: 22px; height: 2px; 
  margin: 5px auto; 
  background: var(--ink); 
  transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px clamp(24px, 6vw, 80px) 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  z-index: 1;
  overflow: hidden;
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slider .slide.active .hero-bg {
  animation: kenBurns 8s ease forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-slider .slide.active .hero-inner > * {
  animation: slideFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.hero-slider .slide.active .hero-inner h1 { animation-delay: 0.2s; }
.hero-slider .slide.active .hero-inner p:not(.eyebrow) { animation-delay: 0.4s; }
.hero-slider .slide.active .hero-inner .hero-actions { animation-delay: 0.6s; }

@keyframes slideFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-slider .hero-bg,
.hero-slider .hero-shade {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-slider .hero-bg { object-fit: cover; border-radius: 0; }
.hero-slider .hero-shade {
  width: 50%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask-image: linear-gradient(90deg, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, black 50%, transparent 100%);
  z-index: 1;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px; left: clamp(24px, 6vw, 80px);
  z-index: 10;
  display: flex; gap: 12px;
}
.dot {
  width: 14px; height: 14px;
  border-radius: 50%; border: 2px solid var(--green-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.2);
}

/* Slider Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(0,0,0,0.06);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 0.1s linear;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.eyebrow { 
  display: inline-block;
  margin: 0 0 20px; 
  padding: 6px 16px;
  background: rgba(37, 161, 77, 0.1);
  color: var(--green-dark); 
  font-size: 14px; 
  font-weight: 800; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  border-radius: 100px;
}

h1 { 
  margin: 0; 
  font-size: clamp(48px, 6vw, 82px); 
  line-height: 1.05; 
  letter-spacing: -0.02em; 
  font-weight: 800;
  color: var(--green-deep);
}
.hero-inner p:not(.eyebrow), .page-hero p:not(.eyebrow) { 
  max-width: 700px; 
  margin: 30px 0 0; 
  color: var(--graphite); 
  font-size: clamp(18px, 2vw, 22px); 
  line-height: 1.6; 
  font-weight: 400;
}




.hero-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { 
  color: var(--white); 
  background: var(--green-dark); 
  box-shadow: 0 10px 24px rgba(18, 99, 43, 0.3); 
}
.btn.primary:hover {
  background: var(--green);
  box-shadow: 0 16px 32px rgba(18, 99, 43, 0.4); 
}
.btn.ghost { 
  color: var(--green-dark); 
  border-color: var(--green-dark); 
  background: transparent; 
}
.btn.ghost:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn.light { color: var(--green-deep); background: var(--white); box-shadow: var(--shadow-sm); }
.btn.light:hover { background: var(--leaf); }

/* Typography Base */
.section { padding: clamp(80px, 10vw, 150px) clamp(24px, 6vw, 80px); }
.section-head { max-width: 900px; margin-bottom: 50px; }
h2 { margin: 0; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; color: var(--green-deep); }
h3 { margin: 0; font-size: 26px; line-height: 1.3; font-weight: 700; color: var(--green-deep); }
.editorial h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.2; }
.editorial { 
  display: grid; 
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); 
  gap: clamp(40px, 8vw, 100px); 
  background: linear-gradient(135deg, var(--paper) 0%, #ffffff 100%); 
  align-items: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 80px);
  margin: 0 clamp(24px, 6vw, 80px) 100px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(6,43,20,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}
.editorial > p { 
  position: relative;
  margin: 0; 
  color: var(--graphite); 
  font-size: 20px; 
  line-height: 1.6; 
  font-weight: 400; 
  padding-left: 28px;
}
.editorial > p::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--green);
  border-radius: 4px;
}

/* Product Cards */
.product-strip { background: var(--white); }
.home-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.image-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(6,43,20,0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.image-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,43,20,0.95) 0%, rgba(6,43,20,0.3) 60%, transparent 100%); transition: opacity 0.5s ease; z-index: 0; }
.image-card:nth-child(1) { background-image: url('assets/cattle-feed.png'); }
.image-card:nth-child(2) { background-image: url('assets/sheep-feed.png'); }
.image-card:nth-child(3) { background-image: url('assets/poultry-feed.png'); }

.image-card > * { position: relative; z-index: 1; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease; }
.image-card h3 { color: var(--white); margin: 0; font-size: 32px; }
.image-card p { color: rgba(255,255,255,0.85); line-height: 1.6; margin: 16px 0 0; font-size: 17px; }

.image-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(6,43,20,0.2); border-color: rgba(37,161,77,0.3); }
.image-card:hover::before { opacity: 0.9; background: linear-gradient(to top, rgba(6,43,20,0.95) 0%, rgba(6,43,20,0.7) 100%); }

.image-card span { 
  position: absolute;
  top: 32px; left: 32px;
  width: 56px; height: 56px; 
  display: flex; align-items: center; justify-content: center; 
  border-radius: 16px; 
  color: var(--white); 
  background: var(--green-dark); 
  font-weight: 800; 
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(6,43,20,0.2);
  z-index: 2;
}

/* Split Sections */
.split-feature { display: grid; grid-template-columns: minmax(450px, 0.9fr) minmax(0, 1fr); gap: clamp(60px, 8vw, 120px); align-items: center; background: var(--white); }
.split-media img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; border-radius: 32px; box-shadow: 0 40px 80px rgba(6,43,20,0.15); border: 1px solid rgba(0,0,0,0.05); }
.split-copy p:not(.eyebrow), .founder-bio p, .story-copy p, .ration-aside p, .address-panel p { color: var(--graphite); font-size: 18px; line-height: 1.8; margin-top: 24px;}
.text-link { 
  display: inline-flex; 
  align-items: center;
  margin-top: 32px; 
  color: var(--green-dark); 
  font-weight: 700; 
  font-size: 16px;
  position: relative;
}
.text-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.text-link:hover::after { transform: translateX(5px); }
.text-link::before {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.text-link:hover::before { transform: scaleX(1); }

/* CTA */
.cta-band { 
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; 
  padding: 80px clamp(24px, 6vw, 80px); 
  color: var(--white); 
  background: var(--green-deep); 
  border-radius: 32px;
  margin: 0 clamp(24px, 6vw, 80px) 100px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(6,43,20,0.15);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 161, 77, 0.3), transparent 60%);
}
.cta-band p { position: relative; z-index: 1; max-width: 900px; margin: 0; font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
.cta-band .btn { position: relative; z-index: 1; }

/* Subpages Heroes */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 140px clamp(24px, 6vw, 80px) 120px;
  color: var(--white);
  background-color: var(--green-deep);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 20, 0.95), rgba(6, 43, 20, 0.4));
}
.page-hero > div { min-width: 0; position: relative; z-index: 2;}
.page-hero .eyebrow { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.page-hero h1 { max-width: 1050px; font-size: clamp(36px, 5vw, 56px); color: var(--white); }
.page-hero p:not(.eyebrow) { color: rgba(255,255,255,0.85); font-size: 22px;}

.about-hero { background-image: url("assets/hero-farm.png"); }
.products-hero { background-image: url("assets/cattle-feed.png"); }
.media-hero { background-image: url("assets/founder-yakup-aslan.jpeg"); }
.contact-hero { background-image: url("assets/hero-farm.png"); }

/* About Page */
.story-grid { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 100px); background: var(--white); padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); border-radius: 32px; box-shadow: 0 40px 100px rgba(6,43,20,0.06); margin-top: -80px; position: relative; z-index: 10; margin-left: clamp(16px, 4vw, 60px); margin-right: clamp(16px, 4vw, 60px); border: 1px solid rgba(0,0,0,0.03); }
.story-lead h2 { font-size: clamp(36px, 4vw, 54px); color: var(--green-deep); margin-bottom: 24px; line-height: 1.1; letter-spacing: -0.02em; }
.story-copy p { font-size: 19px; line-height: 1.8; color: var(--graphite); margin-bottom: 24px; }

.founder-section { display: grid; grid-template-columns: minmax(350px, 0.6fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 120px); align-items: center; background: linear-gradient(135deg, var(--paper) 0%, #ffffff 100%); padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px); position: relative; overflow: hidden; }
.founder-section::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 30vw; background: var(--leaf); opacity: 0.3; border-radius: 100px 0 0 100px; z-index: 0; }
.founder-photo { position: relative; z-index: 2; }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; box-shadow: 0 30px 60px rgba(6,43,20,0.12); border: 1px solid rgba(0,0,0,0.05); }
.founder-bio { position: relative; z-index: 2; }
.founder-bio h2 { font-size: 42px; color: var(--green-deep); margin: 8px 0 24px; line-height: 1.1; letter-spacing: -0.02em; }
.founder-bio > p { font-size: 18px; line-height: 1.8; color: var(--muted); margin-bottom: 40px; }
.role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; padding-top: 40px; border-top: 1px solid rgba(37,161,77,0.2); }
.role-grid article { position: relative; }
.role-grid strong { display: block; font-size: 20px; color: var(--green-dark); font-weight: 800; margin-bottom: 8px; }
.role-grid span { display: inline-block; font-size: 13px; color: var(--green-deep); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; background: var(--leaf); padding: 4px 12px; border-radius: 100px; }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: linear-gradient(145deg, var(--green-dark) 0%, #081a0e 100%); padding: clamp(80px, 10vw, 120px) clamp(40px, 8vw, 100px); border-radius: 32px; margin: clamp(24px, 6vw, 80px); box-shadow: 0 40px 80px rgba(6,43,20,0.2); position: relative; overflow: hidden; }
.values::after { content: ''; position: absolute; left: -10%; top: -50%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(37,211,102,0.1) 0%, transparent 70%); }
.values article { position: relative; z-index: 2; padding: 48px; background: rgba(255,255,255,0.03); border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); transition: transform 0.3s ease; }
.values article:hover { transform: translateY(-8px); background: rgba(255,255,255,0.05); }
.values h3 { color: var(--leaf); font-size: 36px; margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.values h3::before { content: ''; display: block; width: 40px; height: 2px; background: var(--green); }
.values p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.8; margin-top: 0; margin-bottom: 20px; }
.values p:last-child { margin-bottom: 0; }

/* About Vision */
.about-vision { background: var(--paper); padding-top: 40px; }
.about-vision-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 100px); align-items: center;
  background: var(--white);
  padding: clamp(60px, 8vw, 80px); border-radius: 32px;
  box-shadow: 0 30px 80px rgba(6,43,20,0.06); border: 1px solid rgba(0,0,0,0.04);
}
.about-vision-head h2 { font-size: clamp(36px, 4vw, 52px); color: var(--green-deep); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; }
.about-vision-head > p { font-size: 20px; line-height: 1.7; color: var(--muted); margin: 0; }
.vision-label { font-size: 18px; font-weight: 800; color: var(--green-dark); margin: 0 0 24px; }
.vision-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.vision-item { display: flex; align-items: center; gap: 16px; font-size: 18px; font-weight: 600; color: var(--ink); padding: 20px 24px; background: rgba(37,161,77,0.03); border-radius: 20px; border: 1px solid rgba(37,161,77,0.1); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.vision-item:hover { transform: translateX(8px); background: var(--white); border-color: rgba(37,161,77,0.3); box-shadow: 0 12px 30px rgba(6,43,20,0.08); }
.vision-item svg { flex-shrink: 0; width: 28px; height: 28px; }
.vision-closing { font-size: 18px; color: var(--muted); line-height: 1.7; margin: 0; font-style: italic; }

/* About Brand Message New Premium Layout */
.about-brand-msg { background: var(--paper); padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px); }
.about-brand-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 80px); align-items: center; }
.about-brand-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-brand-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; }
.brand-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,161,77,0.2) 0%, transparent 100%); mix-blend-mode: multiply; }
.about-brand-content { display: flex; flex-direction: column; gap: 24px; }
.brand-icon { width: 64px; height: 64px; background: var(--leaf); color: var(--green); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.about-brand-content h2 { font-size: clamp(36px, 5vw, 48px); color: var(--green-deep); margin: 0; line-height: 1.1; letter-spacing: -0.02em; }
.brand-text { display: flex; flex-direction: column; gap: 16px; }
.brand-text p { font-size: 18px; line-height: 1.7; color: var(--graphite); margin: 0; }
.about-brand-content blockquote {
  position: relative; margin: 16px 0 0; padding: 24px 32px;
  font-size: 20px; font-weight: 600; font-style: italic; line-height: 1.5;
  color: var(--green-dark); background: var(--white);
  border-radius: 16px; border-left: 4px solid var(--green); box-shadow: var(--shadow-sm);
}

/* Premium Vision Grid Layout */
.premium-vision { background: var(--white); padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px); }
.premium-vision-header { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.premium-vision-header h2 { font-size: clamp(36px, 5vw, 56px); color: var(--green-deep); margin: 16px 0 24px; line-height: 1.1; letter-spacing: -0.02em; }
.premium-vision-header p { font-size: 20px; line-height: 1.6; color: var(--graphite); margin: 0; }
.premium-vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.vision-card { background: var(--paper); border-radius: 24px; padding: 40px 32px; transition: all 0.3s ease; border: 1px solid transparent; }
.vision-card:hover { transform: translateY(-8px); background: var(--white); border-color: rgba(37,161,77,0.2); box-shadow: var(--shadow-md); }
.v-icon { width: 56px; height: 56px; background: var(--white); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(37,161,77,0.1); }
.vision-card:hover .v-icon { background: var(--green); color: var(--white); }
.vision-card h3 { font-size: 22px; color: var(--green-deep); margin: 0 0 16px; line-height: 1.3; }
.vision-card p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }
.premium-vision-footer { max-width: 800px; margin: 60px auto 0; text-align: center; font-size: 22px; font-weight: 600; color: var(--green-dark); line-height: 1.5; padding: 32px; background: rgba(37,161,77,0.05); border-radius: 20px; }

/* About CTA Band */
.about-cta-band { flex-direction: column; align-items: center; text-align: center; gap: 32px; justify-content: center; padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px); }
.about-cta-text { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.about-cta-text h2 { font-size: clamp(32px, 5vw, 56px); color: var(--white); margin: 0 0 24px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.cta-band.about-cta-band p { font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,0.85); margin: 0; max-width: 800px; font-weight: 400; line-height: 1.6; letter-spacing: normal; }

.catalogue { display: flex; flex-direction: column; gap: 60px; padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 80px); background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%); }
.catalogue-intro { max-width: 700px; }
.catalogue-intro h2 { font-size: clamp(32px, 4vw, 48px); color: var(--green-deep); margin: 0 0 16px; }
.catalogue-intro p { font-size: 18px; color: var(--muted); line-height: 1.7; margin: 0; }
.catalogue-block {
  display: grid; grid-template-columns: minmax(350px, 0.4fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); align-items: stretch;
  padding: clamp(40px, 6vw, 60px); border-radius: 32px; background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalogue-block:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(6,43,20,0.06); border-color: rgba(37,161,77,0.2); }
.cat-info { display: flex; flex-direction: column; }
.cat-header-top { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.cat-number { width: 56px; height: 56px; border-radius: 16px; background: var(--green-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--white); box-shadow: 0 12px 24px rgba(6, 43, 20, 0.15); }
.cat-badge { padding: 8px 16px; background: rgba(37,161,77,0.1); color: var(--green-dark); border-radius: 100px; font-weight: 700; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid rgba(37,161,77,0.2); }
.catalogue-block h2 { font-size: clamp(32px, 4vw, 42px); margin: 0 0 16px; color: var(--green-deep); line-height: 1.15; letter-spacing: -0.02em; }
.catalogue-block p { color: var(--muted); line-height: 1.7; font-size: 17px; margin: 0 0 32px; }
.cat-benefits { display: flex; flex-direction: column; gap: 16px; padding-top: 32px; border-top: 1px solid var(--line); margin-top: auto; }
.cat-benefits span { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; color: var(--ink); }
.cat-benefits svg { color: var(--green); flex-shrink: 0; }
.cat-list-wrapper { background: var(--paper); padding: clamp(24px, 4vw, 40px); border-radius: 24px; border: 1px solid rgba(0,0,0,0.03); display: flex; }
.catalogue-block ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; width: 100%; align-content: start; margin: 0; padding: 0; list-style: none; }
.catalogue-block ul li { position: relative; padding: 14px 16px 14px 44px; background: var(--white); border-radius: 12px; font-weight: 600; font-size: 15px; color: var(--ink); transition: all 0.3s ease; border: 1px solid var(--line); }
.catalogue-block ul li:hover { border-color: rgba(37,161,77,0.3); box-shadow: 0 10px 20px rgba(0,0,0,0.03); color: var(--green-dark); transform: translateX(4px); }
.catalogue-block ul li::before { content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--green); border-radius: 50%; transition: all 0.3s ease; }
.catalogue-block ul li:hover::before { box-shadow: 0 0 0 4px rgba(37,211,102,0.2); }
.catalogue-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 48px; background: linear-gradient(145deg, var(--green-dark) 0%, #0A1E14 100%); border-radius: 24px; color: var(--white); margin-top: 20px; }
.catalogue-cta p { margin: 0; font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.5; }
.catalogue-cta .btn { white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
/* Gallery */
.media-intro { background: var(--paper); padding-bottom: 0; }
.media-intro-text { max-width: 700px; }
.media-intro-text h2 { font-size: clamp(32px, 4vw, 48px); color: var(--green-deep); margin: 0 0 16px; }
.media-intro-text p { font-size: 18px; color: var(--muted); line-height: 1.7; margin: 0; }

.gallery-page { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; background: var(--paper); padding-top: 40px; }
.gallery-page figure { 
  margin: 0; border-radius: 20px; overflow: hidden; background: var(--green-deep); position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; cursor: pointer;
}
.gallery-page figure:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(6,43,20,0.2); }
.gallery-page img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; border-radius: 0; display: block; }
.gallery-page figure:hover img { transform: scale(1.08); opacity: 0.7; }
.gallery-page figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 24px 24px; background: linear-gradient(to top, rgba(6,43,20,0.9) 0%, transparent 100%); color: var(--white); font-weight: 700; font-size: 17px; transform: translateY(10px); opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-page figure:hover figcaption { transform: translateY(0); opacity: 1; }

/* Ration Form Elements */
.ration-layout { display: grid; grid-template-columns: minmax(350px, 0.7fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 100px); background: linear-gradient(135deg, var(--leaf), #fff 60%); }
.ration-system-page { background: var(--paper); }
.ration-topbar { padding: 20px clamp(24px, 6vw, 80px); display: flex; justify-content: space-between; align-items: center; background: var(--white); box-shadow: var(--shadow-sm); }
.ration-logo img { width: 150px; height: auto; mix-blend-mode: multiply; object-fit: contain; }
.ration-nav { display: flex; gap: 24px; font-weight: 600; }
.ration-nav a:hover { color: var(--green); }
.ration-phone { font-weight: 700; color: #25d366; }

.ration-system-hero { background: var(--green-deep); padding: 100px clamp(24px, 6vw, 80px); text-align: center; color: var(--white); }
.ration-system-hero h1 { color: var(--white); font-size: 48px; }
.ration-system-hero p { font-size: 20px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 20px auto 0; }
.ration-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: -50px auto 40px; position: relative; z-index: 10;}
.ration-benefits article { background: var(--white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); text-align: center; }
.ration-benefits span { font-size: 40px; display: block; margin-bottom: 16px; }
.ration-benefits strong { font-size: 18px; color: var(--green-deep); display: block; margin-bottom: 8px;}
.ration-benefits p { color: var(--muted); font-size: 14px; margin: 0; }

.ration-system-wrap { max-width: 900px; margin: 0 auto; padding: 40px 24px 100px; }
.ration-panel { background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 30px; border: 1px solid var(--line); }
.step-title { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.step-title span { width: 40px; height: 40px; background: var(--green-dark); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.step-title h2 { font-size: 28px; margin: 0; }

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
label { display: grid; gap: 8px; color: var(--green-deep); font-size: 15px; font-weight: 700; margin-bottom: 24px; position: relative; }
label span { display: block; }
input, select, textarea { 
  width: 100%; border: 2px solid transparent; border-radius: 12px; 
  background: var(--paper); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; outline: 0; 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type="number"] {
  -moz-appearance: textfield;
}
input, select { height: 56px; padding: 0 16px; }
textarea { resize: vertical; padding: 16px; line-height: 1.6; }
input:hover, select:hover, textarea:hover { background: #E9F0EB; }
input:focus, select:focus, textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 4px 12px rgba(37, 161, 77, 0.15); }

/* Choice Grids (Radio / Checkboxes) */
fieldset { border: none; padding: 0; margin: 0 0 30px; }
legend { font-weight: 700; color: var(--green-deep); margin-bottom: 16px; font-size: 16px; }
.inline-choice, .animal-choice, .target-grid { display: grid; gap: 16px; }
.inline-choice { grid-template-columns: repeat(2, 1fr); }
.animal-choice { grid-template-columns: repeat(3, 1fr); }
.target-grid { grid-template-columns: repeat(2, 1fr); }

fieldset label { 
  display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; cursor: pointer; margin: 0; padding: 16px; 
  border: 2px solid transparent; border-radius: 12px; background: var(--paper); 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--graphite); text-align: center;
}
fieldset label:hover { background: #E9F0EB; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
fieldset label:has(input:checked) { 
  border-color: var(--green); background: rgba(37, 211, 102, 0.05); 
  color: var(--green-dark); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15); 
}
input[type="radio"], input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

/* Feed Table */
.feed-table { display: grid; gap: 10px; margin-bottom: 30px; }
.feed-head { display: grid; grid-template-columns: 2fr 100px 1.5fr; gap: 16px; padding: 0 16px 12px; border-bottom: 2px solid var(--line); color: var(--green-deep); font-weight: 700; font-size: 14px; }
.feed-row { display: grid; grid-template-columns: 2fr 100px 0.75fr 0.75fr; gap: 12px; align-items: center; background: var(--paper); padding: 10px 16px; border-radius: 12px; transition: all 0.3s; }
.feed-row:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.feed-row > span { font-weight: 700; color: var(--graphite); }
.feed-row input[type="number"] { height: 44px; margin-bottom: 0; padding: 0 10px; font-size: 14px;}
.feed-row label { 
  margin: 0; padding: 8px; font-size: 14px; border-radius: 8px; 
  background: var(--white); border: 2px solid transparent; 
  cursor: pointer; text-align: center; color: var(--muted); 
  font-weight: 600; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.feed-row label:hover { background: #E9F0EB; }
.feed-row label:has(input:checked) {
  border-color: var(--green);
  background: rgba(37, 211, 102, 0.05);
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
}

/* Submit Band */
.ration-submit-band { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: space-between; border: 2px solid var(--green); margin-top: 20px;}
.ration-submit-band h2 { font-size: 28px; margin: 0 0 10px; color: var(--green-deep); }
.ration-submit-band p { color: var(--muted); margin: 0; font-size: 16px; max-width: 400px; line-height: 1.6; }
.submit-icon { width: 64px; height: 64px; background: rgba(37, 211, 102, 0.1); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; margin-right: 24px; }
.ration-submit-band > div:nth-child(2) { flex: 1; margin-right: 30px; }

.add-feed-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 12px 24px; background: transparent; border: 2px dashed var(--green); color: var(--green-dark); font-size: 15px; font-weight: 700; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.add-feed-btn:hover { background: var(--leaf); border-style: solid; transform: translateY(-2px); }
.add-feed-btn svg { flex-shrink: 0; }
.feed-row-dynamic { position: relative; animation: fadeSlideIn 0.3s ease; }
.remove-feed-btn { position: absolute; right: -12px; top: -12px; width: 28px; height: 28px; border-radius: 50%; border: 2px solid #e74c3c; background: var(--white); color: #e74c3c; font-size: 18px; font-weight: 800; cursor: pointer; display: grid; place-items: center; transition: all 0.2s ease; line-height: 1; padding: 0; }
.remove-feed-btn:hover { background: #e74c3c; color: var(--white); }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.ration-send-button { background: #25d366; color: var(--white); border: none; padding: 20px 40px; font-size: 18px; font-weight: 800; border-radius: 100px; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); white-space: nowrap;}
.ration-send-button:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }

.ration-success { 
  display: none; 
  position: fixed;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 9999;
  background: var(--white); 
  padding: 60px 40px; 
  border-radius: var(--radius-lg); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  text-align: center; 
  border: 2px solid var(--green); 
  width: 90%;
  max-width: 600px;
}
.ration-success.show-modal { 
  display: block; 
  animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes popIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.ration-success h2 { color: var(--green-deep); margin-bottom: 20px; font-size: 32px; }
.ration-success p { font-size: 18px; color: var(--graphite); line-height: 1.6; margin-bottom: 40px; }
.ration-success div { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ration-success a { padding: 16px 24px; border-radius: 100px; font-weight: 700; transition: all 0.3s ease; }
.ration-success a:first-child { background: #25d366; color: white; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2); }
.ration-success a:first-child:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.ration-success a:last-child { background: var(--paper); color: var(--green-deep); border: 2px solid transparent; }
.ration-success a:last-child:hover { border-color: var(--line); background: var(--white); }

/* Contact Page */
.contact-form-section { background: var(--paper); padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px); }
.contact-form-section .contact-form { max-width: 900px; margin: 0 auto; }

.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--paper); padding: 0 clamp(24px, 6vw, 80px) clamp(60px, 8vw, 100px); }

.contact-panel { padding: clamp(40px, 5vw, 60px); background: linear-gradient(145deg, var(--green-dark) 0%, #0A1E14 100%); border-radius: 24px 0 0 24px; color: var(--white); display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.contact-panel::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(37,161,77,0.08); border-radius: 50%; }
.contact-panel::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 120px; height: 120px; background: rgba(37,211,102,0.06); border-radius: 50%; }
.contact-panel h3 { font-size: 24px; color: var(--white); margin: 0; position: relative; z-index: 1; }
.contact-panel-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 0 0 8px; position: relative; z-index: 1; }

.contact-panel > a, .contact-panel .contact-item-static { display: flex; align-items: center; gap: 18px; color: var(--white); text-decoration: none; padding: 16px; background: rgba(255,255,255,0.06); border-radius: 16px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 1; margin: 0; }
.contact-panel > a:hover { background: rgba(255,255,255,0.12); transform: translateX(6px); border-color: rgba(255,255,255,0.15); }

.contact-icon { width: 48px; height: 48px; min-width: 48px; min-height: 48px; border-radius: 12px; background: rgba(255,255,255,0.1); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s ease; padding: 0; }
.contact-icon svg { width: 22px; height: 22px; display: block; }
.contact-panel > a:hover .contact-icon { background: var(--green); }
.whatsapp-icon { background: rgba(37,211,102,0.2); }
.contact-panel > a:hover .whatsapp-icon { background: #25d366; }
.contact-panel svg { color: var(--leaf); flex-shrink: 0; }
.contact-panel > a:hover svg { color: var(--white); }
.contact-panel span:not(.contact-icon) { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 3px; font-weight: 600; }
.contact-panel strong { font-size: 16px; font-weight: 700; color: var(--white); display: block; line-height: 1.4; }

.contact-map-col { border-radius: 0 24px 24px 0; overflow: hidden; min-height: 500px; }
.contact-map-col iframe { width: 100%; height: 100%; min-height: 500px; }

.contact-form { background: var(--white); padding: clamp(36px, 5vw, 56px); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06); }
.contact-form h2 { margin: 0 0 8px; font-size: 32px; color: var(--green-deep); }
.form-subtitle { margin: 0 0 32px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.contact-form select { width: 100%; padding: 14px 18px; border: 2px solid var(--line); border-radius: var(--radius-md); font-size: 16px; background: var(--white); color: var(--ink); transition: all 0.3s ease; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7c72' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.contact-form select:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 4px rgba(37,161,77,0.1); }
.full-width { width: 100%; margin-top: 10px; display: inline-flex; align-items: center; justify-content: center; }

/* Footer */
.footer { 
  background: #0A1E14; 
  color: rgba(255, 255, 255, 0.7); 
  padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px) 40px; 
  position: relative; 
  overflow: hidden; 
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 200px; background: rgba(37, 161, 77, 0.15); filter: blur(80px); border-radius: 50%;
}
.footer-top {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  width: auto;
  max-width: 200px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: 10px;
}
.footer-brand p {
  max-width: 340px;
  line-height: 1.8;
  font-size: 16px;
}
.footer h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block; width: fit-content;
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--leaf);
  transform: translateX(6px);
}
.footer-contact p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}
.footer-socials a {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.whatsapp-float { 
  position: fixed; right: 30px; bottom: 30px; z-index: 90; 
  display: flex; align-items: center; justify-content: center; 
  width: 64px; height: 64px; 
  border-radius: 50%; 
  color: var(--white); 
  background: #25d366; 
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4); 
  font-weight: 800; font-size: 24px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); }

/* Responsive */
@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr; }
  .menu-toggle { display: block; justify-self: end; }
  .nav, .header-actions { display: none; }
  .site-header.open { background: var(--white); }
  .site-header.open .nav, .site-header.open .header-actions { display: flex; grid-column: 1 / -1; }
  .site-header.open .nav { flex-direction: column; align-items: flex-start; padding-top: 20px; width: 100%; border-top: 1px solid var(--line); margin-top: 20px; gap: 10px;}
  .site-header.open .header-actions { justify-content: space-between; width: 100%; padding-top: 20px; }
  
  .nav-dropdown { width: 100%; }
  .nav-dropdown > button { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; box-shadow: none; padding: 10px 0 0 16px; border: none;
    transform: none; min-width: 100%; border-radius: 0; display: none; opacity: 1; visibility: visible;
  }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown.active .dropdown-menu { display: flex; }
  .nav-dropdown.active > button svg { transform: rotate(180deg); }
  .dropdown-menu a { border-left: 2px solid var(--paper); border-radius: 0 12px 12px 0; }
  
  .home-products, .gallery-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial, .split-feature, .story-grid, .founder-section { grid-template-columns: 1fr; }
  .editorial > p { font-size: 16px; padding-left: 20px; }
  .contact-bottom { grid-template-columns: 1fr; }
  .contact-panel { border-radius: 24px 24px 0 0; }
  .contact-map-col { border-radius: 0 0 24px 24px; min-height: 350px; }
  .contact-map-col iframe { min-height: 350px; }
  .ration-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { min-height: 80px; padding: 10px 20px; }
  .brand img { width: 130px; }
  
  .hero-slider { height: 60vh; min-height: 450px; display: block; }
  .hero-slider .slide { padding: 0; display: flex; flex-direction: column; justify-content: flex-end; background: var(--white); height: 100%; }
  .hero-slider .hero-bg {
    height: 100%;
    min-height: auto;
    filter: none;
    -webkit-filter: none;
    transform: none;
    object-position: center top;
  }
  .hero-slider .slide.active .hero-bg { animation: none; transform: none; }
  .hero-shade { 
    display: none !important;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    background: transparent;
    width: 100%;
    padding: 0 24px 40px;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }
  .hero-inner h1 { text-shadow: 0 0 24px rgba(255,255,255,1), 0 0 16px rgba(255,255,255,1), 0 0 8px rgba(255,255,255,1); color: var(--green-deep); font-size: clamp(24px, 6vw, 30px); margin-bottom: 8px; }
  .hero-inner p:not(.eyebrow) { text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,1); color: var(--graphite); font-weight: 700; font-size: 14px; line-height: 1.5; margin: 0 auto; max-width: 90%; }
  .hero-inner .eyebrow { color: var(--green-deep); font-size: 12px; margin-bottom: 6px; font-weight: 800; text-shadow: 0 0 12px rgba(255,255,255,1); letter-spacing: 1px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 8px; margin-top: 16px; align-items: center; }
  .hero-actions .btn { width: 100%; font-size: 13px; padding: 10px 20px; }
  .slider-dots { bottom: 12px; z-index: 10; left: 50%; transform: translateX(-50%); width: 100%; justify-content: center; }
  .slider-dots .dot { background: var(--line); }
  .slider-dots .dot.active { background: var(--green); }
  
  h1 { font-size: clamp(28px, 7vw, 34px); line-height: 1.1; }
  .page-hero { padding: 120px 20px 80px; min-height: auto; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 36px); }
  
  .section { padding: 60px 20px; }
  .home-products, .role-grid, .values, .catalogue-block, .gallery-page, .form-row { grid-template-columns: 1fr; }
  
  .image-card { min-height: 380px; padding: 32px 24px; border-radius: 24px; }
  .image-card h3 { font-size: 26px; }
  .split-feature { gap: 40px; }
  .split-media img { border-radius: 20px; }
  
  .catalogue-block { padding: 32px 20px; border-radius: 24px; gap: 40px; }
  .cat-header-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  .story-grid { padding: 40px 20px; border-radius: 24px; margin-top: -40px; margin-left: 16px; margin-right: 16px; }
  .founder-section { padding: 60px 20px; gap: 40px; }
  .values { padding: 60px 20px; border-radius: 24px; margin: 20px 16px; }
  .values article { padding: 32px 24px; }
  .about-brand-container { grid-template-columns: 1fr; gap: 40px; }
  .about-brand-image { max-width: 100%; aspect-ratio: 16/9; }
  .about-brand-content h2 { font-size: 32px; }
  
  .premium-vision { padding: 60px 20px; }
  .premium-vision-header h2 { font-size: 32px; }
  .premium-vision-grid { grid-template-columns: 1fr; gap: 24px; }
  .premium-vision-footer { font-size: 18px; padding: 24px; }
  .about-brand-msg { padding: 60px 20px; }
  .about-brand-inner h2 { font-size: 32px; margin-bottom: 32px; }
  .about-brand-cols { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .about-brand-inner blockquote { padding: 24px; font-size: 20px; text-align: left; }
  .about-cta-text h2 { font-size: 28px; margin-bottom: 12px; }
  .cta-band.about-cta-band p { font-size: 16px; line-height: 1.5; }
  
  .cta-band { margin: 0 16px 60px; flex-direction: column; align-items: stretch; text-align: center; padding: 40px 20px; border-radius: 24px; gap: 24px; }
  .cta-band > p { font-size: 28px; }
  .catalogue-cta { flex-direction: column; text-align: center; padding: 32px 20px; border-radius: 20px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-form-section { padding: 40px 20px; }
  .contact-bottom { padding: 0 20px 40px; }
  
  .ration-benefits { grid-template-columns: 1fr; }
  .ration-submit-band { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
}
