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

/* ==========================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================== */
:root {
  /* Colors - Earthy Organic & Professional */
  --primary: #1a4329;       /* Deep Forest Green */
  --primary-light: #2d5e3f;
  --primary-dark: #0f2c1a;
  --secondary: #4f772d;     /* Olive Sage Green */
  --secondary-light: #90a955;
  --accent: #b07d62;        /* Warm Clay/Terracotta */
  --accent-light: #d09b83;
  --accent-dark: #8e5c43;
  --bg-primary: #fbfbf9;    /* Clean Off-white */
  --bg-secondary: #f4f5f1;  /* Soft Warm Neutral */
  --bg-card: #ffffff;
  --text-main: #1f2721;     /* Charcoal with subtle green tone */
  --text-muted: #5e6660;
  --text-light: #ffffff;
  --border-color: #e1e5e1;
  --border-focus: #4f772d;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(26, 67, 41, 0.03);
  --shadow-md: 0 12px 32px rgba(26, 67, 41, 0.06);
  --shadow-lg: 0 24px 64px rgba(26, 67, 41, 0.1);
  --shadow-glow: 0 8px 32px rgba(79, 119, 45, 0.3);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

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

/* Common Section Layout */
section {
  padding: 100px 24px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================
   UTILITIES & ANIMATION CLASSES
   ========================================== */
.text-center { text-align: center; }
.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(79, 119, 45, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* Fade Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   BUTTONS STYLING
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(26, 67, 41, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 67, 41, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(176, 125, 98, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(176, 125, 98, 0.35);
}

/* ==========================================
   HEADER & NAVIGATION BAR
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(251, 251, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(225, 229, 225, 0.5);
}

header.scrolled .navbar {
  padding: 16px 40px;
}

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

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-sm);
}

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

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover {
  color: var(--secondary);
}

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

.nav-link.active {
  color: var(--secondary);
}

/* Hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO BANNER SECTION
   ========================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  position: relative;
  padding-top: 100px;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.9) contrast(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 44, 26, 0.4) 0%, rgba(15, 44, 26, 0.8) 100%);
  z-index: 2;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--secondary-light);
  background: linear-gradient(120deg, var(--secondary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 580px;
}

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

/* Floating Card in Hero */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px;
  border-radius: var(--radius-lg);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.hero-stat-num {
  font-size: 3.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* ==========================================
   TRUST BADGES SECTION
   ========================================== */
.trust-badges {
  background-color: var(--bg-secondary);
  padding: 50px 24px;
  border-bottom: 1px solid var(--border-color);
}

.badges-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-icon {
  background: var(--white);
  color: var(--secondary);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.badge-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.badge-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about {
  background-color: var(--bg-primary);
}

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

.about-image {
  position: relative;
}

.about-img-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-container:hover img {
  transform: scale(1.05);
}

/* Overlapping badge */
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-badge h3 {
  font-size: 2.2rem;
  color: var(--accent-light);
  font-weight: 800;
  margin-bottom: 4px;
}

.about-badge p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar-item {
  display: flex;
  gap: 16px;
}

.pillar-icon {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   PRODUCTS CATALOGUE SECTION
   ========================================== */
.products {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--white);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.tab-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 67, 41, 0.15);
}

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

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(26, 67, 41, 0.9);
  color: var(--text-light);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

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

.product-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.spec-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.product-origin {
  display: flex;
  flex-direction: column;
}

.origin-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.origin-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose {
  background-color: var(--bg-primary);
}

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

.why-card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 67, 41, 0.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  background-color: rgba(79, 119, 45, 0.08);
  color: var(--secondary);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   CONTACT US SECTION
   ========================================== */
.contact {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item-icon {
  background-color: var(--white);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--secondary);
}

/* Interactive simulated Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  background-color: #e5e3df;
}

/* Styled aesthetic graphic representing Indian local map */
.simulated-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle at 70% 40%, rgba(79, 119, 45, 0.1) 0%, rgba(229, 227, 223, 1) 70%),
              repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 20px),
              repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 20px);
}

.map-river {
  position: absolute;
  width: 300px;
  height: 40px;
  background-color: #a5c9eb;
  top: 80px;
  left: -50px;
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.6;
}

.map-road-primary {
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #ffffff;
  top: 100px;
  transform: rotate(5deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.map-road-secondary {
  position: absolute;
  width: 8px;
  height: 100%;
  background-color: #ffffff;
  left: 60%;
  top: 0;
  transform: rotate(-25deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}

.map-pin-icon {
  background-color: #d90429;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  animation: bouncePin 2s infinite;
}

.map-pin-icon span {
  transform: rotate(45deg);
  font-size: 0.9rem;
}

.map-pin-shadow {
  width: 12px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-top: 2px;
}

.map-tooltip {
  position: absolute;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  bottom: 60px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--primary-dark) transparent;
}

.map-pin:hover .map-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Contact form panel styling */
.contact-form-panel {
  background-color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  background-color: var(--white);
  border-color: var(--border-focus);
  box-shadow: 0 4px 12px rgba(79, 119, 45, 0.05);
}

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

/* Form success overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  background-color: rgba(79, 119, 45, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ==========================================
   MODAL WINDOW DIALOGS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 44, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-bounce);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  background-color: var(--bg-secondary);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.modal-close {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-dark);
}

.modal-body {
  padding: 32px;
  position: relative;
}


/* ==========================================
   LEADERSHIP TEAM SECTION
   ========================================== */
.leadership {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

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

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
}

.director-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.director-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.director-card:hover .director-img-wrapper img {
  transform: scale(1.04);
}

.director-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.director-name {
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--primary-dark);
}

.director-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.director-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.director-contact {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.director-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.director-phone:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.director-phone svg {
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.director-phone:hover svg {
  color: var(--secondary-light);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo-title {
  color: var(--text-light);
}

.footer-brand .logo-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 0.9rem;
  margin-top: 20px;
  line-height: 1.6;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--secondary-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '→';
  font-size: 0.8rem;
  color: var(--secondary-light);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--text-light);
  padding-left: 6px;
}

.footer-link:hover::before {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: var(--secondary-light);
  margin-top: 4px;
}

.footer-contact-text p {
  line-height: 1.5;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

/* ==========================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: var(--transition-bounce);
  animation: pulseGlow 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #128c7e;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 14px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes bouncePin {
  0% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
  100% { transform: rotate(-45deg) translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1100px) {
  .hero h1 { font-size: 3rem; }
  .about-grid, .contact-grid { gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  section { padding: 80px 20px; }
  .navbar { padding: 20px 24px; }
  header.scrolled .navbar { padding: 12px 24px; }
  
  .hero { height: auto; min-height: initial; padding: 160px 20px 80px 20px; }
  .hero .container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-desc { margin: 0 auto 40px auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { justify-content: center; }
  
  .badges-wrapper { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 32px; max-width: 450px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-panel { gap: 40px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  
  .badges-wrapper { grid-template-columns: 1fr; }
  .about-badge { padding: 20px; bottom: -20px; right: 0; left: 0; margin: 0 auto; max-width: 90%; text-align: center; }
  
  .products-tabs { gap: 8px; }
  .tab-btn { width: 100%; text-align: center; }
  
  .form-group-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-panel { padding: 24px; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
