/* 
   Holista Transworld Pvt. Ltd. - Main Style System
   Color Palette:
   - Coconut White: #F8F8F8
   - Tropical Green: #2E8B57
   - Deep Blue: #003B73
   - Gold Accent: #D4AF37
   - Light Grey: #F4F5F7
*/

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

/* --- CUSTOM VARIABLES --- */
:root {
  --primary-blue: #003B73;
  --primary-green: #2E8B57;
  --accent-gold: #D4AF37;
  --bg-white: #FFFFFF;
  --bg-coconut: #F8F8F8;
  --bg-light-grey: #F4F5F7;
  --text-dark: #2D3142;
  --text-muted: #64748B;
  --text-light: #FFFFFF;
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
}

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

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

ul {
  list-style: none;
}

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

/* --- UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-light-grey);
}

.section-bg-dark {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.section-bg-dark h2, 
.section-bg-dark h3 {
  color: var(--text-light);
}

.text-center { text-align: center; }

.section-title-wrapper {
  margin-bottom: 50px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  color: var(--primary-green);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title-wrapper p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-headings);
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #246e44;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: #002d58;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 59, 115, 0.3);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
}

.btn-accent:hover {
  background-color: #c59f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Grid helper */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 59, 115, 0.1);
  padding: 10px 0;
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header.scrolled .nav-link.active {
  color: var(--primary-green);
}

.header.scrolled .logo-standard {
  display: block;
}

.header.scrolled .logo-alt {
  display: none;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-wrapper {
  padding: 5px 0;
}

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

.logo-standard {
  display: none;
}

.logo-alt {
  display: block;
}

/* Force light logo or colored logo depending on page state */
.header.inner-page {
  background-color: var(--bg-white);
  border-bottom: 1px solid rgba(0, 59, 115, 0.1);
}
.header.inner-page .nav-link {
  color: var(--text-dark);
}
.header.inner-page .logo-standard {
  display: block;
}
.header.inner-page .logo-alt {
  display: none;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
}

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

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

.nav-link.active {
  color: var(--primary-green) !important;
}

/* Lang dropdown */
.lang-selector {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 115, 0.2);
}

.header:not(.scrolled):not(.inner-page) .lang-selector {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-sm);
  display: none;
  min-width: 120px;
  margin-top: 8px;
  z-index: 1001;
  overflow: hidden;
}

.lang-selector:hover .lang-dropdown {
  display: block;
}

.lang-option {
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.lang-option:hover {
  background-color: var(--bg-light-grey);
  color: var(--primary-green);
}

/* Hamburg menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.header.scrolled .menu-toggle span,
.header.inner-page .menu-toggle span {
  background-color: var(--primary-blue);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: linear-gradient(rgba(0, 59, 115, 0.85), rgba(0, 59, 115, 0.65)), url('https://images.unsplash.com/photo-1543257580-7269da773bf5?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(46, 139, 87, 0.2);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.hero-title span {
  color: var(--accent-gold);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

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

/* Hero visual panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-container {
  position: relative;
  width: 320px;
  height: 380px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-decor {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(46,139,87,0.4) 0%, rgba(0,0,0,0) 70%);
  filter: blur(20px);
}

.hero-card-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.hero-brands-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.hero-brand-logo-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.hero-brand-logo-wrapper:hover {
  transform: scale(1.05);
  background-color: #FFFFFF;
}

.hero-brand-logo-wrapper img {
  max-height: 50px;
  object-fit: contain;
}

.hero-card-footer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-footer::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- ABOUT PREVIEW SECTION --- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-preview-image-wrapper {
  position: relative;
}

.about-preview-image {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

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

.about-preview-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-preview-experience-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-green);
  color: var(--text-light);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.experience-years {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-headings);
  line-height: 1;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.experience-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-preview-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

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

.about-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-blue);
}

.highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* --- PRODUCT CATEGORIES --- */
.category-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 139, 87, 0.2);
}

.category-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.category-card-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-blue);
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

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

.category-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.category-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary-green);
}

.category-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.category-card:hover .category-link svg {
  transform: translateX(4px);
}

/* --- EXPORT MAP SECTION --- */
.map-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.map-container {
  position: relative;
  background-color: rgba(0, 59, 115, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid rgba(0, 59, 115, 0.1);
  overflow: hidden;
}

.map-svg-wrapper {
  position: relative;
  width: 100%;
}

.world-map-svg {
  width: 100%;
  height: auto;
  fill: #D4DFE6;
}

/* Map glowing dots */
.map-node {
  position: absolute;
  cursor: pointer;
}

.map-node .dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  border-radius: 50%;
  position: relative;
}

.map-node .pulse {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  animation: pulse-ring 2s infinite ease-out;
  pointer-events: none;
}

/* India Center Node */
.map-node.origin .dot {
  background-color: var(--accent-gold);
  width: 16px;
  height: 16px;
}
.map-node.origin .pulse {
  border-color: var(--accent-gold);
  width: 32px;
  height: 32px;
  top: -8px;
  left: -8px;
}

@keyframes pulse-ring {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.map-tooltip {
  position: absolute;
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transform: translate(-50%, -100%);
  margin-top: -10px;
}

.map-node:hover .map-tooltip {
  opacity: 1;
}

/* Map stats */
.map-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-stat-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-green);
}

.map-stat-card h3 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.map-stat-card p {
  color: var(--text-muted);
  font-weight: 500;
}

/* --- WHY CHOOSE HOLISTA --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 35px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-top: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-green);
}

.why-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 139, 87, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- SERVICES PREVIEW / B2B PARTNER --- */
.services-highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.services-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-mini-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.service-mini-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.service-mini-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.service-mini-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.services-highlight-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.services-highlight-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* --- CERTIFICATIONS SHOWCASE --- */
.certifications-section {
  padding: 40px 0;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.certifications-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.certification-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-muted);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 15px 30px;
  min-width: 140px;
  transition: var(--transition-smooth);
  text-align: center;
}

.certification-logo:hover {
  color: var(--primary-blue);
  border-color: var(--primary-green);
  background-color: rgba(46, 139, 87, 0.05);
  transform: scale(1.05);
}

.certification-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- CONTACT CTA PANEL --- */
.contact-cta-panel {
  background: linear-gradient(rgba(0, 59, 115, 0.9), rgba(0, 59, 115, 0.9)), url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1200&q=80') center center/cover;
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.contact-cta-panel h2 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-cta-panel p {
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* --- FOOTER --- */
.footer {
  background-color: #0b1d33;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 4px solid var(--primary-green);
}

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

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
  margin-top: 8px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  padding: 8px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

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

.footer-links a {
  font-size: 0.9rem;
}

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

.footer-contact li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

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

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social::before {
  display: none;
}

.social:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: none;
}

.social i {
  font-size: 18px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.social.linkedin,
.social.instagram,
.social.twitter,
.social.facebook {
  background: transparent;
}

/* --- INNER PAGE BANNER --- */
.inner-hero {
  background: linear-gradient(rgba(0, 59, 115, 0.85), rgba(0, 59, 115, 0.85)), url('https://images.unsplash.com/photo-1543257580-7269da773bf5?auto=format&fit=crop&w=1200&q=80') center center/cover;
  padding: 140px 0 80px;
  color: var(--text-light);
  text-align: center;
}

.inner-hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--accent-gold);
}

.breadcrumbs span {
  opacity: 0.6;
}

/* --- ABOUT US PAGE DETAILS --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.vision-card, .mission-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-green);
}

.vision-card h3, .mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vision-card h3 svg, .mission-card h3 svg {
  color: var(--primary-green);
}

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

.value-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.manufacturing-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.manufacturing-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.capabilities-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.capabilities-list svg {
  color: var(--primary-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- PRODUCTS SHOWCASE PAGE --- */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.filters-sidebar {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--bg-light-grey);
  padding-bottom: 8px;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  background-color: var(--bg-light-grey);
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.search-input-wrapper input:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-green);
}

.search-input-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.filter-pills-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-pill-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background-color: transparent;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--primary-green);
}

.filter-pill-btn .count {
  font-size: 0.75rem;
  background-color: var(--bg-light-grey);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.filter-pill-btn.active .count {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.catalog-download-card {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 24px;
  border-radius: var(--border-radius-sm);
  margin-top: 30px;
  text-align: center;
}

.catalog-download-card h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.catalog-download-card p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.products-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.products-count-text {
  font-weight: 600;
  color: var(--text-muted);
}

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

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 139, 87, 0.15);
}

.product-image {
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-light-grey);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-image img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.product-brand-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius-sm);
  padding: 4px 10px;
  box-shadow: var(--shadow-sm);
}

.product-brand-tag img {
  height: 20px;
  width: auto;
}

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

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-packaging-highlight {
  background-color: var(--bg-light-grey);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.product-packaging-highlight span {
  font-weight: 700;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-icon {
  background-color: var(--bg-light-grey);
  color: var(--primary-blue);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

/* --- SERVICES PAGE --- */
.services-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) .service-content-col {
  direction: ltr;
}

.service-image-col img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-content-col h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-content-col p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--primary-blue);
}

.service-feature-item svg {
  color: var(--primary-green);
  width: 16px;
  height: 16px;
}

/* Flow timeline */
.timeline-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.timeline-flow::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: rgba(46, 139, 87, 0.15);
  z-index: 1;
}

.timeline-step {
  position: relative;
  text-align: center;
  z-index: 2;
}

.timeline-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-green);
  color: var(--primary-green);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-badge {
  background-color: var(--primary-green);
  color: var(--text-light);
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- BLOG PAGE --- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

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

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

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

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
}

.blog-readmore svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-readmore svg {
  transform: translateX(4px);
}

/* Sidebar widget */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-light-grey);
  padding-bottom: 8px;
}

.blog-category-list li {
  margin-bottom: 8px;
}

.blog-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.blog-category-link:hover,
.blog-category-link.active {
  color: var(--primary-green);
}

.blog-category-link .badge {
  background-color: var(--bg-light-grey);
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.recent-posts-list li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.recent-post-img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h4 {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 4px;
  font-weight: 600;
}

.recent-post-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- CONTACT US PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card-box {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-card-box h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--bg-light-grey);
  padding-bottom: 10px;
}

.contact-card-box h3 svg {
  color: var(--primary-green);
}

.contact-card-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-card-box a:hover {
  color: var(--primary-green);
}

/* Form Styling */
.form-panel {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-panel p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-light-grey);
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

/* Form success message */
.form-success-message {
  display: none;
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  margin-bottom: 20px;
}

.form-success-message h4 {
  color: var(--primary-green);
  margin-bottom: 5px;
}

/* Map frames */
.maps-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.map-embed-wrapper {
  background-color: var(--bg-white);
  padding: 15px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.map-embed-wrapper h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--border-radius-sm);
}

/* --- PREMIUM INTERACTIVE MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background-color: var(--bg-white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light-grey);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.modal-body {
  padding: 40px;
}

/* Product Modal specifics */
.modal-product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.modal-product-img {
  background-color: var(--bg-light-grey);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 280px;
}

.modal-product-img img {
  max-height: 90%;
  object-fit: contain;
}

.modal-product-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-product-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-product-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.modal-product-subheading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

/* Spec tables */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.specs-table th, .specs-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--bg-light-grey);
}

.specs-table th {
  background-color: var(--bg-light-grey);
  font-weight: 700;
  color: var(--primary-blue);
}

.specs-table td:first-child {
  font-weight: 600;
  width: 40%;
}

/* --- WHATSAPP WIDGET --- */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-bubble {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-bubble svg {
  width: 32px;
  height: 32px;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #FF3B30;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text-light);
}

.whatsapp-popup {
  width: 320px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 15px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-popup-header {
  background-color: #075E54;
  color: var(--text-light);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-agent-info h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.whatsapp-agent-info p {
  font-size: 0.75rem;
  opacity: 0.8;
}

.whatsapp-popup-body {
  padding: 20px;
  background-color: #E5DDD5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
}

.whatsapp-msg {
  background-color: var(--bg-white);
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  max-width: 85%;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.whatsapp-msg::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -6px;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent var(--bg-white) transparent transparent;
}

.whatsapp-popup-footer {
  padding: 15px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- SCROLL REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-title { font-size: 2.5rem; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-experience-card { bottom: -15px; right: -15px; }
  .map-layout { grid-template-columns: 1fr; }
  .services-highlight { grid-template-columns: 1fr; }
  .services-panel { grid-template-columns: 1fr; }
  .timeline-flow { grid-template-columns: 1fr; gap: 20px; }
  .timeline-flow::after { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .manufacturing-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .maps-section-grid { grid-template-columns: 1fr; }
  .modal-product-layout { grid-template-columns: 1fr; }
  .modal-product-img { height: 200px; }
  
  /* Mobile Menu navigation styling */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    z-index: 1005;
    gap: 20px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
  }
  
  .header:not(.scrolled):not(.inner-page) .lang-selector {
    color: var(--text-dark);
    border-color: rgba(0, 59, 115, 0.2);
  }
  
  .lang-dropdown {
    right: auto;
    left: 0;
  }
}
