/* ============================================================
   Soilearth Pharmatech - Premium Pharma Corporate CSS
   Dark Blue #0a1628 | Teal #00b4d8 | Gold #f4a623
   ============================================================ */

:root {
  --navy:    #0a1628;
  --navy2:   #0f2044;
  --navy3:   #162a55;
  --teal:    #00b4d8;
  --teal2:   #0096b7;
  --gold:    #f4a623;
  --gold2:   #e8941a;
  --white:   #ffffff;
  --light:   #f0f4f8;
  --text:    #2c3e50;
  --muted:   #6c757d;
  --border:  rgba(0,180,216,0.15);
  --shadow:  0 8px 32px rgba(10,22,40,0.18);
  --radius:  12px;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #f8fafc;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
#preloader.hide { opacity: 0; pointer-events: none; }
.preloader-inner { position: relative; text-align: center; }
.pulse-ring {
  width: 80px; height: 80px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse 1.5s ease infinite;
}
.brand-mark {
  font-size: 2.5rem;
  animation: spin 3s linear infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(0,180,216,0.2);
}
.topbar a {
  color: rgba(255,255,255,0.75);
  margin-left: 10px;
  transition: color 0.3s;
}
.topbar a:hover { color: var(--gold); }

/* ---- NAVBAR ---- */
.main-navbar {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(10px);
  padding: 0;
  border-bottom: 1px solid rgba(0,180,216,0.15);
  transition: all 0.3s ease;
}
.main-navbar.scrolled {
  background: rgba(10,22,40,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
}
.brand-name {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  max-width: 250px;
}
.brand-tag {
  display: block;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.navbar-brand { padding: 12px 0; }
.nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 22px 16px !important;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--teal);
  transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  left: 16px; right: 16px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  font-weight: 700;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244,166,35,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,166,35,0.45);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,180,216,0.35);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,216,0.5);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }
.section-badge {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  color: var(--teal);
  border: 1px solid rgba(0,180,216,0.3);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1.25;
}
.section-title .highlight { color: var(--teal); }
.section-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 0 0 20px;
  border-radius: 2px;
}
.section-divider.center { margin: 0 auto 20px; }
.section-title-light { color: var(--white); }
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 650px;
}

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0d1f40 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4d8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section::after {
  content: '';
  position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .gold-text { color: var(--gold); display: block; }
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 1.1s ease 0.3s both;
}
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.2s both;
}
.hero-molecule {
  width: 400px; height: 400px;
  position: relative;
  margin: 0 auto;
}
.molecule-ring {
  position: absolute;
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 50%;
  animation: rotateSlow linear infinite;
}
.ring-1 { width:100%;height:100%; top:0;left:0; animation-duration:20s; }
.ring-2 { width:75%;height:75%; top:12.5%;left:12.5%; animation-duration:15s; border-color:rgba(244,166,35,0.2); }
.ring-3 { width:50%;height:50%; top:25%;left:25%; animation-duration:10s; animation-direction:reverse; }
.molecule-center {
  position:absolute; top:50%;left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:var(--teal);
}
.molecule-center .big-icon { font-size:4rem; display:block; animation:breathe 3s ease infinite; }
.molecule-center .label { color:var(--gold); font-size:0.7rem; letter-spacing:3px; text-transform:uppercase; font-weight:600; }
.molecule-dot {
  position:absolute; width:12px; height:12px;
  border-radius:50%; background:var(--teal);
  box-shadow:0 0 15px var(--teal);
}
.dot-1 { top:0; left:50%; transform:translate(-50%); }
.dot-2 { bottom:0; left:50%; transform:translate(-50%); background:var(--gold); box-shadow:0 0 15px var(--gold); }
.dot-3 { left:0; top:50%; transform:translateY(-50%); }
.dot-4 { right:0; top:50%; transform:translateY(-50%); }
@keyframes rotateSlow { from{transform:rotate(0)}to{transform:rotate(360deg)} }
@keyframes breathe { 0%,100%{transform:scale(1)}50%{transform:scale(1.1)} }
.hero-stats-mini {
  display:flex; gap:30px; margin-top:36px;
  animation: fadeInUp 1.2s ease 0.4s both;
}
.hero-stat-item { text-align:center; }
.hero-stat-num { display:block; font-family:var(--font-heading); font-size:1.8rem; color:var(--gold); font-weight:700; }
.hero-stat-lbl { font-size:0.72rem; color:rgba(255,255,255,0.55); letter-spacing:1px; text-transform:uppercase; }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: linear-gradient(135deg, var(--teal2), var(--teal));
  padding: 0;
}
.stats-strip .container { padding: 0; }
.stats-strip-inner { display:flex; flex-wrap:wrap; }
.stat-card {
  flex:1; min-width:200px;
  text-align:center;
  padding:36px 20px;
  border-right:1px solid rgba(255,255,255,0.15);
  transition: background 0.3s;
}
.stat-card:last-child { border-right:none; }
.stat-card:hover { background:rgba(255,255,255,0.1); }
.stat-number {
  font-family:var(--font-heading);
  font-size:2.8rem;
  font-weight:700;
  color:var(--white);
  display:block;
  line-height:1;
}
.stat-label {
  font-size:0.82rem;
  color:rgba(255,255,255,0.75);
  letter-spacing:2px;
  text-transform:uppercase;
  margin-top:6px;
}
.stat-icon { font-size:1.5rem; color:rgba(255,255,255,0.4); margin-bottom:8px; }

/* ---- DESCRIPTION SECTION ---- */
.description-section { background:var(--white); }
.desc-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius:var(--radius);
  padding:50px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.desc-card::before {
  content:'"';
  position:absolute;
  top:-20px; left:20px;
  font-size:180px;
  color:rgba(0,180,216,0.08);
  font-family:var(--font-heading);
  line-height:1;
}
.desc-accent {
  background: rgba(0,180,216,0.08);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* ---- VISION / MISSION ---- */
.vm-section { background: var(--light); }
.vm-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:40px 35px;
  height:100%;
  box-shadow:var(--shadow);
  border-top:4px solid transparent;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.vm-card::before {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:3px;
  transition:all 0.3s;
}
.vm-card.vision { border-top-color:var(--teal); }
.vm-card.mission { border-top-color:var(--gold); }
.vm-card:hover { transform:translateY(-5px); box-shadow:0 16px 48px rgba(10,22,40,0.15); }
.vm-icon {
  width:60px; height:60px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  margin-bottom:20px;
}
.vm-card.vision .vm-icon { background:rgba(0,180,216,0.1); color:var(--teal); }
.vm-card.mission .vm-icon { background:rgba(244,166,35,0.1); color:var(--gold); }
.vm-card h4 { font-family:var(--font-heading); font-size:1.4rem; color:var(--navy); margin-bottom:12px; }
.vm-card p { color:var(--muted); line-height:1.75; }

/* ---- PILLARS SECTION ---- */
.pillars-section { background:var(--navy); }
.pillar-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius);
  padding:30px 25px;
  text-align:center;
  transition:all 0.3s ease;
  height:100%;
  cursor:default;
}
.pillar-card:hover {
  background:rgba(0,180,216,0.1);
  border-color:rgba(0,180,216,0.4);
  transform:translateY(-5px);
}
.pillar-icon {
  width:64px; height:64px;
  border-radius:50%;
  background:rgba(0,180,216,0.12);
  border:1px solid rgba(0,180,216,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  color:var(--teal);
  margin:0 auto 18px;
  transition:all 0.3s;
}
.pillar-card:hover .pillar-icon {
  background:rgba(0,180,216,0.25);
  box-shadow:0 0 25px rgba(0,180,216,0.4);
}
.pillar-card h5 {
  color:var(--white);
  font-family:var(--font-heading);
  font-size:1.05rem;
  margin-bottom:10px;
}
.pillar-card p { color:rgba(255,255,255,0.55); font-size:0.88rem; line-height:1.65; }

/* ---- PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 0 60px;
  position:relative;
  overflow:hidden;
}
.page-banner::before {
  content:'';
  position:absolute; right:-100px; top:-100px;
  width:400px; height:400px;
  border:1px solid rgba(0,180,216,0.1);
  border-radius:50%;
}
.page-banner::after {
  content:'';
  position:absolute; left:-50px; bottom:-50px;
  width:250px; height:250px;
  border:1px solid rgba(244,166,35,0.1);
  border-radius:50%;
}
.page-banner h1 {
  font-family:var(--font-heading);
  color:var(--white);
  font-size:2.5rem;
  margin-bottom:10px;
}
.page-banner .breadcrumb { background:none; padding:0; }
.breadcrumb-item { color:rgba(255,255,255,0.55); font-size:0.88rem; }
.breadcrumb-item a { color:var(--teal); }
.breadcrumb-item.active { color:rgba(255,255,255,0.75); }
.breadcrumb-item+.breadcrumb-item::before { color:rgba(255,255,255,0.3); }

/* ---- ABOUT PAGE ---- */
.about-intro { background:var(--white); }
.about-image-wrapper {
  position:relative; border-radius:var(--radius); overflow:hidden;
}
.about-image-wrapper::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(0,180,216,0.3), transparent);
  z-index:1;
}
.about-image-placeholder {
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  height:450px; border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.about-image-placeholder .big-symbol {
  font-size:8rem;
  opacity:0.3;
}
.about-stats-overlay {
  position:absolute; bottom:20px; left:20px; right:20px;
  display:flex; gap:10px;
  z-index:2;
}
.a-stat {
  flex:1; background:rgba(10,22,40,0.85);
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,180,216,0.2);
  border-radius:10px;
  padding:14px 10px;
  text-align:center;
}
.a-stat strong { display:block; color:var(--gold); font-family:var(--font-heading); font-size:1.4rem; }
.a-stat span { color:rgba(255,255,255,0.65); font-size:0.72rem; text-transform:uppercase; letter-spacing:1px; }
.core-values-section { background:var(--light); }
.value-chip {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:50px;
  padding:10px 20px;
  font-size:0.88rem;
  font-weight:500;
  color:var(--navy);
  transition:all 0.3s;
  margin:5px;
}
.value-chip:hover {
  background:var(--teal);
  color:var(--white);
  border-color:var(--teal);
  transform:translateY(-2px);
}
.value-chip i { color:var(--teal); }
.value-chip:hover i { color:var(--white); }
.compliance-section { background:var(--navy); }
.compliance-item {
  display:flex; gap:15px; align-items:flex-start;
  padding:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  margin-bottom:15px;
  transition:all 0.3s;
}
.compliance-item:hover {
  background:rgba(0,180,216,0.08);
  border-color:rgba(0,180,216,0.3);
}
.comp-icon {
  width:44px; height:44px; flex-shrink:0;
  background:rgba(0,180,216,0.12);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); font-size:1.1rem;
}
.compliance-item h6 { color:var(--white); margin-bottom:4px; font-size:0.9rem; }
.compliance-item p { color:rgba(255,255,255,0.55); font-size:0.82rem; margin:0; }

/* ---- PRODUCTS PAGE ---- */
.products-section { background:var(--light); }
.category-filter {
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:35px;
}
.filter-btn {
  padding:8px 22px;
  border-radius:50px;
  border:2px solid var(--border);
  background:var(--white);
  color:var(--text);
  font-size:0.83rem;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background:var(--teal);
  border-color:var(--teal);
  color:var(--white);
}
.product-card {
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 4px 20px rgba(10,22,40,0.08);
  transition:all 0.3s ease;
  height:100%;
  border:1px solid rgba(10,22,40,0.06);
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(10,22,40,0.16);
}
.product-image {
  height:200px;
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-image img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.4s;
}
.product-card:hover .product-image img { transform:scale(1.06); }
.product-image-placeholder {
  font-size:4rem; opacity:0.3; color:var(--teal);
}
.product-category-badge {
  position:absolute; top:12px; left:12px;
  background:rgba(0,180,216,0.9);
  color:var(--white);
  padding:4px 12px;
  border-radius:50px;
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.5px;
}
.product-status-badge {
  position:absolute; top:12px; right:12px;
  padding:4px 10px;
  border-radius:50px;
  font-size:0.7rem;
  font-weight:600;
}
.badge-active { background:rgba(0,200,100,0.9); color:#fff; }
.badge-inactive { background:rgba(200,50,50,0.9); color:#fff; }
.product-body { padding:20px; }
.product-name {
  font-family:var(--font-heading);
  font-size:1.05rem;
  color:var(--navy);
  margin-bottom:8px;
  font-weight:600;
}
.product-composition {
  font-size:0.78rem;
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.5;
}
.product-footer {
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--border);
  padding-top:12px;
  margin-top:12px;
}
.product-mrp { font-weight:700; color:var(--teal); font-size:1rem; }
.product-packing { font-size:0.75rem; color:var(--muted); }
.btn-view-detail {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--teal);
  font-size:0.8rem;
  font-weight:600;
  transition:all 0.3s;
}
.btn-view-detail:hover { color:var(--navy); gap:10px; }

/* ---- PRODUCT DETAILS ---- */
.product-detail-section { background:var(--white); }
.detail-image-wrap {
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius:var(--radius);
  height:400px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.detail-image-wrap img { max-height:100%; object-fit:contain; }
.detail-placeholder { font-size:8rem; opacity:0.3; color:var(--teal); }
.detail-info-table { width:100%; }
.detail-info-table tr { border-bottom:1px solid var(--border); }
.detail-info-table tr:last-child { border-bottom:none; }
.detail-info-table th {
  padding:12px 0; width:40%;
  color:var(--muted); font-size:0.82rem;
  font-weight:600; text-transform:uppercase; letter-spacing:0.5px;
}
.detail-info-table td {
  padding:12px 0;
  color:var(--navy); font-size:0.9rem;
}
.detail-price { font-family:var(--font-heading); font-size:2rem; color:var(--teal); font-weight:700; }

/* ---- CONTACT PAGE ---- */
.contact-section { background:var(--light); }
.contact-form-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:40px;
  box-shadow:var(--shadow);
}
.form-group { margin-bottom:20px; }
.form-label { font-size:0.85rem; font-weight:600; color:var(--navy); margin-bottom:8px; display:block; }
.form-control {
  border:2px solid #e8edf2;
  border-radius:8px;
  padding:12px 16px;
  font-size:0.9rem;
  transition:all 0.3s;
  background:#fafbfc;
}
.form-control:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(0,180,216,0.1);
  background:var(--white);
}
.contact-info-card {
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius:var(--radius);
  padding:40px;
  color:var(--white);
  height:100%;
}
.contact-item {
  display:flex; gap:16px; align-items:flex-start;
  margin-bottom:28px;
}
.contact-item-icon {
  width:48px; height:48px; flex-shrink:0;
  background:rgba(0,180,216,0.12);
  border:1px solid rgba(0,180,216,0.3);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); font-size:1.1rem;
}
.contact-item h6 { color:rgba(255,255,255,0.6); font-size:0.75rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.contact-item p { color:var(--white); margin:0; font-size:0.9rem; }

/* ---- FOOTER ---- */
.main-footer { background:var(--navy); color:rgba(255,255,255,0.65); }
.footer-top { padding:60px 0 40px; border-bottom:1px solid rgba(255,255,255,0.07); }
.footer-logo-text {
  font-family:var(--font-heading);
  color:var(--white);
  font-size:1.15rem;
  margin-bottom:8px;
}
.footer-tagline { color:var(--gold); font-size:0.78rem; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:12px; }
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6);
  font-size:0.85rem;
  transition:all 0.3s;
}
.footer-social a:hover { background:var(--teal); color:var(--white); border-color:var(--teal); transform:translateY(-2px); }
.footer-heading { color:var(--white); font-weight:600; font-size:0.9rem; margin-bottom:18px; text-transform:uppercase; letter-spacing:1.5px; position:relative; padding-bottom:10px; }
.footer-heading::after { content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:var(--teal); }
.footer-links { list-style:none; padding:0; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:rgba(255,255,255,0.55); font-size:0.87rem; transition:all 0.3s; }
.footer-links a:hover { color:var(--teal); padding-left:5px; }
.footer-contact-list { list-style:none; padding:0; }
.footer-contact-list li { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; color:rgba(255,255,255,0.55); font-size:0.85rem; }
.footer-contact-list li i { color:var(--teal); margin-top:3px; flex-shrink:0; }
.footer-contact-list a { color:rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color:var(--teal); }
.footer-bottom { padding:20px 0; background:rgba(0,0,0,0.3); }
.footer-bottom p { color:rgba(255,255,255,0.4); font-size:0.82rem; margin:0; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.animate-fade-up { animation:fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay:0.1s; }
.animate-delay-2 { animation-delay:0.2s; }
.animate-delay-3 { animation-delay:0.3s; }
.animate-delay-4 { animation-delay:0.4s; }

/* ---- UTILITY ---- */
.bg-navy { background:var(--navy) !important; }
.bg-light-blue { background:var(--light); }
.text-teal { color:var(--teal) !important; }
.text-gold { color:var(--gold) !important; }
.text-navy { color:var(--navy) !important; }
.alert-success-custom {
  background:rgba(0,200,100,0.1);
  border:1px solid rgba(0,200,100,0.3);
  color:#006633;
  border-radius:10px;
  padding:16px 20px;
}
.alert-error-custom {
  background:rgba(220,50,50,0.1);
  border:1px solid rgba(220,50,50,0.3);
  color:#880000;
  border-radius:10px;
  padding:16px 20px;
}
.no-products {
  text-align:center; padding:80px 20px;
  color:var(--muted);
}
.no-products i { font-size:4rem; opacity:0.3; margin-bottom:15px; display:block; }

/* ---- RESPONSIVE ---- */
@media(max-width:991px) {
  .hero-section { min-height:auto; padding:80px 0; }
  .hero-molecule { width:250px; height:250px; margin-top:40px; }
  .desc-card { padding:30px; }
  section { padding:60px 0; }
  .nav-link { padding:12px 16px !important; }
  .nav-link::after { display:none; }
}
@media(max-width:767px) {
  .section-title { font-size:1.7rem; }
  .hero-title { font-size:1.8rem; }
  .stats-strip-inner { flex-direction:column; }
  .stat-card { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .hero-stats-mini { justify-content:center; }
  .contact-form-card, .contact-info-card { padding:25px; }
  .about-stats-overlay { flex-direction:column; gap:8px; }
}
