/* 
 * ASN Lifecare Corporate Stylesheet - Redesigned (Green Theme)
 * Primary Colors: Emerald Green (#0F7A44, #14A35B) & Deep Forest Green (#0D6438)
 */

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

:root {
  --primary: #0F7A44;
  --primary-light: #14A35B;
  --primary-rgb: 15, 122, 68;
  --secondary: #0D6438;
  --secondary-light: #10B981;
  --secondary-rgb: 13, 100, 56;
  --dark: #0B0F19;
  --dark-light: #1E293B;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(15, 122, 68, 0.08), 0 8px 10px -6px rgba(15, 122, 68, 0.08);
  --shadow-xl: 0 20px 35px -5px rgba(15, 122, 68, 0.12), 0 12px 15px -8px rgba(15, 122, 68, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --gradient-primary: linear-gradient(135deg, #0F7A44 0%, #0D6438 100%);
  --gradient-glow: radial-gradient(circle, rgba(20,163,91,0.08) 0%, rgba(255,255,255,0) 70%);
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Section */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

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

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
}

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

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  background-color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(15, 122, 68, 0.25);
  border: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 122, 68, 0.35);
}

.nav-cta::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 160px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.5) 0%, rgba(11, 15, 25, 0.75) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
  background: linear-gradient(90deg, #34D399 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(15, 122, 68, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 122, 68, 0.35);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Metric / Stats Cards - 3 Columns Layout */
.metrics-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header .sub {
  color: var(--primary-light);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--dark);
  font-weight: 800;
}

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

.metric-card {
  border-radius: var(--border-radius);
  padding: 45px 35px;
  background-color: var(--light);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
}

.metric-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Metric card with solid theme green background */
.metric-card.themed-card {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.metric-card.themed-card .metric-number {
  color: var(--secondary-light);
}

.metric-card.themed-card .metric-title {
  color: var(--white);
}

.metric-card.themed-card .metric-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Narrative Section (Innovating for the World) */
.narrative-section {
  padding: 100px 0;
  background-color: var(--light);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.promoters-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.narrative-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16/10;
}

.narrative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.narrative-image:hover img {
  transform: scale(1.03);
}

.narrative-content h3 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 800;
}

.narrative-content p {
  color: var(--gray-500);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 3-Column Value Cards (Quality, Affordability, Accessibility) */
.values-section {
  padding: 100px 0;
  background-color: var(--white);
}

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

.value-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background-color: var(--white);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(15, 122, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: var(--white);
}

.value-card h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Staggered Business Verticals Timeline */
.verticals-section {
  padding: 100px 0;
  background-color: var(--light);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 0 8px var(--light), var(--shadow-md);
  transition: var(--transition);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--secondary-light);
  box-shadow: 0 0 0 8px var(--light), 0 0 20px rgba(15, 122, 68, 0.3);
}

.timeline-content {
  width: 45%;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 122, 68, 0.15);
}

/* Stagger Left & Right alignment */
.timeline-item.left {
  flex-direction: row-reverse;
}

.timeline-content h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 700;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Sustainability / Planet Section */
.sustainability-section {
  padding: 100px 0;
  background-color: var(--white);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.sustainability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 122, 68, 0.1);
}

.sustainability-image {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
}

.sustainability-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.sustainability-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
}

.sustainability-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sustainability-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 700;
}

.sustainability-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sustainability-date {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: auto;
}

/* ESG Strategy Banner card */
.esg-section {
  padding: 20px 0 60px 0;
  background-color: var(--white);
}

.esg-banner {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 50px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.esg-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  right: -50px;
  top: -50px;
}

.esg-content h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.esg-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
}

.esg-banner .btn {
  background-color: var(--white);
  color: var(--primary);
}

.esg-banner .btn:hover {
  background-color: var(--gray-100);
  color: var(--primary-light);
}

/* Careers Section (Join us, fuel the future) */
.careers-section {
  padding: 100px 0;
  background-color: var(--light);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.careers-content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.careers-list {
  list-style: none;
  margin-bottom: 30px;
}

.careers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--dark);
}

.careers-list li i {
  color: var(--primary-light);
  font-size: 1.1rem;
}

.careers-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1.1/1;
}

.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.careers-image:hover img {
  transform: scale(1.03);
}

/* Pre-footer Call-To-Action Banner */
.pre-footer-banner {
  background-color: var(--light);
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
}

.pre-footer-box {
  background-color: var(--white);
  border-radius: 50px;
  padding: 15px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pre-footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pre-footer-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(15, 122, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.pre-footer-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.pre-footer-actions {
  display: flex;
  gap: 12px;
}

/* Featured Products & Inner Catalog Styles */
.featured-products {
  padding: 100px 0;
  background-color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 122, 68, 0.15);
}

.product-image {
  position: relative;
  padding-top: 100%;
  background-color: var(--white);
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 35px 10px rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 5;
  transition: var(--transition);
}

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

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.product-details h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-composition {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.product-packaging {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-link:hover {
  color: var(--primary-light);
}

/* Contact Info & Forms Banner */
.contact-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B0F19 0%, #1E293B 100%);
  color: var(--white);
  border-radius: 24px;
  margin-bottom: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-xl);
}

.contact-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-banner-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-banner-content p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.contact-details-list {
  list-style: none;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--gray-200);
}

.contact-details-list li i {
  color: var(--secondary-light);
  font-size: 1.25rem;
}

.contact-banner-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}

.contact-banner-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-light);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background-color: var(--light);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 122, 68, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-block {
  width: 100%;
}

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

/* Footer Section */
footer {
  background-color: #05070C;
  color: var(--gray-300);
  padding: 120px 0 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-col p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--gray-500);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

/* Catalog Filter styles */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(15, 122, 68, 0.2);
}

.search-container {
  max-width: 500px;
  margin: 0 auto 30px auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(15, 122, 68, 0.15);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* Detail Page Layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.product-detail-img {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.product-detail-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px 20px rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 5;
}

.product-detail-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}

.product-detail-info .category-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.detail-section {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 20px;
}

.detail-section h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-section p {
  color: var(--gray-500);
}

.detail-section .composition-text {
  font-size: 1.25rem;
  color: var(--primary-light);
  font-weight: 700;
}

.inquiry-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.inquiry-box h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

/* Page Banner/Hero */
.page-hero {
  background: linear-gradient(135deg, #0B0F19 0%, #1E293B 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.page-hero p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Alert notifications */
.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.alert-danger {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* Responsive Styles */
@media(max-width: 992px) {
  .hero-grid, .promoters-grid, .contact-banner-grid, .product-detail-layout, .narrative-grid, .careers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content, .section-header {
    text-align: center;
  }
  
  .hero-content p, .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-container::before {
    left: 24px;
  }
  
  .timeline-badge {
    left: 24px;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .timeline-item, .timeline-item.left {
    flex-direction: row;
    margin-bottom: 40px;
  }
  
  .esg-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }
  
  .pre-footer-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    gap: 20px;
  }
  
  .pre-footer-info {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Bottom App Bar Navigation Styles */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none; /* Hide on desktop */
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  border-top: 1px solid var(--gray-200);
  z-index: 9999;
  padding: 0 10px;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  gap: 4px;
  transition: var(--transition);
  flex: 1;
  height: 100%;
}

.mobile-bottom-nav-item i {
  font-size: 1.25rem;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
  color: var(--primary);
}

@media(max-width: 768px) {
  .header-container {
    padding: 12px 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .contact-banner-form {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .metrics-grid, .sustainability-grid {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 64px;
  }
  .mobile-bottom-nav {
    display: flex;
  }
}
