/* ===== ROOT VARIABLES ===== */
:root {
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Color Palette - Complementary Color Scheme */
  --primary: #2e4f78;
  --primary-dark: #1c3c61;
  --primary-light: #4a6992;
  
  --secondary: #d87c2f;
  --secondary-dark: #b96525;
  --secondary-light: #f19552;
  
  --accent1: #78a6c8; 
  --accent2: #e6b980;
  
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gray: #95a5a6;
  --gray-light: #ecf0f1;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Animation Speed */
  --speed-slow: 0.8s;
  --speed-normal: 0.5s;
  --speed-fast: 0.3s;
  
  /* Container Width */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  
  /* Z-index */
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}


/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--speed-fast) ease;
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  transition: width var(--speed-normal) ease;
}

section:hover h2::after {
  width: 100px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
}

.section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
  color: var(--gray);
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

section:nth-child(even) {
  background-color: var(--gray-light);
}

/* ===== BUTTON STYLES ===== */
.btn, button, input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--speed-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(1px);
}

.primary-btn, .submit-btn {
  background-color: var(--secondary);
  color: white;
}

.primary-btn:hover, .submit-btn:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.secondary-btn {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.secondary-btn:hover {
  background-color: var(--secondary);
  color: white;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-normal);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo a {
  display: block;
}

.logo img {
  max-height: 60px;
  max-width: 60px;
  transition: max-height var(--speed-fast);
}

.header.scrolled .logo img {
  max-height: 50px;
}

.desktop-nav ul {
  display: flex;
  gap: var(--spacing-sm);
}

.desktop-nav a {
  padding: 0.5rem;
  position: relative;
  font-weight: 500;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--speed-fast);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transition: all var(--speed-fast);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--speed-normal);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 0 var(--container-padding);
}

.mobile-nav li {
  margin-bottom: var(--spacing-xs);
}

.mobile-nav a {
  display: block;
  padding: var(--spacing-xs) 0;
  font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-top: 80px; /* Height of header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: var(--z-back);
}

.hero-content {
  color: white;
  max-width: 800px;
  padding: var(--spacing-md);
  position: relative;
  z-index: var(--z-normal);
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* ===== PRODUCT CATEGORIES SECTION ===== */
.product-categories {
  text-align: center;
}

.category-carousel {
  margin-top: var(--spacing-md);
  position: relative;
}

.carousel-container {
  display: flex;
  /* overflow-x: hidden;
  scroll-behavior: smooth; */
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  transition: transform var(--speed-normal);
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 800px;
  /* transform: rotate(-1deg); */
  transition: transform var(--speed-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  transform: rotate(0deg) scale(1.01);
}

.category-card .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

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

.card-content {
  padding: var(--spacing-md);
  text-align: left;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
  gap: var(--spacing-md);
}

.carousel-controls button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--speed-fast);
}

.carousel-controls button:hover {
  background: var(--primary-dark);
}

/* ===== PET CARE SECTION ===== */
.pet-care {
  text-align: center;
}

.pet-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.care-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--speed-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.care-card:hover {
  transform: translateY(-10px);
}

.care-card .image-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.care-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

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

.care-card .card-content {
  padding: var(--spacing-md);
  text-align: left;
  flex-grow: 1;
}

/* ===== MEDIA GALLERY SECTION ===== */
.media-gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 250px;
  box-shadow: var(--shadow-md);
  transition: transform var(--speed-fast);
  transform: rotate(1deg);
}

.gallery-item:nth-child(2n) {
  transform: rotate(-1deg);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: var(--z-tooltip);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== RESEARCH & EDUCATION SECTION ===== */
.research-section {
  text-align: center;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.research-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--speed-fast);
  /* transform: skewY(-1deg); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.research-card:hover {
  transform: skewY(0deg);
  box-shadow: var(--shadow-lg);
}

.research-card .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.research-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

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

.research-card .card-content {
  padding: var(--spacing-md);
  text-align: left;
  flex-grow: 1;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
}

.resources-section h2,
.resources-section .section-description {
  color: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all var(--speed-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.resource-card h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.resource-card p {
  margin-bottom: var(--spacing-md);
}

.resource-card a {
  color: var(--accent2);
  font-weight: 600;
  transition: color var(--speed-fast);
}

.resource-card a:hover {
  color: white;
  text-decoration: underline;
}

/* ===== SUSTAINABILITY SECTION ===== */
.sustainability {
  text-align: center;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.sustainability-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--speed-fast);
  /* transform: skewX(-2deg); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sustainability-card:hover {
  transform: skewX(0deg);
  box-shadow: var(--shadow-lg);
}

.sustainability-card .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.sustainability-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

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

.sustainability-card .card-content {
  padding: var(--spacing-md);
  text-align: left;
  flex-grow: 1;
}

/* ===== NEWS SECTION ===== */
.news-section {
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--speed-fast);
  /* transform: rotate(-1deg); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card:hover {
  transform: rotate(0deg);
  box-shadow: var(--shadow-lg);
}

.news-card .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-normal);
}

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

.news-card .card-content {
  padding: var(--spacing-md);
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card .date {
  margin-top: auto;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== CUSTOMER STORIES SECTION ===== */
.customer-stories {
  text-align: center;
  background: linear-gradient(135deg, var(--accent1), var(--primary-light));
  color: white;
}

.customer-stories h2,
.customer-stories .section-description {
  color: white;
}

.stories-carousel {
  margin-top: var(--spacing-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.story-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark);
}

.story-card .image-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card .card-content {
  padding: var(--spacing-md);
  text-align: left;
}

.customer-name {
  display: block;
  font-style: italic;
  color: var(--primary);
  margin-top: var(--spacing-sm);
  font-weight: 600;
}

/* ===== STATS SECTION ===== */
.stats-section {
  text-align: center;
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: white;
}

.stats-section h2 {
  color: white;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-widget {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
}

/* ===== PORTFOLIO/BRAND SECTION ===== */
.portfolio {
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  align-items: center;
}

.brand-item {
  padding: var(--spacing-sm);
  transition: transform var(--speed-fast);
  filter: grayscale(100%);
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-item:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.brand-item img {
  max-width: 150px;
  margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  text-align: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  text-align: left;
}

.contact-info {
  padding: var(--spacing-md);
}

.contact-info h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: border-color var(--speed-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-toggle {
  display: flex;
  align-items: center;
}

.toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle-slider {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background: var(--gray);
  border-radius: 20px;
  margin-right: var(--spacing-sm);
  transition: background var(--speed-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform var(--speed-fast);
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .toggle-slider {
  background: var(--secondary);
}

input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0;
}

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

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column p {
  margin-bottom: var(--spacing-md);
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column a {
  color: var(--accent1);
  transition: color var(--speed-fast);
}

.footer-column a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.social-links a {
  display: block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--speed-fast);
}

.social-links a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: var(--spacing-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form button {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: background-color var(--speed-fast);
}

.newsletter-form button:hover {
  background: var(--secondary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-md);
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  margin-bottom: var(--spacing-md);
}

.success-content p {
  margin-bottom: var(--spacing-md);
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in {
  animation: fadeIn var(--speed-normal) ease forwards;
}

.slide-up {
  animation: slideUp var(--speed-normal) ease forwards;
}

.pulse {
  animation: pulse var(--speed-slow) infinite;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  

  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .category-card,
  .story-card {
    transform: none !important;
  }
  
  .gallery-item,
  .research-card,
  .sustainability-card,
  .news-card {
    transform: none !important;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: var(--spacing-sm);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xs);
  }
  
  .newsletter-form button {
    border-radius: var(--radius-md);
  }
}