/* 
 * Sanviora Lifecare - Master Stylesheet
 * Custom Design System, Responsive Layouts & Micro-Animations
 */

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

:root {
  /* Brand Color Palette derived from Sanviora Lifecare Branding */
  --primary-navy: #0a2540;
  --primary-navy-dark: #061729;
  --primary-navy-light: #16385c;
  
  --emerald-green: #00875a;
  --emerald-green-dark: #006644;
  --emerald-green-light: #10b981;
  --emerald-glow: rgba(0, 135, 90, 0.15);
  
  --vibrant-blue: #0284c7;
  --vibrant-blue-light: #38bdf8;
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  
  /* Neutral Colors */
  --bg-slate: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  
  /* Modern Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 6px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 20px 48px rgba(10, 37, 64, 0.16);
  --shadow-glow: 0 0 35px rgba(0, 135, 90, 0.25);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-slate);
  color: var(--text-dark);
  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-navy);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: #e2e8f0;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
}

.top-info-item i {
  color: var(--emerald-green-light);
  font-size: 0.95rem;
}

.top-info-item a:hover {
  color: var(--emerald-green-light);
}

.top-tagline {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-gold-light);
  font-size: 0.825rem;
  text-transform: uppercase;
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.nav-link {
  font-weight: 600;
  font-size: 1.025rem;
  color: var(--primary-navy);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-green), var(--vibrant-blue));
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--emerald-green);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald-green) 0%, #046c48 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 135, 90, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.975rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 135, 90, 0.45);
  background: linear-gradient(135deg, #029e6a 0%, var(--emerald-green) 100%);
  color: #ffffff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--primary-navy);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.975rem;
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 6px;
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  padding: 100px 0 80px 0;
  background: url('../assets/hero-medical.jpg') no-repeat center center / cover;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 23, 41, 0.88) 0%, rgba(10, 37, 64, 0.82) 50%, rgba(0, 135, 90, 0.7) 100%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin: 0 auto 36px auto;
  max-width: 760px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--emerald-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
}

.trust-text h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.825rem;
  color: #cbd5e1;
}

/* Hero Image Container */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
  border: 4px solid #ffffff;
  background: #ffffff;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-img-badge i {
  font-size: 1.8rem;
  color: var(--emerald-green);
}

.hero-img-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.hero-img-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Page Section Common Styles */
.section {
  padding: 90px 0;
  position: relative;
}

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

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

.section-title {
  font-size: 2.5rem;
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

/* Feature Cards & Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 135, 90, 0.3);
}

.card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 135, 90, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.card:hover .card-icon-box {
  background: linear-gradient(135deg, var(--emerald-green) 0%, var(--vibrant-blue) 100%);
  color: #ffffff;
  transform: scale(1.08);
}

.card-title {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Product Categories Grid Special */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-green-light);
}

.product-card-body {
  padding: 28px;
}

.product-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--emerald-green);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Quality Assurance Section */
.quality-section {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  margin: 40px 0;
  box-shadow: var(--shadow-xl);
}

.quality-section h2, .quality-section h3 {
  color: #ffffff;
}

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

.quality-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-item i {
  color: var(--emerald-green-light);
  font-size: 1.3rem;
  margin-top: 2px;
}

/* Reviews / Testimonials */
.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.review-quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.025rem;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 0.95rem;
}

/* Banner / CTA Section */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald-green) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px auto;
}

/* Footer Section - 4 Columns */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 4px solid var(--emerald-green);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--emerald-green-light);
  border-radius: var(--radius-full);
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: inline-block;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer-about-text {
  line-height: 1.7;
  margin-bottom: 24px;
  color: #cbd5e1;
}

/* Social Icons in Column 1 with Exact Popular Brand Colors on Hover */
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover effects for exact popular social media colors */
.social-btn.facebook:hover {
  background-color: #1877F2 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
  transform: translateY(-4px);
  border-color: #1877F2;
}

.social-btn.twitter:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  border-color: #000000;
}

.social-btn.linkedin:hover {
  background-color: #0A66C2 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.45);
  transform: translateY(-4px);
  border-color: #0A66C2;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.45);
  transform: translateY(-4px);
  border-color: #dc2743;
}

/* Footer Navigation Links with Smooth Animations */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--emerald-green-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-links a:hover i {
  color: var(--vibrant-blue-light);
  transform: translateX(3px);
}

/* Footer Contact Details */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: #cbd5e1;
}

.footer-contact-item i {
  color: var(--emerald-green-light);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Inner Page Hero Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--emerald-green-light);
}

.breadcrumb a {
  color: #e2e8f0;
}

.breadcrumb a:hover {
  color: #ffffff;
}

/* Contact Page Specific Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--emerald-green);
  box-shadow: 0 0 0 4px rgba(0, 135, 90, 0.15);
}

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

/* Legal Content Pages Styling */
.legal-content {
  background: #ffffff;
  padding: 50px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 16px 0;
  color: var(--primary-navy);
}

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

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style-type: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-stats-banner {
    display: none !important;
  }

  .hero-section {
    padding: 80px 0 60px 0;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .quality-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header-actions .btn-primary {
    display: none !important;
  }

  .header-container {
    height: 76px;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: #ffffff;
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Mobile Hero Optimization */
  .hero-section {
    padding: 50px 0 40px 0;
  }

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

  .hero-badge {
    font-size: 0.775rem;
    padding: 6px 14px;
    margin-bottom: 18px;
    white-space: normal;
    word-break: break-word;
    display: inline-flex;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
  }

  .trust-item {
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }

  .hero-stats-banner {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .quality-list {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 10px;
  }

  .stat-box {
    padding: 8px 4px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.725rem;
  }
}

/* Floating Action Widget (WhatsApp & Call) */
.floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition-bounce);
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-4px);
  color: #ffffff;
}

.float-btn.whatsapp {
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.float-btn.phone {
  background-color: var(--emerald-green);
  box-shadow: 0 8px 24px rgba(0, 135, 90, 0.45);
}

/* Pre-Footer Trust Strip */
.footer-strip {
  background: linear-gradient(90deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--emerald-green-light);
  letter-spacing: 0.5px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

/* Stats Counter Banner */
.hero-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  margin-top: 40px;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--emerald-green);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Modal Popup Overlay */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--primary-navy);
}

.modal-title {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Product Controls: Search & Category Tabs */
.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--emerald-green);
  color: #ffffff;
  border-color: var(--emerald-green);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  width: 280px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  font-family: inherit;
}

